/* ==========================================================
CEV WEBSITE
pages/home.css

CSS EXCLUSIVO DA HOME

Este arquivo é carregado depois de:

assets/css/style.css

Responsabilidades:

- Hero exclusivo da Home
- Hero Stats
- Highlights
- Benefits
- Áreas
- Empresas
- Contato
- Formulário
- Privacidade LGPD
- Mensagem AJAX
- CTA
- Responsividade específica da Home

REGRA:

style.css
↓
identidade e componentes globais

home.css
↓
composição e funcionalidades exclusivas da Home

Este arquivo NÃO redefine:

- Reset
- Tipografia global
- Header
- Footer
- Container global
- Sistema global de botões
- Cores institucionais globais
========================================================== */


/* ==========================================================
HOME — HERO
========================================================== */

/*
 * O Hero da Home é deliberadamente mais alto que os Heroes
 * internos.
 *
 * A estrutura .hero é exclusiva da Home.
 *
 * Os Heroes internos utilizam .page-hero, controlado pelo
 * style.css.
 *
 * Portanto não utilizamos --cev-hero-height aqui.
 */

.hero {
    --home-hero-height: 720px;

    position: relative;

    min-height:
        var(--home-hero-height);

    display: flex;

    align-items: center;

    overflow: hidden;

    isolation: isolate;

    padding-top:
        var(--header-height);

    background:
        var(--color-green-dark);
}


/* ==========================================================
HOME — IMAGEM DO HERO
========================================================== */

.hero-image {
    position: absolute;

    z-index: -3;

    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    object-position:
        center center;

    transform:
        scale(1.01);
}


/* ==========================================================
HOME — OVERLAY DO HERO
========================================================== */

.hero-overlay {
    position: absolute;

    z-index: -2;

    inset: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(6, 35, 32, 0.94) 0%,
            rgba(6, 35, 32, 0.72) 42%,
            rgba(6, 35, 32, 0.30) 72%,
            rgba(6, 35, 32, 0.16) 100%
        );

    pointer-events: none;
}


/* ==========================================================
HOME — CONTAINER DO HERO
========================================================== */

/*
 * Não redefinimos .container global.
 *
 * O HTML pode continuar usando:
 *
 * <div class="hero-container container">
 *
 * Nesse caso, .container vem do style.css e esta classe
 * controla apenas a composição interna do Hero.
 */

.hero-container {
    width: min(
        calc(100% - var(--container-gutter)),
        var(--container)
    );

    display: flex;

    align-items: center;

    margin-inline: auto;
}


/* ==========================================================
HOME — CONTEÚDO DO HERO
========================================================== */

.hero-content {
    width: 100%;

    max-width:
        620px;

    padding:
        70px 0;

    color:
        var(--color-white);
}


/* ==========================================================
HOME — TAG DO HERO
========================================================== */

.hero-tag {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height:
        28px;

    margin:
        0 0 20px;

    padding:
        0 15px;

    border-radius:
        var(--radius-pill);

    background:
        var(--color-red);

    color:
        var(--color-white);

    font-size:
        var(--cev-text-xs);

    line-height:
        1;

    font-weight:
        var(--font-weight-extrabold);

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;
}


/* ==========================================================
HOME — TÍTULO DO HERO
========================================================== */

.hero h1 {
    max-width:
        620px;

    margin:
        0 0 20px;

    color:
        var(--color-white);

    /*
     * O tamanho continua sendo específico da Home.
     * A Home possui uma hierarquia visual maior que os
     * Heroes internos.
     */
    font-size:
        clamp(
            42px,
            5.2vw,
            70px
        );

    line-height:
        0.98;

    font-weight:
        var(--font-weight-extrabold);

    letter-spacing:
        -0.045em;

    text-shadow:
        0 2px 5px
        rgba(
            0,
            0,
            0,
            0.12
        );
}


/* ==========================================================
HOME — TEXTO DO HERO
========================================================== */

.hero p {
    max-width:
        540px;

    margin:
        0 0 34px;

    color:
        rgba(
            255,
            255,
            255,
            0.92
        );

    font-size:
        16px;

    line-height:
        1.65;
}


