:root {
    --primary-color: #002561;
    --secondary-color: #ff0000;
    --tertiary-color: #282828;
    --quaternary-color: #f2f2f2;

    --geometria: 'Geometria', sans-serif;
    --geometriaL: 'Geometria-Light', sans-serif;
    --geometriaM: 'Geometria-Medium', sans-serif;
    --geometriaB: 'Geometria-Bold', sans-serif;
}

.geometria {
    font-family: var(--geometria);
}

.geometriaL {
    font-family: var(--geometriaL);
    font-weight: 300;
}

.geometriaM {
    font-family: var(--geometriaM);
    font-weight: 500;
}

.geometriaB {
    font-family: var(--geometriaB);
    font-weight: 700;
}

strong {
    font-family: var(--geometriaB);
    font-weight: 700;
}

.mdsblue {
    background-color: var(--primary-color);
}

.mdsred {
    background-color: var(--secondary-color);
}

.bg-page {
    background: url('./assets-alta/bg-picture.webp') center center/cover no-repeat;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 50%;
    padding: 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    width: 56px;
    height: 56px;
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 64px;
        height: 64px;
    }
}

img {
    width: 100%;
    height: 100%;
}

#close-btn,
#close_1_ {
    color: #fff;
    fill: #fff;
}


.field {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

}

.mouse {
    width: 40px;
    height: 70px;
    border: 2px solid #fff;
    border-radius: 60px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 60px;
    }
}

@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 60px;
    }
}

.scroll {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: relative;
    animation: down 1.5s infinite;
    -webkit-animation: down 1.5s infinite;
}

.scroll::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 12px;
    width: 12px;
    height: 12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

@keyframes down {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translateY(15px);
    }

    40% {
        transform: translate(0);
    }
}

@-webkit-keyframes down {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translateY(15px);
    }

    40% {
        transform: translate(0);
    }
}

.arrow {
    width: 0;
    height: 40px;
    border: 1px solid #fff;
    position: relative;
    animation: scroll 1.5s infinite;
    -webkit-animation: scroll 1.5s infinite;

    &::after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: -5px;
        width: 1px;
        height: 10px;

        border-top: 10px solid #fff;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
    }
}

@keyframes scroll {
    0% {
        height: 40px;
    }

    30% {
        height: 70px;
    }

    60% {
        height: 40px;
    }
}

@-webkit-keyframes scroll {
    0% {
        height: 40px;
    }

    30% {
        height: 70px;
    }

    60% {
        height: 40px;
    }
}