@font-face {
    .montserrat-thin {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 100;
        font-style: normal;
    }

    .montserrat-extra-light {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 200;
        font-style: normal;
    }

    .montserrat-light {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
    }

    .montserrat-regular {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
    }

    .montserrat-medium {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
    }

    .montserrat-semibold {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
    }

    .montserrat-bold {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 700;
        font-style: normal;
    }

    .montserrat-extrabold {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 800;
        font-style: normal;
    }

    .montserrat-black {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 900;
        font-style: normal;
    }
}

a.cta {
    background-color: #FAA41A;
    padding: 18px 36px;
    border-radius: 40px;
    line-height: normal;
    border: none;
    color: #FFFCF5;
    font-weight: 600;
    display: block;
    width: fit-content;
    text-wrap-mode: nowrap;
    text-align: center;
    transition: 300ms all ease-in-out;
    &:hover {
        opacity: 0.6;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: #62737B;
    margin: 0;
}

h2 {
    color: #FAA41A;
    font-weight: 700;
    font-size: 24px;
}

h3 {
    font-size: 32px;
}

p {
    line-height: 160%;
    color: #5A5A5A;
    margin: 0;
}

span {
    color: #FAA41A;
    font-weight: 700;
}

bold {
    font-weight: 600;
}

header {
    background-color: rgb(30, 30, 30, 0.3);
    color: #FFFFFF;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 115px;
    transition: 300ms all ease-in-out;

    img.white {
        display: block;
    }

    img.gray {
        display: none;
    }

    &.sticky {
        background-color: #FFFBF4;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

        img.white {
            display: none;
        }

        img.gray {
            display: block;
        }

        .navbar-collapse {
            .menu-items {
                a {
                    color: #62737B;
                    position: relative;
                }
            }
        }
    }

    .navbar {
        height: 100%;
    }

    .redes a {
        padding: 0;
    }

    .navbar-collapse {
        .menu-items {
            a {
                color: #FFFCF5;
                position: relative;

            }
        }

        hr {
            display: none;
        }
    }

    a.cta {
        &.float {
            border-radius: 0 0 40px 40px;
        }
    }
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(71, 33, 53, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
    z-index: 998;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu-inner {
    position: relative;
    width: min(420px, 100%);
    background: #FFFBF4;
    border-radius: 32px;
    padding: 48px 32px 64px;
    box-shadow: 0px 24px 60px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-close span {
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: #472135;
    transition: background-color 0.3s ease;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu-overlay .menu-items {
    width: 100%;
}

.mobile-menu-overlay .menu-items a {
    font-size: 20px;
    font-weight: 600;
    color: #472135;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-overlay .menu-items a.active,
.mobile-menu-overlay .menu-items a:hover {
    color: #FAA41A;
}

.mobile-menu-overlay .cta {
    width: 100%;
    text-align: center;
    font-size: 16px;
}

.mobile-menu-overlay.open .mobile-menu-close span {
    background-color: #FAA41A;
}

section.hero-section {
    .hero-content {
        .texto {
            a {
                color: #FFFCF5;
            }

            p {
                color: #FAA41A;
                text-transform: uppercase;
                font-size: 16px;
                font-weight: 600;
            }
        }
    }
}

section.cta {
    img {
        width: 100%;
        object-fit: cover;
        border-radius: 40px;
    }
}

.swiper-container {
    position: relative;
}

.swiper-controls {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: space-between;
    top: 50%;
    left: 0;

    .swiper-button-prev {
        left: -71px;
    }

    .swiper-button-next {
        right: -71px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        position: relative;
        height: 50px;
        width: 50px;
        color: #FFF;

        &::after {
            padding: 20px;
            background-color: #FAA41A;
            border-radius: 40px;
            aspect-ratio: 1 / 1;
            font-size: 20px;
            line-height: 0;
            align-content: center;
        }
    }
}

footer {
    padding-top: 100px;
    padding-bottom: 55px;
    background-color: #62737B;
    color: #FFF;
    position: relative;
    margin-top: 80px;

    a,
    p {
        color: #FFF;
    }

    ul {
        line-height: 32px;
        list-style-type: none;
        padding: 0;
    }

    .logo-footer {
        width: fit-content;
    }

    .contatos {
        display: flex;
        flex-direction: column;
        gap: 24px;

        h4,
        p {
            margin: 0;
        }
    }

    h5 {
        color: #ffffff;
        font-size: 18px;
        line-height: 180%;
        font-weight: 700;
    }

    .box {
        display: flex;
        gap: 1rem;
        padding: 24px 50px;
        background-color: #472135;
        border-radius: 16px;
    }

    .redes a.rede {
        background-color: #FAA41A;
        padding: 10px;
        border-radius: 50px;
        aspect-ratio: 1 / 1;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

.copyright {
    background-color: #515E65;

    p {
        margin: 0;
        color: #FFFFFF;
    }

    span {
        text-decoration: underline;
        color: #FFFFFF;
    }

    img {
        width: 115px;
        height: auto;
    }
}

@media (max-width: 1400px) {
    .navbar-brand {
        img {
            max-width: 200px;
        }
    }

    .navbar-collapse .menu-items a {
        padding: 0 14px;
    }
}

@media (max-width: 1200px) {
    .navbar-brand {
        img {
            max-width: 150px;
        }
    }
    .navbar-collapse .menu-items a {
        padding: 0 12px;
        font-size: 14px;
    }
    a.cta {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    a.cta {
        width: 100%;
        text-align: center;
    }

    header {
        background-color: #62737B;
        /* padding-bottom: 24px; */
        height: 85PX;

        img.white {
            display: none;
        }

        img.gray {
            display: none;
        }

        img.mobile {
            display: block;
        }

        &.sticky {
            background-color: #62737B;

            img.white {
                display: none;
            }

            img.gray {
                display: none;
            }
        }

        .navbar-toggler {
            border: 0;
        }

        .navbar-collapse {
            .menu-items {
                a {
                    color: #FAA41A;
                    position: relative;
                }
            }
        }

        a.cta {
            color: #FFFCF5;
        }

        hr {
            opacity: 1;
            border-top: 1px solid #D8D8D8;
            margin: auto;
        }
    }

    footer {
        margin-top: 50px;
        overflow: hidden;

        .newsletter {
            .box {
                flex-direction: column;

                .form-control {
                    padding: .75rem .75rem;
                }
            }
        }
    }

    .mobile-menu-overlay {
        padding: 64px 20px;
    }

    .mobile-menu-inner {
        width: 100%;
        border-radius: 24px;
        padding: 56px 28px 72px;
    }

    .mobile-menu-overlay .menu-items a {
        font-size: 18px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    footer {
        .newsletter {
            top: -30%;
        }
    }
}

@media (max-width: 768px) {
    .swiper-controls {
        position: relative;
        top: 0;
        margin-top: 2rem;
        .swiper-button-prev {
            left: 0px;
        }
    
        .swiper-button-next {
            right: 0px;
        }
    }

    footer {
        .newsletter {
            top: -20%;
        }
    }
}