/* ==========================================================
HOME — BOTÕES DO HERO
========================================================== */

.hero-buttons {
    display:
        flex;

    flex-wrap:
        wrap;

    align-items:
        center;

    gap:
        14px;
}

.hero-buttons .btn {
    min-width:
        190px;

    justify-content:
        center;
}


/* ==========================================================
HOME — BOTÃO OUTLINE DO HERO
========================================================== */

/*
 * .btn-outline continua sendo global.
 *
 * Esta variação é exclusiva da Home porque precisa funcionar
 * sobre a imagem escura do Hero.
 */

.hero-buttons .btn-outline-light {
    border-color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    background:
        rgba(
            255,
            255,
            255,
            0.10
        );

    color:
        var(--color-white);

    -webkit-backdrop-filter:
        blur(10px);

    backdrop-filter:
        blur(10px);
}

.hero-buttons .btn-outline-light:hover {
    border-color:
        var(--color-white);

    background:
        var(--color-white);

    color:
        var(--color-green);
}


/* ==========================================================
HOME — HERO STATS
========================================================== */

.hero-stats {
    display:
        grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap:
        14px;

    width:
        100%;

    max-width:
        760px;

    margin-top:
        36px;
}

.hero-stat {
    min-height:
        104px;

    padding:
        18px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.22
        );

    border-radius:
        var(--radius);

    background:
        rgba(
            255,
            255,
            255,
            0.14
        );

    -webkit-backdrop-filter:
        blur(12px);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 10px 30px
        rgba(
            0,
            0,
            0,
            0.08
        );
}

.hero-stat strong {
    display:
        block;

    color:
        var(--color-white);

    font-size:
        32px;

    line-height:
        1;

    font-weight:
        var(--font-weight-extrabold);

    letter-spacing:
        -0.025em;
}

.hero-stat span {
    display:
        block;

    margin-top:
        7px;

    color:
        rgba(
            255,
            255,
            255,
            0.90
        );

    font-size:
        var(--cev-text-xs);

    line-height:
        1.4;

    font-weight:
        var(--font-weight-medium);
}


/* ==========================================================
HOME — HIGHLIGHTS
========================================================== */

.highlights {
    position:
        relative;

    z-index:
        20;

    margin-top:
        -40px;

    padding-top:
        0;
}

.highlights-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap:
        20px;
}

.highlight-card {
    min-height:
        220px;

    padding:
        32px;

    border-radius:
        var(--radius-lg);

    color:
        var(--color-white);

    box-shadow:
        var(--shadow);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.highlight-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow-lg);
}

.highlight-primary {
    background:
        linear-gradient(
            135deg,
            var(--color-green),
            #08736B
        );
}

.highlight-secondary {
    background:
        linear-gradient(
            135deg,
            var(--color-red),
            #D9534B
        );
}

.highlight-dark {
    background:
        linear-gradient(
            135deg,
            #203337,
            #30474B
        );
}

.highlight-icon {
    width:
        54px;

    height:
        54px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        18px;

    border-radius:
        50%;

    background:
        rgba(
            255,
            255,
            255,
            0.16
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.10
        );
}

.highlight-icon img {
    width:
        26px;

    height:
        26px;

    object-fit:
        contain;

    filter:
        brightness(0)
        invert(1);
}

.highlight-card h2 {
    margin:
        0 0 10px;

    color:
        var(--color-white);

    font-size:
        21px;

    line-height:
        1.15;

    font-weight:
        var(--font-weight-extrabold);

    letter-spacing:
        -0.02em;
}

.highlight-card p {
    margin:
        0;

    color:
        rgba(
            255,
            255,
            255,
            0.88
        );

    font-size:
        var(--cev-text-sm);

    line-height:
        1.65;
}


/* ==========================================================
HOME — BENEFITS
========================================================== */

.why-section {
    background:
        var(--color-light);
}

.benefits-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap:
        22px;
}

.benefit-card {
    height:
        100%;

    padding:
        34px;

    border:
        1px solid
        var(--color-border-light);

    border-radius:
        var(--radius-lg);

    background:
        var(--color-white);

    box-shadow:
        var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.benefit-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);
}

