/* ============================================================
   QUALITYVALE
   HEADER + HERO
   CSS PURO
============================================================ */


/* ============================================================
   VARIÁVEIS
============================================================ */

:root {

    --qv-primary: #0F4C81;

    --qv-primary-dark: #0B3D68;

    --qv-teal: #00AEB3;

    --qv-green: #55C95A;

    --qv-mist: #F1F4F6;

    --qv-white: #FFFFFF;

    --qv-black: #17212B;

    --qv-gray: #68737D;

    --qv-border: #DCE2E7;

    --qv-font-display:
        "Archivo Black",
        Arial,
        sans-serif;

    --qv-font-body:
        "Hind",
        Arial,
        sans-serif;

}


/* ============================================================
   RESET
============================================================ */

*,
*::before,
*::after {

    box-sizing:
        border-box;

}


html {

    scroll-behavior:
        smooth;

}


html,
body {

    margin:
        0;

    padding:
        0;

}


body {

    font-family:
        var(--qv-font-body);

    color:
        var(--qv-black);

    background:
        var(--qv-white);

    -webkit-font-smoothing:
        antialiased;

}


img {

    display:
        block;

    max-width:
        100%;

}


a {

    color:
        inherit;

    text-decoration:
        none;

}


button {

    font-family:
        inherit;

}


/* ============================================================
   CONTAINER
============================================================ */

.container {

    width:
        100%;

    max-width:
        1280px;

    margin:
        0 auto;

    padding-left:
        32px;

    padding-right:
        32px;

}


/* ============================================================
   HEADER
============================================================ */

.site-header {

    position:
        relative;

    z-index:
        1000;

    background:
        var(--qv-white);

}


/* ============================================================
   BARRA SUPERIOR
============================================================ */

.header-top {

    min-height:
        36px;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    background:
        var(--qv-primary);

    font-size:
        12px;

}


.header-top-inner {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    min-height:
        36px;

}


.header-top-left,
.header-top-right {

    display:
        flex;

    align-items:
        center;

    gap:
        28px;

}


.header-info,
.header-top-right a {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    white-space:
        nowrap;

}


.header-top svg {

    width:
        15px;

    height:
        15px;

    fill:
        none;

    stroke:
        var(--qv-teal);

    stroke-width:
        1.7;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

}


.header-top-right a {

    transition:
        color .2s ease;

}


.header-top-right a:hover {

    color:
        var(--qv-white);

}


/* ============================================================
   HEADER PRINCIPAL
============================================================ */

.header-main {

    position:
        relative;

    background:
        rgba(
            255,
            255,
            255,
            .98
        );

    border-bottom:
        1px solid
        var(--qv-border);

}


.header-main-inner {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    height:
        128px;

}


/* ============================================================
   LOGO
============================================================ */

.site-logo {

    display:
        flex;

    align-items:
        center;

    flex-shrink:
        0;

}


.site-logo img {

    width:
        auto;

    height:
        98px;

    object-fit:
        contain;

}


/* ============================================================
   NAV
============================================================ */

.main-nav {

    display:
        flex;

    align-items:
        stretch;

    height:
        78px;

    margin-left:
        auto;

    margin-right:
        28px;

}


.main-nav a {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    padding:
        0 20px;

    color:
        rgba(
            23,
            33,
            43,
            .70
        );

    font-family:
        var(--qv-font-body);

    font-size:
        14px;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    transition:
        color .2s ease;

}


.main-nav a::after {

    content:
        "";

    position:
        absolute;

    right:
        20px;

    bottom:
        0;

    left:
        20px;

    height:
        2px;

    background:
        var(--qv-teal);

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        transform .2s ease;

}


.main-nav a:hover,
.main-nav a.active {

    color:
        var(--qv-primary);

}


.main-nav a:hover::after,
.main-nav a.active::after {

    transform:
        scaleX(1);

}


/* ============================================================
   CTA HEADER
============================================================ */

.header-cta {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    min-height:
        42px;

    padding:
        0 23px;

    color:
        var(--qv-white);

    background:
        var(--qv-green);

    font-size:
        14px;

    font-weight:
        700;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    transition:
        background .2s ease;

}


.header-cta:hover {

    background:
        var(--qv-teal);

}


.header-cta svg {

    width:
        17px;

    height:
        17px;

    flex-shrink:
        0;

    fill:
        currentColor;

    stroke:
        none;
}

/* ============================================================
   MENU MOBILE
============================================================ */

.mobile-menu-button {

    display:
        none;

    align-items:
        center;

    justify-content:
        center;

    width:
        44px;

    height:
        44px;

    padding:
        0;

    border:
        0;

    background:
        transparent;

    color:
        var(--qv-primary);

    cursor:
        pointer;

}


.mobile-menu-button svg {

    width:
        25px;

    height:
        25px;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        1.8;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

}


.mobile-menu-button .icon-close {

    display:
        none;

}


.mobile-menu-button.is-open .icon-menu {

    display:
        none;

}


.mobile-menu-button.is-open .icon-close {

    display:
        block;

}


/* ============================================================
   HERO
   FULL WIDTH
============================================================ */

.hero {

    position:
        relative;

    padding:
        0 0 145px;

    background:
        var(--qv-mist);

}


/* ============================================================
   HERO GRID
   LG8 + LG4
   66.666% / 33.333%
============================================================ */

.hero-grid {

    display:
        grid;

    grid-template-columns:
        66.666667%
        33.333333%;

    width:
        100%;

    min-height:
        700px;

}


/* ============================================================
   LG8 — BLOCO AZUL
============================================================ */

.hero-content {

    position:
        relative;

    z-index:
        2;

    display:
        flex;

    align-items:
        center;

    min-height:
        555px;

    overflow:
        hidden;

    background:
        var(--qv-primary);

}


/* ============================================================
   CONTEÚDO INTERNO DO BLOCO AZUL

   O fundo azul ocupa 100% do LG8.
   O conteúdo é alinhado ao container.
============================================================ */

.hero-content-inner {

    position:
        relative;

    z-index:
        2;

    width:
        100%;

    max-width:
        760px;

    margin-left:
        max(
            32px,
            calc(
                (100vw - 1280px) / 2 + 32px
            )
        );

    padding:
        65px 55px 75px 0;

}


/* ============================================================
   GRID TÉCNICO DO HERO
============================================================ */

