a.cta {
    background-color: #75B948;
    padding: 14px 42px;
    border-radius: 8px;
    line-height: normal;
    border: none;
    color: #F5F5F5;
    font-weight: 600;
    width: fit-content;
    text-wrap-mode: nowrap;
    transition: 300ms all ease-in-out;
    &:hover {
        background-color: #639b3d;
        color: #f9f9f9;
    }
}

header {
    min-height: 100px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
    align-content: center;
    width: 100%;
    background-color: #345320;
    position: fixed;
    z-index: 999;
    color: #F5F5F5;
    font-weight: 600;

    a.cta {
        background-color: #75B948;
    }

    .navbar-brand {
        img {
            max-width: 250px;
        }
    }

    .menu-items {
        a {
            color: #e6e6e6;
            position: relative;

            &.active {
                color: #fff;

                &::after {
                    content: '';
                    position: absolute;
                    bottom: 12px;
                    left: 25%;
                    width: 50%;
                    height: 2px;
                    background-color: #936037;
                    z-index: 99;
                    border-radius: 8px;
                }
            }
        }
    }
}

.hero-section {
    overflow: hidden;
    /* padding-top: 48px; */
    position: relative;
    min-height: 50svh;
    /* padding-top: 100px; */

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        right: 0;
        filter: brightness(0.4);
    }

    .hero-content {
        position: absolute;
        top: 30%;
        width: 100%;
        /* background-color: #2C267B; */
        z-index: 2;
        pointer-events: none;

        h1,
        p {
            color: #F5F5F5;
            font-size: 20px;
        }

        a {
            pointer-events: auto;
        }

        h1 {
            font-size: 46px;
            line-height: 60px;
            font-weight: 500;
            /* margin-bottom: 16px; */
        }
    }
}


main {
    padding-top: 100px;
    font-family: 'Poppins', sans-serif;
}

footer {
    background-color: #345320;
    color: #F5F5F5;

    h6 {
        color: #75B948;
    }

    a {
        color: #F5F5F5;
    }
}

.h-available {
    height: -webkit-fill-available !important;
}

span {
    color: #936037;
}

section.cotacao {
    background: linear-gradient(90deg, #ffffff 50%, #75B948 100%);
    /* background-color: #589F34; */
    padding: 40px 0;
    min-height: 48svh;
    position: relative;
    overflow: hidden;

    img {
        position: absolute;
        right: 8%;
        top: 8px;
        height: 110%;
        width: fit-content;
    }

    .hero-content {
        position: absolute;
        top: 0;
        width: 100%;
        /* background-color: #2C267B; */
        z-index: 2;
        pointer-events: none;

        p {
            color: #0b0b0b;
            font-size: 20px;
        }

        a {
            pointer-events: auto;
        }

        h2 {
            font-size: 46px;
            line-height: 60px;
            font-weight: 500;
            /* margin-bottom: 16px; */

            span {
                color: #75B948;
            }
        }
    }
}

/* Overlay full-screen */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

/* Abre o menu */
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Conteúdo interno */
.mobile-menu-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    transform: translateY(20px);
    transition: .3s ease;
}

.mobile-menu-overlay.active .mobile-menu-inner {
    transform: translateY(0);
}

/* Botão fechar */
.close-mobile {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

/* Links */
.mobile-nav a {
    color: #f1f1f1;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1rem;
    display: block;
    transition: .2s ease;
}

.mobile-nav a:hover {
    color: #c8e7ff;
}

/* CTA */
.mobile-cta {
    padding: 12px 24px;
    background: #1c62a8;
    color: #fff;
    width: fit-content;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s ease;
}

.mobile-cta:hover {
    background: #144c82;
}

/* Esconde desktop */
@media (min-width: 992px) {
    .mobile-menu-overlay {
        display: none;
    }
}


@media (max-width: 992px) {
    section.cotacao {
        min-height: 52svh;
        background: linear-gradient(0deg, #ffffff 50%, #75B948 100%);
        border-radius: 8px;

        .hero-content {
            top: 0;
            height: 100%;
            padding: 32px 0;

            h2 {
                font-size: 30px;
                line-height: 46px;
            }
        }

        img {
            display: none;
        }
    }

    header {
        & .navbar-brand {
            img {
                max-width: 210px;
            }
        }
    }

    a.cta {
        width: 100% !important;
        text-align: center;
        font-size: 20px;
    }
}