.benefit-number {
    width:
        52px;

    height:
        52px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        20px;

    border-radius:
        50%;

    background:
        var(--color-green);

    color:
        var(--color-white);

    font-size:
        var(--cev-text-lg);

    line-height:
        1;

    font-weight:
        var(--font-weight-extrabold);
}

.benefit-card h3 {
    margin:
        0 0 12px;

    color:
        var(--color-title);

    font-size:
        20px;

    line-height:
        1.2;

    font-weight:
        var(--font-weight-extrabold);

    letter-spacing:
        -0.015em;
}

.benefit-card p {
    color:
        var(--color-muted);

    font-size:
        var(--cev-text-sm);

    line-height:
        1.7;
}


/* ==========================================================
HOME — ÁREAS
========================================================== */

.featured-areas {
    background:
        var(--color-white);
}


.areas-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap:
        22px;

    /*
     * Faz todos os cards da mesma linha ocuparem
     * a mesma altura do card mais alto.
     */
    align-items:
        stretch;
}


.area-card {
    /*
     * O card passa a funcionar como uma coluna flexível.
     *
     * Isso permite que o corpo do card ocupe todo o
     * espaço disponível e que o botão fique alinhado
     * no final.
     */
    display:
        flex;

    flex-direction:
        column;

    min-width:
        0;

    height:
        100%;

    overflow:
        hidden;

    border:
        1px solid
        var(--color-border-light);

    border-radius:
        var(--radius-lg);

    background:
        var(--color-white);

    box-shadow:
        var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.area-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);
}


/* ==========================================================
HOME — IMAGEM DA ÁREA
========================================================== */

.area-carousel {
    position:
        relative;

    flex:
        0 0 250px;

    height:
        250px;

    overflow:
        hidden;

    background:
        var(--color-light-2);
}


.area-carousel img {
    display:
        block;

    width:
        100%;

    height:
        100%;

    max-width:
        none;

    object-fit:
        cover;

    transition:
        transform var(--transition-slow);
}


.area-card:hover .area-carousel img {
    transform:
        scale(1.04);
}


/* ==========================================================
HOME — CORPO DO CARD DA ÁREA
========================================================== */

.area-body {
    /*
     * Ocupa todo o espaço restante do card.
     *
     * Como os cards da mesma linha possuem a mesma altura,
     * isso permite posicionar o botão no mesmo nível.
     */
    display:
        flex;

    flex-direction:
        column;

    flex:
        1;

    min-width:
        0;

    padding:
        26px;
}


/* ==========================================================
HOME — CATEGORIA DA ÁREA
========================================================== */

.area-category {
    display:
        inline-flex;

    align-items:
        center;

    align-self:
        flex-start;

    min-height:
        24px;

    margin:
        0 0 12px;

    padding:
        0 10px;

    border-radius:
        var(--radius-pill);

    background:
        #EAF5F4;

    color:
        var(--color-green);

    font-size:
        var(--cev-text-xs);

    line-height:
        1;

    font-weight:
        var(--font-weight-extrabold);

    letter-spacing:
        0.06em;

    text-transform:
        uppercase;
}


/* ==========================================================
HOME — TÍTULO DA ÁREA
========================================================== */

.area-body h3 {
    margin:
        0 0 10px;

    color:
        var(--color-title);

    font-size:
        20px;

    line-height:
        1.2;

    font-weight:
        var(--font-weight-extrabold);

    letter-spacing:
        -0.015em;
}


/* ==========================================================
HOME — DESCRIÇÃO DA ÁREA
========================================================== */

.area-body p {
    margin:
        0;

    color:
        var(--color-muted);

    font-size:
        var(--cev-text-sm);

    line-height:
        1.65;
}


/* ==========================================================
HOME — BOTÃO DA ÁREA
========================================================== */

/*
 * O margin-top: auto empurra o botão para o final
 * do corpo do card.
 *
 * Dessa forma, descrições com quantidades diferentes
 * de texto não alteram o alinhamento visual dos botões.
 *
 * Não limitamos a quantidade de linhas da descrição.
 * O conteúdo continua sendo exibido integralmente.
 */