.hero-grid-pattern {

    position:
        absolute;

    inset:
        0;

    opacity:
        .12;

    background-image:
        linear-gradient(
            rgba(
                255,
                255,
                255,
                .25
            ) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                .25
            ) 1px,
            transparent 1px
        );

    background-size:
        42px 42px;

    pointer-events:
        none;

}


/* ============================================================
   EYEBROW
============================================================ */

.eyebrow {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

}


.eyebrow span {

    display:
        block;

    width:
        40px;

    height:
        2px;

    background:
        var(--qv-teal);

}


.eyebrow p {

    margin:
        0;

    color:
        var(--qv-teal);

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        .20em;

    text-transform:
        uppercase;

}


/* ============================================================
   HERO H1
============================================================ */

.hero h1 {

    max-width:
        680px;

    margin:
        24px 0 0;

    color:
        var(--qv-white);

    font-family:
        var(--qv-font-display);

    font-size:
        clamp(
            38px,
            3vw,
            50px
        );

    font-weight:
        400;

    line-height:
        .97;

    letter-spacing:
        -.025em;

    text-transform:
        uppercase;

}


.hero h1 span {

    color:
        var(--qv-teal);

}


/* ============================================================
   HERO DESCRIÇÃO
============================================================ */

.hero-description {

    max-width:
        570px;

    margin:
        27px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            .70
        );

    font-size:
        18px;

    font-weight:
        400;

    line-height:
        1.65;

}


/* ============================================================
   HERO BOTÕES
============================================================ */

.hero-actions {

    display:
        none;

    align-items:
        center;

    gap:
        12px;

    margin-top:
        31px;

}


.btn {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        44px;

    padding:
        0 21px;

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    transition:
        all .2s ease;

}


.btn-primary {

    color:
        var(--qv-white);

    background:
        var(--qv-green);

}


.btn-primary:hover {

    background:
        var(--qv-teal);

}


.btn-outline {

    color:
        var(--qv-white);

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .35
        );

}


.btn-outline:hover {

    color:
        var(--qv-primary);

    background:
        var(--qv-white);

    border-color:
        var(--qv-white);

}


/* ============================================================
   HERO STATS
============================================================ */

.hero-stats {

    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    max-width:
        570px;

    margin-top:
        38px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .16
        );

}


.hero-stat {

    min-height:
        67px;

    padding:
        15px 18px 0 0;

}


.hero-stat + .hero-stat {

    padding-left:
        20px;

    border-left:
        1px solid
        rgba(
            255,
            255,
            255,
            .16
        );

}


.hero-stat strong {

    display:
        block;

    color:
        var(--qv-white);

    font-family:
        var(--qv-font-display);

    font-size:
        42px;

    font-weight:
        400;

    line-height:
        1;

}


.hero-stat span {

    display:
        block;

    margin-top:
        7px;

    color:
        rgba(
            255,
            255,
            255,
            .50
        );

    font-size:
        14px;

    font-weight:
        600;

    letter-spacing:
        .10em;

    line-height:
        1.2;

    text-transform:
        uppercase;

}


/* ============================================================
   LG4 — FOTO
============================================================ */

.hero-image {

    position:
        relative;

    min-height:
        555px;

    overflow:
        hidden;

    background:
        #D7E0E5;

}


.hero-image img {

    display:
        block;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        center center;

}


.hero-image-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        rgba(
            15,
            76,
            129,
            .10
        );

    pointer-events:
        none;

}


.hero-image-bottom {

    position:
        absolute;

    right:
        0;

    bottom:
        0;

    left:
        0;

    height:
        5px;

    background:
        var(--qv-teal);

}


/* ============================================================
   CARDS DO HERO

   IMPORTANTE:
   Estes continuam dentro do .container.
============================================================ */

.hero-cards {

    position:
        relative;

    z-index:
        20;

    display:
        grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap:
        18px;

    /*
     * Sobreposição dos cards no Hero.
     */
    margin:
        -72px 0 0;

}


/* ============================================================
   CARD
============================================================ */

.hero-card {

    position:
        relative;

    min-height:
        220px;

    padding:
        31px 27px 30px;

    background:
        var(--qv-white);

    border-bottom:
        4px solid
        var(--qv-teal);

    box-shadow:
        0 18px 35px
        rgba(
            25,
            44,
            58,
            .13
        );

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.hero-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 22px 42px
        rgba(
            25,
            44,
            58,
            .18
        );

}


.card-green {

    border-bottom-color:
        var(--qv-green);

}


.card-featured {

    color:
        var(--qv-white);

    background:
        var(--qv-primary);

    border-bottom-color:
        var(--qv-teal);

}


/* ============================================================
   CARD ÍCONE
============================================================ */

.hero-card-icon {

    width:
        34px;

    height:
        34px;

    margin-bottom:
        20px;

    color:
        var(--qv-primary);

}


.hero-card-icon svg {

    width:
        100%;

    height:
        100%;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        1.7;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

}


.card-featured .hero-card-icon {

    color:
        var(--qv-teal);

}


/* ============================================================
   CARD TÍTULO
============================================================ */

.hero-card h2 {

    margin:
        0;

    color:
        var(--qv-primary);

    font-family:
        var(--qv-font-body);

    font-size:
        19px;

    font-weight:
        700;

    line-height:
        1.15;

    text-transform:
        uppercase;

}


.card-featured h2 {

    color:
        var(--qv-white);

}


/* ============================================================
   CARD TEXTO
============================================================ */

.hero-card p {

    max-width:
        250px;

    margin:
        12px 0 0;

    color:
        var(--qv-gray);

    font-size:
        13px;

    line-height:
        1.55;

}


.card-featured p {

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

}






/* ============================================================
   FOOTER
============================================================ */


/* ============================================================
   FOOTER PRINCIPAL
============================================================ */

.site-footer {

    position:
        relative;

    color:
        rgba(
            255,
            255,
            255,
            .70
        );

    background:
        var(--qv-black);

}


/* ============================================================
   GRID PRINCIPAL
============================================================ */

.footer-main {

    padding:
        70px 0 60px;

    background:
        var(--qv-black);

}


.footer-grid {

    display:
        grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1.5fr;

    gap:
        60px;

}


/* ============================================================
   MARCA
============================================================ */

.footer-brand {

    max-width:
        360px;

}


.footer-logo {

    display:
        inline-flex;

    align-items:
        center;

}


.footer-logo img {

    width:
        auto;

    height:
        140px;

    /*
     * O logo original possui cores.
     * Aqui transformamos em branco para funcionar
     * sobre o fundo escuro.
     */

    filter:
        grayscale(1)
        brightness(0)
        invert(1);

}


.footer-description {

    max-width:
        340px;

    margin:
        25px 0 20px;

    color:
        rgba(
            255,
            255,
            255,
            .55
        );

    font-size:
        16px;

    line-height:
        1.7;

}


.footer-link {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    color:
        var(--qv-teal);

    font-size:
        16px;

    font-weight:
        700;

    letter-spacing:
        .10em;

    text-transform:
        uppercase;

    transition:
        color .2s ease;

}


.footer-link span {

    font-size:
        17px;

    line-height:
        1;

}


.footer-link:hover {

    color:
        var(--qv-green);

}


/* ============================================================
   TÍTULO DAS COLUNAS
============================================================ */

.footer-label {

    position:
        relative;

    margin:
        4px 0 22px;

    color:
        var(--qv-teal);

    font-size:
        16px;

    font-weight:
        700;

    letter-spacing:
        .20em;

    line-height:
        1.2;

    text-transform:
        uppercase;

}


.footer-label::before {

    content:
        "";

    display:
        inline-block;

    width:
        28px;

    height:
        2px;

    margin-right:
        10px;

    vertical-align:
        middle;

    background:
        var(--qv-teal);

}


/* ============================================================
   NAVEGAÇÃO
============================================================ */

.footer-nav {

    display:
        flex;

    flex-direction:
        column;

    gap:
        11px;

    margin:
        0;

    padding:
        0;

    list-style:
        none;

}


.footer-nav a {

    color:
        rgba(
            255,
            255,
            255,
            .58
        );

    font-size:
        16px;

    line-height:
        1.4;

    transition:
        color .2s ease,
        padding-left .2s ease;

}


.footer-nav a:hover {

    padding-left:
        5px;

    color:
        var(--qv-white);

}


/* ============================================================
   CONTATO
============================================================ */

.footer-contact {

    min-width:
        0;

}


.footer-contact-item {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        12px;

    margin-bottom:
        17px;

    color:
        rgba(
            255,
            255,
            255,
            .58
        );

    font-size:
        16px;

    line-height:
        1.5;

    transition:
        color .2s ease;

}


a.footer-contact-item:hover {

    color:
        var(--qv-white);

}


.footer-contact-item svg {

    flex:
        0 0 auto;

    width:
        17px;

    height:
        17px;

    margin-top:
        2px;

    fill:
        none;

    stroke:
        var(--qv-teal);

    stroke-width:
        1.7;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

}


.footer-contact-item span {

    min-width:
        0;

}


/* ============================================================
   LINHA COLORIDA
============================================================ */

.site-footer::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    right:
        0;

    left:
        0;

    height:
        3px;

    background:
        linear-gradient(
            90deg,
            var(--qv-primary),
            var(--qv-teal),
            var(--qv-green)
        );

}


/* ============================================================
   FOOTER BOTTOM
============================================================ */

.footer-bottom {
    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    background:
        rgba(
            0,
            0,
            0,
            .12
        );

}


.footer-bottom-inner {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    min-height:
        58px;

}


.footer-bottom p {

    margin:
        0;

    color:
        rgba(
            255,
            255,
            255,
            .35
        );

    font-size:
        16px;

    line-height:
        1.5;

}


/* ============================================================
   RESPONSIVO — TABLET
============================================================ */

@media (
    max-width: 991px
) {

    .footer-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

        gap:
            45px 35px;

    }


    .footer-brand {

        max-width:
            100%;

    }

}


/* ============================================================
   RESPONSIVO — MOBILE
============================================================ */

@media (
    max-width: 767px
) {

    .footer-main {

        padding:
            55px 0 45px;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap:
            38px;

    }


    .footer-brand {

        max-width:
            420px;

    }


    .footer-logo img {

        height:
            48px;

    }


    .footer-description {

        margin-top:
            20px;

    }


    .footer-bottom-inner {

        flex-direction:
            column;

        align-items:
            flex-start;

        justify-content:
            center;

        gap:
            5px;

        min-height:
            75px;

        padding-top:
            12px;

        padding-bottom:
            12px;

    }

}


/* ============================================================
   RESPONSIVO — CELULAR PEQUENO
============================================================ */

@media (
    max-width: 480px
) {

    .footer-main {

        padding:
            45px 0 38px;

    }


    .footer-grid {

        gap:
            32px;

    }


    .footer-label {

        margin-bottom:
            17px;

    }


    .footer-bottom p {

        font-size:
            9px;

    }

}






/* ============================================================
   QUEM SOMOS
============================================================ */

.about-section {

    position:
        relative;

    padding:
        105px 0 115px;

    background:
        var(--qv-white);

}


/* ============================================================
   GRID
============================================================ */

.about-grid {

    display:
        grid;

    grid-template-columns:
        1.1fr
        .9fr;

    align-items:
        center;

    gap:
        75px;

}


/* ============================================================
   VISUAL
============================================================ */

.about-visual {

    position:
        relative;

    padding:
        0 30px 30px 0;

}


.about-visual img {

    display:
        block;

    width:
        100%;

    height:
        540px;

    object-fit:
        cover;

    object-position:
        center;

}


/* ============================================================
   CANTO DECORATIVO
============================================================ */

.about-corner {

    position:
        absolute;

    top:
        -18px;

    left:
        -18px;

    width:
        115px;

    height:
        115px;

    border-top:
        2px solid
        var(--qv-teal);

    border-left:
        2px solid
        var(--qv-teal);

    pointer-events:
        none;

}


/* ============================================================
   SELO 100%
============================================================ */

.about-badge {

    position:
        absolute;

    right:
        0;

    bottom:
        0;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    width:
        175px;

    height:
        155px;

    padding:
        25px;

    color:
        var(--qv-white);

    background:
        var(--qv-green);

}


.about-badge strong {

    display:
        block;

    font-family:
        var(--qv-font-display);

    font-size:
        42px;

    font-weight:
        400;

    line-height:
        1;

}