.area-body .btn {
    margin-top:
        auto;

    align-self:
        flex-start;
}


/* ==========================================================
HOME — EMPRESAS
========================================================== */

.companies {
    overflow:
        hidden;

    background:
        var(--color-light);
}

.companies-carousel {
    width:
        100%;

    overflow:
        hidden;
}

.companies-track {
    display:
        flex;

    align-items:
        stretch;

    gap:
        20px;

    width:
        max-content;
}

.company-logo {
    width:
        210px;

    min-height:
        96px;

    flex:
        0 0 210px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        18px;

    border:
        1px solid
        var(--color-border-light);

    border-radius:
        var(--radius);

    background:
        var(--color-white);

    box-shadow:
        var(--shadow-sm);
}

.company-logo img {
    width:
        auto;

    max-width:
        165px;

    max-height:
        64px;

    object-fit:
        contain;

    filter:
        grayscale(100%);

    opacity:
        0.72;

    transition:
        filter var(--transition),
        opacity var(--transition),
        transform var(--transition);
}

.company-logo:hover img {
    filter:
        none;

    opacity:
        1;

    transform:
        scale(1.03);
}

.companies-action {
    display:
        flex;

    justify-content:
        center;

    margin-top:
        40px;
}


/* ==========================================================
HOME — CONTATO
========================================================== */

.contact-section {
    padding:
        95px 0;
}

.contact-wrapper {
    display:
        grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap:
        60px;

    align-items:
        start;
}

.contact-info {
    padding-top:
        10px;
}

.contact-info h2 {
    max-width:
        520px;

    margin:
        20px 0;

    color:
        var(--color-title);

    font-size:
        clamp(
            34px,
            4vw,
            52px
        );

    line-height:
        1.05;

    font-weight:
        var(--font-weight-extrabold);

    letter-spacing:
        -0.04em;
}

.contact-info p {
    max-width:
        500px;

    color:
        var(--color-muted);

    font-size:
        var(--cev-text-md);

    line-height:
        1.75;
}

.contact-benefits {
    display:
        flex;

    flex-direction:
        column;

    gap:
        12px;

    margin:
        28px 0;

    padding:
        0;

    list-style:
        none;
}

.contact-benefits li {
    color:
        var(--color-title);

    font-size:
        var(--cev-text-sm);

    line-height:
        1.5;

    font-weight:
        var(--font-weight-semibold);
}

.contact-data {
    display:
        flex;

    flex-direction:
        column;

    gap:
        18px;

    margin-top:
        34px;
}

.contact-data strong {
    display:
        block;

    margin-bottom:
        5px;

    color:
        var(--color-title);

    font-size:
        var(--cev-text-sm);

    line-height:
        1.2;

    font-weight:
        var(--font-weight-extrabold);
}

.contact-data a,
.contact-data span {
    color:
        var(--color-muted);

    font-size:
        var(--cev-text-sm);

    line-height:
        1.65;

    text-decoration:
        none;
}

.contact-data a:hover {
    color:
        var(--color-green);
}


/* ==========================================================
HOME — FORMULÁRIO
========================================================== */

.contact-form-box {
    width:
        100%;

    padding:
        40px;

    border:
        1px solid
        var(--color-border-light);

    border-radius:
        var(--radius-xl);

    background:
        var(--color-white);

    box-shadow:
        0 25px 70px
        rgba(
            0,
            0,
            0,
            0.10
        );
}

.contact-form {
    display:
        flex;

    flex-direction:
        column;

    gap:
        18px;
}

.form-group {
    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;
}

.form-group label {
    color:
        var(--color-title);

    font-size:
        var(--cev-text-sm);

    line-height:
        1.3;

    font-weight:
        var(--font-weight-bold);
}

.form-group input,
.form-group textarea {
    width:
        100%;

    padding:
        14px 15px;

    border:
        1px solid
        var(--color-border);

    border-radius:
        var(--radius-md);

    background:
        var(--color-white);

    color:
        var(--color-title);

    font-family:
        var(--font-family);

    font-size:
        var(--cev-text-sm);

    line-height:
        1.5;

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color:
        #9AA5A7;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color:
        #C9D4D2;
}