.about-badge span {

    display:
        block;

    margin-top:
        8px;

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        .14em;

    line-height:
        1.35;

    text-transform:
        uppercase;

}


/* ============================================================
   EYEBROW
============================================================ */

.section-eyebrow {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

}


.section-eyebrow span {

    display:
        block;

    width:
        42px;

    height:
        2px;

    background:
        var(--qv-teal);

}


.section-eyebrow p {

    margin:
        0;

    color:
        var(--qv-teal);

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        .20em;

    text-transform:
        uppercase;

}


/* ============================================================
   TÍTULO
============================================================ */

.about-content h2 {

    max-width:
        600px;

    margin:
        22px 0 0;

    color:
        var(--qv-primary);

    font-family:
        var(--qv-font-display);

    font-size:
        clamp(
            32px,
            4vw,
            40px
        );

    font-weight:
        400;

    line-height:
        1.02;

    letter-spacing:
        -.02em;

    text-transform:
        uppercase;

}


.about-content h2 span {

    color:
        var(--qv-teal);

}


/* ============================================================
   TEXTO PRINCIPAL
============================================================ */

.about-intro {

    max-width:
        590px;

    margin:
        28px 0 0;

    padding:
        3px 0 3px 24px;

    color:
        var(--qv-gray);

    border-left:
        4px solid
        var(--qv-green);

    font-size:
        18px;

    line-height:
        1.75;

}


.about-intro strong {

    color:
        var(--qv-black);

    font-weight:
        700;

}


/* ============================================================
   LISTA
============================================================ */

.about-list {

    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        15px 25px;

    margin:
        30px 0 0;

    padding:
        0;

    list-style:
        none;

}


.about-list li {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        10px;

    color:
        var(--qv-black);

    font-family:
        "Hind",
        Arial,
        sans-serif;

    font-size:
        14px;

    font-weight:
        600;

    line-height:
        1.4;

}


.about-list svg {

    flex:
        0 0 auto;

    width:
        19px;

    height:
        19px;

    margin-top:
        1px;

    fill:
        none;

    stroke:
        var(--qv-green);

    stroke-width:
        2;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

}


/* ============================================================
   BOTÃO
============================================================ */

.about-button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    min-height:
        48px;

    margin-top:
        36px;

    padding:
        0 25px;

    color:
        var(--qv-white);

    background:
        var(--qv-primary);

    font-family:
        "Hind",
        Arial,
        sans-serif;

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        .13em;

    text-transform:
        uppercase;

    transition:
        background .2s ease;

}


.about-button:hover {

    background:
        var(--qv-teal);

}


.about-button svg {

    width:
        16px;

    height:
        16px;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        2;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

    transition:
        transform .2s ease;

}


.about-button:hover svg {

    transform:
        translateX(4px);

}


/* ============================================================
   TABLET
============================================================ */

@media (
    max-width: 991px
) {

    .about-section {

        padding:
            80px 0 90px;

    }


    .about-grid {

        grid-template-columns:
            1fr;

        gap:
            60px;

    }


    .about-visual {

        max-width:
            720px;

        margin:
            0 auto;

    }


    .about-visual img {

        height:
            500px;

    }


    .about-content {

        max-width:
            720px;

        margin:
            0 auto;

    }


    .about-content h2 {

        font-size:
            48px;

    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (
    max-width: 767px
) {

    .about-section {

        padding:
            65px 0 75px;

    }


    .about-grid {

        gap:
            45px;

    }


    .about-visual {

        padding:
            0 18px 18px 0;

    }


    .about-visual img {

        height:
            420px;

    }


    .about-corner {

        top:
            -12px;

        left:
            -12px;

        width:
            85px;

        height:
            85px;

    }


    .about-badge {

        width:
            145px;

        height:
            125px;

        padding:
            20px;

    }


    .about-badge strong {

        font-size:
            34px;

    }


    .about-badge span {

        font-size:
            8px;

    }


    .about-content h2 {

        font-size:
            39px;

    }


    .about-intro {

        padding-left:
            18px;

        font-size:
            15px;

    }


    .about-list {

        grid-template-columns:
            1fr;

        gap:
            13px;

    }


    .about-button {

        width:
            100%;

    }

}


/* ============================================================
   CELULAR PEQUENO
============================================================ */

@media (
    max-width: 480px
) {

    .about-visual img {

        height:
            360px;

    }


    .about-content h2 {

        font-size:
            34px;

    }

}




/* ============================================================
   SERVIÇOS
============================================================ */

.services-section {

    position:
        relative;

    padding:
        105px 0 115px;

    background:
        var(--qv-mist);

}


/* ============================================================
   CABEÇALHO
============================================================ */

.services-header {

    display:
        flex;

    align-items:
        flex-end;

    gap:
        35px;

    margin-bottom:
        55px;

}


.services-heading {

    max-width:
        70%;

    flex:
        0 0 auto;

}


.services-heading h2 {

    max-width:
        100%;

    margin:
        22px 0 0;

    color:
        var(--qv-primary);

    font-family:
        var(--qv-font-display);

    font-size:
        clamp(
            36px,
            4vw,
            50px
        );

    font-weight:
        400;

    line-height:
        1.04;

    letter-spacing:
        -.02em;

    text-transform:
        uppercase;

}


.services-heading h2 span {

    color:
        var(--qv-teal);

}


.services-header-line {

    flex:
        1;

    height:
        2px;

    margin-bottom:
        10px;

    background:
        rgba(
            15,
            76,
            129,
            .10
        );

}


/* ============================================================
   GRID
============================================================ */

.services-grid {

    display:
        grid;


    gap: 15px; 

    grid-template-columns:
        repeat(
            3,
            minmax(
                0,
                1fr
            )
        );

    border-top:
        1px solid
        rgba(
            15,
            76,
            129,
            .12
        );

    border-left:
        1px solid
        rgba(
            15,
            76,
            129,
            .12
        );

}


/* ============================================================
   CARD
============================================================ */

.service-card {

    position:
        relative;

    display:
        flex;

    flex-direction:
        column;

    min-height:
        355px;

    padding:
        32px 34px 30px;

    overflow:
        hidden;

    background:
        var(--qv-white);

    border-right:
        1px solid
        rgba(
            15,
            76,
            129,
            .12
        );

    border-bottom:
        1px solid
        rgba(
            15,
            76,
            129,
            .12
        );

    transition:
        background .35s ease,
        color .35s ease;

}


/* ============================================================
   BARRA DE HOVER
============================================================ */

.service-card::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    right:
        0;

    left:
        0;

    height:
        4px;

    background:
        var(--qv-teal);

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform .35s ease;

}


.service-card:hover {

    color:
        var(--qv-white);

    background:
        var(--qv-primary);

}


.service-card:hover::before {

    transform:
        scaleX(1);

}


/* ============================================================
   NÚMERO
============================================================ */

.service-number {

    display:
        block;

    color:
        rgba(
            15,
            76,
            129,
            .10
        );

    font-family:
        var(--qv-font-display);

    font-size:
        52px;

    font-weight:
        400;

    line-height:
        .9;

    transition:
        color .35s ease;

}


.service-card:hover .service-number {

    color:
        rgba(
            0,
            184,
            176,
            .24
        );

}


/* ============================================================
   ÍCONE
============================================================ */

.service-icon {

    width:
        42px;

    height:
        42px;

    margin-top:
        29px;

    color:
        var(--qv-teal);

}


.service-icon svg {

    width:
        100%;

    height:
        100%;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        1.5;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

}


/* ============================================================
   TÍTULO
============================================================ */

.service-card h3 {

    margin:
        21px 0 0;

    color:
        var(--qv-primary);

    font-family:
        var(--qv-font-body);

    font-size:
        19px;

    font-weight:
        700;

    line-height:
        1.25;

    text-transform:
        uppercase;

    transition:
        color .35s ease;

}


.service-card:hover h3 {

    color:
        var(--qv-white);

}


/* ============================================================
   DESCRIÇÃO
============================================================ */

.service-card p {

    margin:
        13px 0 0;

    color:
        var(--qv-gray);

    font-family:
        "Hind",
        Arial,
        sans-serif;

    font-size:
        16px;

    line-height:
        1.6;

    transition:
        color .35s ease;

}


.service-card:hover p {

    color:
        rgba(
            255,
            255,
            255,
            .68
        );

}


/* ============================================================
   LINK
============================================================ */

.service-link {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        auto;

    padding-top:
        25px;

    color:
        var(--qv-teal);

    font-family:
        "Hind",
        Arial,
        sans-serif;

    font-size:
        16px;

    font-weight:
        700;

    letter-spacing:
        .18em;

    text-transform:
        uppercase;

}


.service-link svg {

    width:
        16px;

    height:
        16px;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        2;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

    transition:
        transform .25s ease;

}


.service-card:hover .service-link svg {

    transform:
        translate(
            4px,
            -4px
        );

}


/* ============================================================
   TABLET
============================================================ */

@media (
    max-width: 991px
) {

    .services-section {

        padding:
            80px 0 90px;

    }


    .services-header {

        align-items:
            flex-start;

        margin-bottom:
            45px;

    }


    .services-header-line {

        display:
            none;

    }


    .services-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

    }


    .service-card {

        min-height:
            350px;

    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (
    max-width: 767px
) {

    .services-section {

        padding:
            65px 0 75px;

    }


    .services-header {

        margin-bottom:
            35px;

    }


    .services-heading h2 {

        font-size:
            39px;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {

        min-height:
            320px;

        padding:
            30px 27px;

    }

}


/* ============================================================
   CELULAR PEQUENO
============================================================ */

@media (
    max-width: 480px
) {

    .services-heading h2 {

        font-size:
            34px;

    }


    .service-card {

        min-height:
            300px;

    }

}


/* ==========================================================
   SERVIÇOS - DETALHES
========================================================== */

.service-detail {
    grid-column: 1 / -1;

    width: 100%;

    max-height: 0;
    overflow: hidden;

    opacity: 0;

    margin: 0;

    transition:
        max-height .45s ease,
        opacity .3s ease,
        margin .4s ease;
}


.service-detail.show {
    max-height: 700px;

    opacity: 1;

    margin:
        10px
        0
        35px;
}


.service-detail-inner {
    position: relative;

    padding:
        40px
        45px;

    background:
        #f5f7f8;

    border-top:
        3px solid
        var(--primary, #113b4a);
}


.service-detail-content {
    max-width: 900px;
}


.service-detail-label {
    display: block;

    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .12em;

    color:
        var(--brand-green, #76b82a);
}


.service-detail h3 {
    margin:
        0
        0
        15px;

    font-size: 26px;
    line-height: 1.25;

    color:
        var(--primary, #113b4a);
}


.service-detail p {
    max-width: 800px;

    margin:
        0
        0
        25px;

    line-height: 1.7;

    color:
        #526168;
}


.service-detail ul {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        12px
        30px;

    padding: 0;
    margin: 0;

    list-style: none;
}


.service-detail li {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;

    color:
        #34464e;
}


.service-detail li > span {
    flex:
        0
        0
        7px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--brand-green, #76b82a);
}


/* ==========================================================
   FECHAR
========================================================== */

.service-detail-close {
    position: absolute;

    top: 22px;
    right: 25px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px;

    border: 0;

    background: transparent;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .08em;

    color:
        var(--primary, #113b4a);

    cursor: pointer;
}


.service-detail-close svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}


/* ==========================================================
   CARD ATIVO
========================================================== */

.service-card.active {
    border-color:
        var(--brand-green, #76b82a);
}


.service-card.active .service-link {
    color:
        var(--brand-green, #76b82a);
}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (
    max-width: 767px
) {

    .service-detail.show {
        max-height: 900px;
    }


    .service-detail-inner {
        padding:
            35px
            25px;
    }


    .service-detail h3 {
        padding-right: 35px;

        font-size: 22px;
    }


    .service-detail ul {
        grid-template-columns:
            1fr;
    }


    .service-detail-close {
        top: 15px;
        right: 15px;
    }


    .service-detail-close span {
        display: none;
    }

}




/* ============================================================
   COMO TRABALHAMOS
============================================================ */

.process-section {

    position:
        relative;

    padding:
        105px 0 115px;

    background:
        var(--qv-white);

}


/* ============================================================
   CABEÇALHO
============================================================ */

.process-header {

    max-width:
        70%;

}


.process-header h2 {

    margin:
        22px 0 0;

    color:
        var(--qv-primary);

    font-family:
        var(--qv-font-display);

    font-size:
        clamp(
            36px,
            4vw,
            50px
        );

    font-weight:
        400;

    line-height:
        1.04;

    letter-spacing:
        -.02em;

    text-transform:
        uppercase;

}


.process-header h2 span {

    color:
        var(--qv-teal);

}


/* ============================================================
   GRID
============================================================ */

.process-grid {

    display:
        grid;

    gap: 15px;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    margin-top:
        60px;

    border-top:
        1px solid
        rgba(
            15,
            76,
            129,
            .12
        );

    border-left:
        1px solid
        rgba(
            15,
            76,
            129,
            .12
        );

}


/* ============================================================
   CARD
============================================================ */

.process-card {

    position:
        relative;

    min-height:
        315px;

    padding:
        31px 30px 28px;

    background:
        transparent;

    border-right:
        1px solid
        rgba(
            15,
            76,
            129,
            .12
        );

    border-bottom:
        1px solid
        rgba(
            15,
            76,
            129,
            .12
        );

    transition:
        background .3s ease;

}


.process-card:hover {

    background:
        var(--qv-white);

}


/* ============================================================
   TOPO DO CARD
============================================================ */

.process-card-top {

    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

}


/* ============================================================
   ÍCONE
============================================================ */

.process-icon {

    width:
        42px;

    height:
        42px;

    color:
        var(--qv-teal);

}


.process-icon svg {

    width:
        100%;

    height:
        100%;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        1.5;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

}


/* ============================================================
   NÚMERO
============================================================ */

.process-number {

    color:
        rgba(
            15,
            76,
            129,
            .10
        );

    font-family:
        var(--qv-font-display);

    font-size:
        43px;

    font-weight:
        400;

    line-height:
        .9;

    transition:
        color .3s ease;

}


.process-card:hover .process-number {

    color:
        rgba(
            0,
            174,
            179,
            .20
        );

}


/* ============================================================
   TÍTULO
============================================================ */

.process-card h3 {

    margin:
        31px 0 0;

    color:
        var(--qv-primary);

    font-family:
        var(--qv-font-body);

    font-size:
        17px;

    font-weight:
        700;

    line-height:
        1.3;

    text-transform:
        uppercase;

}


/* ============================================================
   TEXTO
============================================================ */

.process-card p {

    max-width:
        250px;

    margin:
        12px 0 0;

    color:
        var(--qv-gray);

    font-family:
        "Hind",
        Arial,
        sans-serif;

    font-size:
        13px;

    line-height:
        1.65;

}


/* ============================================================
   LINHA DE PROGRESSO
============================================================ */

.process-line {

    width:
        38px;

    height:
        4px;

    margin-top:
        30px;

    background:
        var(--qv-teal);

    transition:
        width .45s ease;

}


.process-card:hover .process-line {

    width:
        100%;

}


/* ============================================================
   TABLET
============================================================ */

@media (
    max-width: 991px
) {

    .process-section {

        padding:
            80px 0 90px;

    }


    .process-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

        margin-top:
            45px;

    }


    .process-card {

        min-height:
            290px;

    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (
    max-width: 767px
) {

    .process-section {

        padding:
            65px 0 75px;

    }


    .process-header h2 {

        font-size:
            39px;

    }


    .process-grid {

        grid-template-columns:
            1fr;

        margin-top:
            35px;

    }


    .process-card {

        min-height:
            270px;

        padding:
            28px 25px;

    }

}


/* ============================================================
   CELULAR PEQUENO
============================================================ */

@media (
    max-width: 480px
) {

    .process-header h2 {

        font-size:
            34px;

    }


    .process-card {

        min-height:
            250px;

    }

}


/* ============================================================
   LEGISLAÇÃO
============================================================ */

.legislation-section {

    position:
        relative;

    padding:
        105px 0 115px;

    background:
        var(--qv-mist);

}


/* ============================================================
   GRID PRINCIPAL
============================================================ */

.legislation-grid {

    display:
        grid;

    grid-template-columns:
        .8fr
        1.2fr;

    align-items:
        start;

    gap:
        65px;

}


/* ============================================================
   CONTEÚDO
============================================================ */

.legislation-content {

    padding-top:
        5px;

}


.legislation-content h2 {

    max-width:
        500px;

    margin:
        22px 0 0;

    color:
        var(--qv-primary);

    font-family:
        var(--qv-font-display);

    font-size:
        clamp(
            32px,
            4vw,
            40px
        );

    font-weight:
        400;

    line-height:
        1.04;

    letter-spacing:
        -.02em;

    text-transform:
        uppercase;

}


.legislation-content h2 span {

    color:
        var(--qv-teal);

}


.legislation-content > p {

    max-width:
        470px;

    margin:
        22px 0 0;

    color:
        var(--qv-gray);

    font-family:
        "Hind",
        Arial,
        sans-serif;

    font-size:
        15px;

    line-height:
        1.7;

}


/* ============================================================
   BOTÃO
============================================================ */

.legislation-button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    min-height:
        48px;

    margin-top:
        30px;

    padding:
        0 25px;

    color:
        var(--qv-white);

    background:
        var(--qv-primary);

    font-family:
        "Hind",
        Arial,
        sans-serif;

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        .13em;

    text-transform:
        uppercase;

    transition:
        background .2s ease;

}


.legislation-button:hover {

    background:
        var(--qv-teal);

}


.legislation-button svg {

    width:
        16px;

    height:
        16px;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        2;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

    transition:
        transform .2s ease;

}


.legislation-button:hover svg {

    transform:
        translateX(4px);

}


/* ============================================================
   LISTA
============================================================ */

.legislation-list {

    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        1px;

    padding:
        1px;

    background:
        rgba(
            15,
            76,
            129,
            .12
        );

}


/* ============================================================
   ITEM
============================================================ */

.legislation-item {

    position:
        relative;

    display:
        flex;

    align-items:
        flex-start;

    gap:
        13px;

    min-height:
        92px;

    padding:
        22px 20px;

    color:
        var(--qv-black);

    background:
        var(--qv-white);

    font-family:
        "Hind",
        Arial,
        sans-serif;

    font-size:
        13px;

    font-weight:
        600;

    line-height:
        1.45;

    transition:
        color .25s ease,
        background .25s ease,
        padding-left .25s ease;

}


.legislation-item::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    bottom:
        0;

    left:
        0;

    width:
        3px;

    background:
        var(--qv-teal);

    transform:
        scaleY(0);

    transform-origin:
        bottom;

    transition:
        transform .25s ease;

}


.legislation-item:hover {

    padding-left:
        24px;

    color:
        var(--qv-white);

    background:
        var(--qv-primary);

}


.legislation-item:hover::before {

    transform:
        scaleY(1);

}


/* ============================================================
   ÍCONE
============================================================ */

.legislation-item svg {

    flex:
        0 0 auto;

    width:
        18px;

    height:
        18px;

    margin-top:
        1px;

    fill:
        none;

    stroke:
        var(--qv-teal);

    stroke-width:
        1.8;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

    transition:
        stroke .25s ease;

}


.legislation-item:hover svg {

    stroke:
        var(--qv-teal);

}


.legislation-item span {

    display:
        block;

}


/* ============================================================
   TABLET
============================================================ */

@media (
    max-width: 991px
) {

    .legislation-section {

        padding:
            80px 0 90px;

    }


    .legislation-grid {

        grid-template-columns:
            1fr;

        gap:
            45px;

    }


    .legislation-content h2 {

        max-width:
            700px;

    }


    .legislation-content > p {

        max-width:
            650px;

    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (
    max-width: 767px
) {

    .legislation-section {

        padding:
            65px 0 75px;

    }


    .legislation-content h2 {

        font-size:
            39px;

    }


    .legislation-list {

        grid-template-columns:
            1fr;

    }


    .legislation-item {

        min-height:
            auto;

        padding:
            20px 18px;

    }

}


/* ============================================================
   CELULAR PEQUENO
============================================================ */

@media (
    max-width: 480px
) {

    .legislation-content h2 {

        font-size:
            34px;

    }


    .legislation-content > p {

        font-size:
            14px;

    }

}



.legislation-cards {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


.legislation-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 240px;

    padding: 30px;

    border: 1px solid rgba(0, 0, 0, .08);

    background: #fff;

    text-decoration: none;

    transition:
        border-color .25s ease,
        transform .25s ease,
        background .25s ease;

    cursor: pointer;
}


.legislation-card:hover {
    transform: translateY(-3px);
}


.legislation-card.active {
    border-color:
        var(--brand-green, #76b82a);
}


.legislation-number {
    display: block;

    margin-bottom: 25px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .08em;

    color:
        var(--brand-green, #76b82a);
}


.legislation-icon {
    width: 36px;
    height: 36px;

    margin-bottom: 22px;
}


.legislation-icon svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke:
        var(--primary, #113b4a);

    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.legislation-card h3 {
    margin: 0;

    font-size: 17px;
    line-height: 1.45;

    color:
        var(--primary, #113b4a);
}


.legislation-link {
    margin-top: auto;
    padding-top: 25px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .07em;
}


@media (max-width: 991px) {

    .legislation-cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 575px) {

    .legislation-cards {
        grid-template-columns:
            1fr;
    }

}


.legislation-detail {
    grid-column: 1 / -1;

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height .45s ease,
        opacity .3s ease,
        margin .4s ease;
}


.legislation-detail.show {
    max-height: 500px;

    opacity: 1;

    margin:
        5px
        0
        25px;
}


.legislation-detail-inner {
    position: relative;

    padding:
        38px
        42px;

    background:
        #f4f7f7;

    border-top:
        3px solid
        var(--brand-green, #76b82a);
}


.legislation-detail-label {
    display: block;

    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .12em;

    color:
        var(--brand-green, #76b82a);
}


.legislation-detail h3 {
    max-width: 850px;

    margin:
        0
        0
        15px;

    font-size: 24px;

    color:
        var(--primary, #113b4a);
}


.legislation-detail p {
    max-width: 850px;

    margin: 0;

    line-height: 1.7;

    color: #526168;
}


.legislation-detail-close {
    position: absolute;

    top: 20px;
    right: 25px;

    border: 0;

    background: transparent;

    cursor: pointer;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;

    color:
        var(--primary, #113b4a);
}





/* ============================================================
   CTA FINAL
============================================================ */

.final-cta {

    position:
        relative;

    overflow:
        hidden;

    background:
        var(--qv-primary);

}


/* ============================================================
   PADRÃO TÉCNICO
============================================================ */

.final-cta-pattern {

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

    opacity:
        .35;

    background-image:
        radial-gradient(
            rgba(
                255,
                255,
                255,
                .18
            ) 1.5px,
            transparent 1.5px
        );

    background-size:
        18px 18px;

}


/* ============================================================
   CONTEÚDO
============================================================ */

.final-cta-inner {

    position:
        relative;

    z-index:
        1;

    display:
        grid;

    grid-template-columns:
        1.2fr
        .8fr;

    align-items:
        center;

    gap:
        50px;

    min-height:
        285px;

    padding-top:
        65px;

    padding-bottom:
        65px;

}


/* ============================================================
   TÍTULO
============================================================ */

.final-cta-content h2 {

    max-width:
        700px;

    margin:
        0;

    color:
        var(--qv-white);

    font-family:
        var(--qv-font-display);

    font-size:
        clamp(
            32px,
            4vw,
            40px
        );

    font-weight:
        400;

    line-height:
        1.04;

    letter-spacing:
        -.02em;

    text-transform:
        uppercase;

}


.final-cta-content h2 span {

    color:
        var(--qv-green);

}


/* ============================================================
   TEXTO
============================================================ */

.final-cta-content p {

    max-width:
        590px;

    margin:
        20px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    font-family:
        "Hind",
        Arial,
        sans-serif;

    font-size:
        15px;

    line-height:
        1.7;

}


.final-cta-content p strong {

    color:
        var(--qv-white);

    font-weight:
        600;

}


/* ============================================================
   AÇÕES
============================================================ */

.final-cta-actions {

    display:
        flex;

    flex-wrap:
        wrap;

    align-items:
        center;

    justify-content:
        flex-end;

    gap:
        12px;

}


/* ============================================================
   BOTÕES
============================================================ */

.final-cta-button {

    min-width:280px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    min-height:
        50px;

    padding:
        0 24px;

    font-family:
        "Hind",
        Arial,
        sans-serif;

    font-size:
        14px;

    font-weight:
        700;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;

}


.final-cta-button svg {

    flex:
        0 0 auto;

    width:
        17px;

    height:
        17px;

}


/* ============================================================
   BOTÃO PRINCIPAL
============================================================ */

.final-cta-primary {

    color:
        var(--qv-white);

    background:
        var(--qv-teal);

}


.final-cta-primary:hover {

    background:
        var(--qv-green);

}


/* WhatsApp é preenchido */

.final-cta-primary svg {

    fill:
        currentColor;

    stroke:
        none;

}


/* ============================================================
   TELEFONE
============================================================ */

.final-cta-phone {

    color:
        var(--qv-white);

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .32
        );

}


.final-cta-phone:hover {

    color:
        var(--qv-primary);

    background:
        var(--qv-white);

    border-color:
        var(--qv-white);

}


.final-cta-phone svg {

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        1.8;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

}


/* ============================================================
   TABLET
============================================================ */

@media (
    max-width: 991px
) {

    .final-cta-inner {

        grid-template-columns:
            1fr;

        gap:
            30px;

        padding-top:
            60px;

        padding-bottom:
            60px;

    }


    .final-cta-actions {

        justify-content:
            flex-start;

    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (
    max-width: 767px
) {

    .final-cta-inner {

        padding-top:
            55px;

        padding-bottom:
            55px;

    }


    .final-cta-content h2 {

        font-size:
            39px;

    }


    .final-cta-content p {

        font-size:
            14px;

    }


    .final-cta-actions {

        flex-direction:
            column;

        align-items:
            stretch;

    }


    .final-cta-button {

        width:
            100%;

    }

}


/* ============================================================
   CELULAR PEQUENO
============================================================ */

@media (
    max-width: 480px
) {

    .final-cta-content h2 {

        font-size:
            34px;

    }

}

















/* ============================================================
   RESPONSIVO — ATÉ 1199
============================================================ */

@media (
    max-width: 1199px
) {

    .container {

        padding-left:
            24px;

        padding-right:
            24px;

    }


    .main-nav a {

        padding-left:
            13px;

        padding-right:
            13px;

        font-size:
            11px;

    }


    .header-cta {

        padding-left:
            17px;

        padding-right:
            17px;

    }


    .hero-content-inner {

        margin-left:
            24px;

        padding:
            55px 40px 65px 0;

    }


    .hero h1 {

        font-size:
            58px;

    }


    .hero-cards {

        gap:
            14px;

    }


    .hero-card {

        padding:
            27px 22px 27px;

    }

}


/* ============================================================
   RESPONSIVO — TABLET
============================================================ */

@media (
    max-width: 991px
) {

    .header-top {

        display:
            none;

    }


    .header-main-inner {

        height:
            72px;

    }


    .main-nav {

        position:
            absolute;

        top:
            72px;

        right:
            24px;

        left:
            24px;

        display:
            none;

        height:
            auto;

        margin:
            0;

        padding:
            8px 0;

        background:
            var(--qv-white);

        border:
            1px solid
            var(--qv-border);

        box-shadow:
            0 15px 35px
            rgba(
                0,
                0,
                0,
                .10
            );

    }


    .main-nav.is-open {

        display:
            flex;

        flex-direction:
            column;

    }


    .main-nav a {

        min-height:
            48px;

        padding:
            0 20px;

    }


    .main-nav a::after {

        right:
            20px;

        bottom:
            0;

        left:
            20px;

    }


    .header-cta {

        display:
            none;

    }


    .mobile-menu-button {

        display:
            flex;

    }


    /* ----------------------------------------
       HERO
    ---------------------------------------- */

    .hero {

        padding-bottom:
            60px;

    }


    .hero-grid {

        grid-template-columns:
            1fr;

    }


    .hero-content {

        min-height:
            auto;

    }


    .hero-content-inner {

        max-width:
            760px;

        margin-left:
            0;

        padding:
            65px 55px 75px;

    }


    .hero h1 {

        max-width:
            700px;

        font-size:
            clamp(
                46px,
                8vw,
                70px
            );

    }


    .hero-image {

        min-height:
            430px;

    }


    /* ----------------------------------------
       CARDS
    ---------------------------------------- */

    .hero-cards {

        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

        gap:
            18px;

        margin-top:
            -55px;

    }


    .hero-card {

        min-height:
            190px;

    }

}


/* ============================================================
   RESPONSIVO — MOBILE
============================================================ */

@media (
    max-width: 767px
) {

    .container {

        padding-left:
            18px;

        padding-right:
            18px;

    }


    .site-logo img {

        height:
            38px;

    }


    .main-nav {

        right:
            18px;

        left:
            18px;

    }


    /* ----------------------------------------
       HERO
    ---------------------------------------- */

    .hero-content-inner {

        padding:
            50px 30px 55px;

    }


    .hero h1 {

        font-size:
            clamp(
                40px,
                11vw,
                58px
            );

    }


    .hero-description {

        font-size:
            14px;

    }


    .hero-actions {

        flex-direction:
            column;

        align-items:
            stretch;

    }


    .btn {

        width:
            100%;

    }


    .hero-stats {

        gap:
            0;

    }


    .hero-stat strong {

        font-size:
            20px;

    }


    .hero-stat span {

        font-size:
            7px;

    }


    .hero-image {

        min-height:
            350px;

    }


    /* ----------------------------------------
       CARDS
    ---------------------------------------- */

    .hero-cards {

        grid-template-columns:
            1fr;

        gap:
            16px;

        margin-top:
            -35px;

    }


    .hero-card {

        min-height:
            auto;

        padding:
            27px;

    }

}


/* ============================================================
   RESPONSIVO — CELULAR PEQUENO
============================================================ */

@media (
    max-width: 480px
) {

    .hero-content-inner {

        padding:
            42px 22px 48px;

    }


    .hero h1 {

        font-size:
            39px;

    }


    .hero-stats {

        grid-template-columns:
            1fr;

    }


    .hero-stat {

        min-height:
            auto;

        padding:
            14px 0;

        border-bottom:
            1px solid
            rgba(
                255,
                255,
                255,
                .12
            );

    }


    .hero-stat + .hero-stat {

        padding-left:
            0;

        border-left:
            0;

    }


    .hero-image {

        min-height:
            300px;

    }

}