.form-group input:focus,
.form-group textarea:focus {
    outline:
        none;

    border-color:
        var(--color-green);

    box-shadow:
        0 0 0 3px
        rgba(
            13,
            92,
            87,
            0.12
        );
}

.form-group textarea {
    min-height:
        130px;

    resize:
        vertical;
}


/* ==========================================================
HOME — PRIVACIDADE / LGPD
========================================================== */

.form-privacy {
    color:
        var(--color-muted);

    font-size:
        var(--cev-text-xs);

    line-height:
        1.55;
}

.form-privacy label {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        10px;
}

.form-privacy input {
    flex:
        0 0 16px;

    width:
        16px;

    height:
        16px;

    margin-top:
        3px;

    accent-color:
        var(--color-green);
}

.form-privacy a {
    color:
        var(--color-green);

    text-decoration:
        underline;

    text-underline-offset:
        2px;
}

.form-privacy a:hover {
    color:
        var(--color-red);
}


/* ==========================================================
HOME — BOTÃO DO FORMULÁRIO
========================================================== */

.contact-form button {
    width:
        100%;

    margin-top:
        4px;
}


/* ==========================================================
HOME — MENSAGEM AJAX
========================================================== */

.contact-message {
    display:
        none;

    width:
        100%;

    margin:
        4px 0;

    padding:
        15px 18px;

    border-radius:
        var(--radius-md);

    font-size:
        var(--cev-text-sm);

    line-height:
        1.5;

    font-weight:
        var(--font-weight-bold);

    text-align:
        center;
}

.contact-message.success {
    display:
        block;

    border:
        1px solid
        var(--color-green);

    background:
        #E7F7F3;

    color:
        var(--color-green);
}

.contact-message.error {
    display:
        block;

    border:
        1px solid
        var(--color-red);

    background:
        #FDECEB;

    color:
        var(--color-red);
}


/* ==========================================================
HOME — CTA
========================================================== */

.cta-section {
    padding:
        70px 0;

    background:
        linear-gradient(
            135deg,
            var(--color-red) 0%,
            var(--color-red-dark) 100%
        );

    color:
        var(--color-white);
}

.cta-box {
    max-width:
        850px;

    margin-inline:
        auto;

    text-align:
        center;
}

.cta-box h2 {
    margin:
        0 0 16px;

    color:
        var(--color-white);

    font-size:
        clamp(
            30px,
            4vw,
            44px
        );

    line-height:
        1.08;

    font-weight:
        var(--font-weight-extrabold);

    letter-spacing:
        -0.035em;
}

.cta-box p {
    max-width:
        620px;

    margin:
        0 auto 28px;

    color:
        rgba(
            255,
            255,
            255,
            0.90
        );

    font-size:
        var(--cev-text-sm);

    line-height:
        1.65;
}

.cta-box .btn {
    min-height:
        48px;
}


/* ==========================================================
HOME — HONEYPOT
========================================================== */

.honeypot {
    position:
        absolute;

    left:
        -9999px;

    width:
        1px;

    height:
        1px;

    opacity:
        0;

    pointer-events:
        none;

    overflow:
        hidden;
}


/* ==========================================================
HOME — RESPONSIVO 1100px
========================================================== */

@media (max-width: 1100px) {

    .hero {
        --home-hero-height:
            680px;
    }

    .hero-stats {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        max-width:
            620px;
    }

    .highlights-grid,
    .benefits-grid,
    .areas-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .contact-wrapper {
        gap:
            45px;
    }
}


/* ==========================================================
HOME — RESPONSIVO 900px
========================================================== */

@media (max-width: 900px) {

    .hero {
        --home-hero-height:
            650px;

        padding-top:
            var(--header-mobile-height);
    }

    .hero-content {
        max-width:
            600px;

        padding:
            55px 0;
    }

    .hero h1 {
        font-size:
            clamp(
                42px,
                7vw,
                60px
            );
    }

    .contact-wrapper {
        grid-template-columns:
            1fr;

        gap:
            45px;
    }

    .contact-info {
        padding-top:
            0;
    }
}


/* ==========================================================
HOME — RESPONSIVO 700px
========================================================== */

@media (max-width: 700px) {

    .hero {
        --home-hero-height:
            650px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(6, 35, 32, 0.94) 0%,
                rgba(6, 35, 32, 0.78) 65%,
                rgba(6, 35, 32, 0.48) 100%
            );
    }

    .hero-content {
        padding:
            45px 0;
    }

    .hero-tag {
        min-height:
            27px;

        margin-bottom:
            16px;

        padding-inline:
            14px;
    }

    .hero h1 {
        max-width:
            560px;

        margin-bottom:
            16px;

        font-size:
            clamp(
                38px,
                10vw,
                52px
            );

        line-height:
            1.01;
    }

    .hero p {
        max-width:
            540px;

        margin-bottom:
            28px;

        font-size:
            14px;

        line-height:
            1.6;
    }

    .hero-buttons {
        width:
            100%;

        gap:
            10px;
    }

    .hero-buttons .btn {
        width:
            100%;

        min-width:
            0;
    }

    .hero-stats {
        width:
            100%;

        gap:
            10px;

        margin-top:
            28px;
    }

    .hero-stat {
        min-height:
            88px;

        padding:
            15px 10px;
    }

    .hero-stat strong {
        font-size:
            27px;
    }

    .hero-stat span {
        font-size:
            10px;
    }

    .highlights {
        margin-top:
            -20px;
    }

    .highlights-grid,
    .benefits-grid,
    .areas-grid {
        grid-template-columns:
            1fr;
    }

    .highlight-card {
        min-height:
            0;

        padding:
            28px;
    }

    .benefit-card {
        padding:
            30px;
    }

    /*
     * No mobile, a imagem continua padronizada,
     * mas com altura própria para a largura reduzida.
     */
    .area-carousel {
        flex-basis:
            240px;

        height:
            240px;
    }

    .area-body {
        flex:
            1;

        padding:
            24px;
    }

    .contact-section {
        padding:
            70px 0;
    }

    .contact-info h2 {
        font-size:
            36px;
    }

    .contact-form-box {
        padding:
            30px;
    }

    .cta-section {
        padding:
            60px 0;
    }
}


/* ==========================================================
HOME — RESPONSIVO 600px
========================================================== */

@media (max-width: 600px) {

    .hero-stats {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .company-logo {
        width:
            190px;

        flex-basis:
            190px;
    }

    .company-logo img {
        max-width:
            150px;
    }

    .contact-form-box {
        border-radius:
            var(--radius-lg);
    }
}


/* ==========================================================
HOME — RESPONSIVO 460px
========================================================== */

@media (max-width: 460px) {

    .hero {
        --home-hero-height:
            620px;
    }

    .hero-content {
        padding:
            38px 0;
    }

    .hero h1 {
        font-size:
            37px;

        letter-spacing:
            -0.04em;
    }

    .hero p {
        font-size:
            13px;
    }

    .hero-stat {
        min-height:
            82px;

        padding:
            12px 8px;
    }

    .hero-stat strong {
        font-size:
            24px;
    }

    .hero-stat span {
        margin-top:
            5px;

        font-size:
            9px;
    }

    .highlight-card {
        padding:
            26px;
    }

    .benefit-card {
        padding:
            26px;
    }

    .area-carousel {
        flex-basis:
            220px;

        height:
            220px;
    }

    .area-body {
        flex:
            1;

        padding:
            22px;
    }

    .contact-info h2 {
        font-size:
            32px;
    }

    .contact-form-box {
        padding:
            24px 20px;
    }

    .form-group input,
    .form-group textarea {
        padding:
            13px 14px;
    }

    .cta-section {
        padding:
            52px 0;
    }

    .cta-box h2 {
        font-size:
            30px;
    }
}


/* ==========================================================
HOME — MOVIMENTO REDUZIDO
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .hero-image,
    .highlight-card,
    .benefit-card,
    .area-card,
    .area-carousel img,
    .company-logo img,
    .hero-buttons .btn {
        transition:
            none;
    }

    .hero-image {
        transform:
            none;
    }
}