/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #f7fafc;

    color: #102235;

    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


a {
    transition: .25s ease;
}


.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}



/* =========================
   HEADER
========================= */

.header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 22px 0;

    border-bottom:
        1px solid rgba(255,255,255,.09);
}


.header-container {
    display: flex;

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

    gap: 30px;
}



/* LOGO */

.logo {
    display: flex;

    align-items: center;

    gap: 11px;

    color: #fff;

    text-decoration: none;

    font-size: 20px;
    font-weight: 900;

    letter-spacing: .5px;
}


.logo > div {
    display: flex;
    flex-direction: column;
}


.logo span {
    color: #52d3ff;
}


.logo small {
    margin-top: 2px;

    color: #7e9bb1;

    font-size: 8px;

    letter-spacing: 3px;
}


.logo-icon {
    width: 40px;
    height: 40px;

    display: flex;

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

    border:
        1px solid rgba(82,211,255,.4);

    border-radius: 50%;

    color: #52d3ff;

    font-size: 19px;
}



/* NAV */

.nav {
    display: flex;

    align-items: center;

    gap: 27px;
}


.nav a {
    color: #dbe7ef;

    text-decoration: none;

    font-size: 12px;
}


.nav a:hover {
    color: #52d3ff;
}


.nav-mobile-cta {
    display: none;
}



/* HEADER CTA */

.btn-header {
    flex-shrink: 0;

    padding: 12px 18px;

    border:
        1px solid rgba(82,211,255,.65);

    border-radius: 6px;

    color: #52d3ff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;
}


.btn-header:hover {
    background: #52d3ff;
    color: #071827;
}



/* MENU */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border:
        1px solid rgba(255,255,255,.2);

    border-radius: 6px;

    background:
        rgba(255,255,255,.05);

    cursor: pointer;

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

    flex-direction: column;

    gap: 5px;
}


.menu-toggle span {
    width: 19px;
    height: 2px;

    background: #fff;

    display: block;

    transition: .3s;
}



/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    background:

        linear-gradient(
            90deg,
            rgba(5,20,34,.98) 0%,
            rgba(5,25,42,.91) 45%,
            rgba(5,25,42,.52) 100%
        ),

        url("img/hero-df.webp");

    background-size: cover;

    background-position: center;

    color: #fff;

    overflow: hidden;
}



.hero::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    top: -230px;
    left: -250px;

    border-radius: 50%;

    background:
        rgba(82,211,255,.12);

    filter: blur(90px);
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 75%,
            rgba(5,20,34,.7)
        );
}



/* HERO CONTENT */

.hero-content {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.3fr .7fr;

    gap: 80px;

    align-items: center;

    padding:
        145px 0 150px;
}



.hero-text {
    max-width: 720px;
}



/* TAG */

.hero-tag {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #52d3ff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.hero-tag span {
    width: 25px;
    height: 2px;

    background: #52d3ff;
}



/* H1 */

.hero h1 {
    max-width: 720px;

    margin-top: 22px;

    font-size:
        clamp(48px, 6vw, 76px);

    line-height: 1.02;

    letter-spacing: -3px;
}


.hero h1 strong {
    display: block;

    color: #52d3ff;
}



/* DESCRIPTION */

.hero-text > p {
    max-width: 590px;

    margin-top: 25px;

    color: #afc2d0;

    font-size: 17px;

    line-height: 1.75;
}



/* BUTTONS */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 35px;
}


.btn-primary,
.btn-secondary {
    min-height: 52px;

    display: inline-flex;

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

    gap: 15px;

    padding: 0 23px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;
}


.btn-primary {
    background: #52d3ff;

    color: #071827;
}


.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 30px
        rgba(82,211,255,.15);
}


.btn-secondary {
    border:
        1px solid rgba(255,255,255,.23);

    color: #fff;

    background:
        rgba(255,255,255,.03);
}


.btn-secondary:hover {
    border-color: #52d3ff;

    color: #52d3ff;
}



/* BENEFITS */

.hero-benefits {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 32px;
}


.hero-benefits div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #829caf;

    font-size: 11px;
}


.hero-benefits span {
    color: #52d3ff;

    font-weight: 900;
}



/* =========================
   HERO CARD
========================= */

.hero-card {
    position: relative;

    padding: 38px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 15px;

    background:
        rgba(8,31,49,.72);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.3);
}


.hero-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;

    width: 70px;
    height: 2px;

    background: #52d3ff;
}


.hero-card-icon {
    width: 55px;
    height: 55px;

    display: flex;

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

    margin-bottom: 28px;

    border-radius: 10px;

    background:
        rgba(82,211,255,.1);

    border:
        1px solid rgba(82,211,255,.25);

    color: #52d3ff;

    font-size: 24px;
}


.hero-card-tag {
    color: #52d3ff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.hero-card h2 {
    margin-top: 12px;

    font-size: 27px;

    line-height: 1.2;
}


.hero-card p {
    margin-top: 15px;

    color: #8fa8b9;

    font-size: 13px;

    line-height: 1.7;
}


.hero-whatsapp {
    width: 100%;

    min-height: 48px;

    display: flex;

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

    margin-top: 25px;

    padding: 0 18px;

    border-radius: 5px;

    background: #52d3ff;

    color: #071827;

    text-decoration: none;

    font-size: 12px;

    font-weight: 900;
}



/* =========================
   HERO BOTTOM
========================= */

.hero-bottom {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    z-index: 3;

    border-top:
        1px solid rgba(255,255,255,.09);

    background:
        rgba(4,18,30,.65);

    backdrop-filter:
        blur(8px);
}


.hero-bottom .container {
    display: grid;

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


.hero-bottom .container > div {
    padding: 22px 30px;

    border-right:
        1px solid rgba(255,255,255,.08);
}


.hero-bottom strong {
    display: block;

    color: #fff;

    font-size: 12px;
}


.hero-bottom span {
    display: block;

    margin-top: 5px;

    color: #657e91;

    font-size: 10px;
}



/* =========================
   SERVIÇOS
========================= */

.servicos {
    padding: 120px 0;

    background: #f7fafc;
}



.section-top {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 60px;
}



.section-header {
    max-width: 680px;
}


.section-tag {
    color: #139bc9;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2.5px;
}


.section-header h2 {
    margin-top: 15px;

    color: #102235;

    font-size:
        clamp(38px, 5vw, 56px);

    line-height: 1.07;

    letter-spacing: -2px;
}


.section-header h2 strong {
    display: block;

    color: #139bc9;
}


.section-description {
    max-width: 430px;

    color: #718494;

    font-size: 14px;

    line-height: 1.8;
}



/* SERVICE GRID */

.servicos-grid {
    display: grid;

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

    gap: 18px;
}



.servico-card {
    position: relative;

    min-height: 360px;

    display: flex;

    flex-direction: column;

    padding: 30px;

    border:
        1px solid #dde6ec;

    border-radius: 10px;

    background: #fff;

    transition:
        .3s ease;
}


.servico-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(19,155,201,.45);

    box-shadow:
        0 20px 50px
        rgba(20,60,90,.08);
}



.servico-card.destaque {
    border-color:
        rgba(19,155,201,.4);

    background:
        linear-gradient(
            145deg,
            #effaff,
            #fff
        );
}



.servico-badge {
    position: absolute;

    top: -11px;
    left: 25px;

    padding: 6px 10px;

    border-radius: 3px;

    background: #139bc9;

    color: #fff;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}



.servico-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #cdd8df;

    font-size: 11px;

    font-weight: 800;
}



.servico-icon {
    width: 55px;
    height: 55px;

    display: flex;

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

    margin-bottom: 35px;

    border-radius: 9px;

    background: #edf8fc;

    color: #139bc9;

    font-size: 21px;
}



.servico-card h3 {
    margin-bottom: 15px;

    color: #102235;

    font-size: 19px;
}



.servico-card p {
    color: #778b9a;

    font-size: 13px;

    line-height: 1.75;
}



.servico-card a {
    margin-top: auto;

    padding-top: 25px;

    color: #139bc9;

    text-decoration: none;

    font-size: 11px;

    font-weight: 900;
}



/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .nav {
        display: none;
    }


    .btn-header {
        display: none;
    }


    .menu-toggle {
        display: flex;
    }


    .hero-content {
        grid-template-columns: 1fr;

        gap: 50px;

        padding:
            140px 0 170px;
    }


    .hero-card {
        max-width: 600px;
    }


    .servicos-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}



/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .container {
        width: 91%;
    }


    /* MENU MOBILE */

    .nav {
        position: fixed;

        top: 0;
        right: -100%;

        width: min(330px, 88%);
        height: 100vh;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding:
            105px 30px 40px;

        background: #071827;

        border-left:
            1px solid rgba(255,255,255,.1);

        transition:
            right .35s ease;

        z-index: 1001;
    }


    .nav.ativo {
        right: 0;
    }


    .nav a {
        width: 100%;

        padding: 17px 0;

        border-bottom:
            1px solid rgba(255,255,255,.08);

        font-size: 14px;
    }


    .nav-mobile-cta {
        display: flex;

        justify-content: center;

        margin-top: 25px;

        padding: 15px !important;

        border: none !important;

        border-radius: 6px;

        background: #52d3ff;

        color: #071827 !important;

        font-weight: 900;
    }


    .menu-toggle {
        position: relative;

        z-index: 1002;
    }


    .menu-toggle.ativo span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }


    .menu-toggle.ativo span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle.ativo span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }



    /* HERO */

    .hero {
        min-height: auto;

        background-position:
            65% center;
    }


    .hero-content {
        display: block;

        padding:
            130px 0 125px;
    }


    .hero h1 {
        margin-top: 18px;

        font-size:
            clamp(40px, 12vw, 56px);

        letter-spacing: -2px;
    }


    .hero-text > p {
        font-size: 15px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .btn-primary,
    .btn-secondary {
        width: 100%;
    }


    .hero-benefits {
        flex-direction: column;

        gap: 11px;
    }


    .hero-card {
        margin-top: 45px;

        padding: 28px 23px;
    }


    .hero-bottom {
        position: relative;
    }


    .hero-bottom .container {
        width: 100%;

        grid-template-columns:
            repeat(2, 1fr);
    }


    .hero-bottom .container > div {
        padding: 18px;

        border-bottom:
            1px solid rgba(255,255,255,.08);
    }



    /* SERVIÇOS */

    .servicos {
        padding: 80px 0;
    }


    .section-top {
        flex-direction: column;

        align-items: flex-start;

        gap: 22px;

        margin-bottom: 40px;
    }


    .section-header h2 {
        font-size: 37px;

        letter-spacing: -1px;
    }


    .servicos-grid {
        grid-template-columns: 1fr;
    }


    .servico-card {
        min-height: 300px;

        padding: 27px 23px;
    }

}



/* =========================
   MOBILE PEQUENO
========================= */

@media (max-width: 430px) {

    .logo {
        font-size: 17px;
    }


    .logo-icon {
        width: 36px;
        height: 36px;
    }


    .hero h1 {
        font-size: 39px;
    }


    .hero-card h2 {
        font-size: 23px;
    }


    .hero-bottom .container {
        grid-template-columns: 1fr;
    }

}
/* =========================
   VANTAGENS
========================= */

.vantagens {
    padding: 120px 0;

    background: #ffffff;
}


.vantagens-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}



/* IMAGEM */

.vantagens-imagem-box {
    position: relative;

    min-height: 600px;

    overflow: hidden;

    border-radius: 14px;

    background: #eaf3f7;

    box-shadow:
        0 30px 70px
        rgba(15,50,70,.12);
}


.vantagens-imagem-box img {
    width: 100%;
    height: 600px;

    display: block;

    object-fit: cover;

    object-position: center;
}



/* BOX EXPERIÊNCIA */

.experiencia-box {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 180px;

    padding: 22px;

    border-radius: 10px;

    background:
        rgba(7,24,39,.94);

    color: #fff;

    backdrop-filter:
        blur(10px);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.2);
}


.experiencia-box strong {
    display: block;

    color: #52d3ff;

    font-size: 36px;
}


.experiencia-box span {
    display: block;

    margin-top: 5px;

    color: #b4c8d5;

    font-size: 11px;

    line-height: 1.5;
}



/* CONTEÚDO */

.vantagens-conteudo h2 {
    max-width: 600px;

    margin-top: 15px;

    color: #102235;

    font-size:
        clamp(40px, 5vw, 56px);

    line-height: 1.08;

    letter-spacing: -2px;
}


.vantagens-conteudo h2 strong {
    display: block;

    color: #139bc9;
}


.vantagens-descricao {
    max-width: 580px;

    margin-top: 22px;

    color: #718494;

    font-size: 15px;

    line-height: 1.8;
}



/* LISTA */

.vantagens-lista {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;

    margin-top: 38px;
}


.vantagem-item {
    display: flex;

    gap: 14px;
}


.vantagem-icon {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 50%;

    background: #e8f8fd;

    color: #139bc9;

    font-size: 13px;

    font-weight: 900;
}


.vantagem-item h3 {
    color: #102235;

    font-size: 14px;
}


.vantagem-item p {
    margin-top: 7px;

    color: #7c8e9a;

    font-size: 12px;

    line-height: 1.65;
}



/* CTA */

.btn-vantagens {
    display: inline-flex;

    align-items: center;

    gap: 16px;

    margin-top: 40px;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 6px;

    background: #139bc9;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 900;
}


.btn-vantagens:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(19,155,201,.18);
}



/* =========================
   NÚMEROS
========================= */

.numeros {
    background: #071827;

    border-top:
        1px solid rgba(255,255,255,.06);

    border-bottom:
        1px solid rgba(255,255,255,.06);
}


.numeros-grid {
    display: grid;

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


.numero-item {
    position: relative;

    padding: 45px 30px;

    text-align: center;

    border-right:
        1px solid rgba(255,255,255,.08);
}


.numero-item:last-child {
    border-right: none;
}


.numero-item strong {
    display: block;

    color: #52d3ff;

    font-size: 34px;

    font-weight: 900;
}


.numero-item span {
    display: block;

    margin-top: 8px;

    color: #849cac;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}



/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .vantagens {
        padding: 90px 0;
    }


    .vantagens-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .vantagens-imagem-box {
        min-height: 500px;
    }


    .vantagens-imagem-box img {
        height: 500px;
    }


    .numeros-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .numero-item:nth-child(2) {
        border-right: none;
    }


    .numero-item:nth-child(-n+2) {
        border-bottom:
            1px solid rgba(255,255,255,.08);
    }

}



/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .vantagens {
        padding: 75px 0;
    }


    .vantagens-grid {
        gap: 40px;
    }


    .vantagens-imagem-box {
        min-height: auto;

        border-radius: 10px;
    }


    .vantagens-imagem-box img {
        height: 420px;
    }


    .experiencia-box {
        right: 15px;
        bottom: 15px;

        width: 155px;

        padding: 18px;
    }


    .experiencia-box strong {
        font-size: 30px;
    }


    .vantagens-conteudo h2 {
        font-size: 37px;

        letter-spacing: -1px;
    }


    .vantagens-lista {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .btn-vantagens {
        width: 100%;

        justify-content: center;
    }


    .numeros-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .numero-item {
        padding: 32px 15px;
    }


    .numero-item strong {
        font-size: 27px;
    }

}



/* CELULAR PEQUENO */

@media (max-width: 400px) {

    .vantagens-imagem-box img {
        height: 350px;
    }


    .numero-item strong {
        font-size: 24px;
    }


    .numero-item span {
        font-size: 9px;
    }

}


/* =========================
   COMO FUNCIONA
========================= */

.processo {
    padding: 120px 0;
    background: #f4f8fa;
}

.processo-topo {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 70px;
}

.processo-topo p {
    max-width: 380px;
    color: #718494;
    font-size: 14px;
    line-height: 1.8;
}

.processo-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* linha que conecta os passos */

.processo-grid::before {
    content: "";
    position: absolute;
    top: 57px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: #cddde5;
}

.processo-card {
    position: relative;
    z-index: 2;
}

.processo-numero {
    display: block;
    margin-bottom: 15px;

    color: #9bafba;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.processo-icon {
    width: 58px;
    height: 58px;

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

    margin-bottom: 27px;

    border: 1px solid #cce8f2;
    border-radius: 50%;

    background: #fff;

    color: #139bc9;

    font-size: 20px;

    box-shadow:
        0 0 0 10px #f4f8fa;
}

.processo-card h3 {
    color: #102235;
    font-size: 17px;
}

.processo-card p {
    max-width: 240px;

    margin-top: 12px;

    color: #7a8e9b;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================
   SEGMENTOS
========================= */

.segmentos {
    padding: 120px 0;
    background: #fff;
}

.segmentos-topo {
    max-width: 720px;
    margin-bottom: 55px;
}

.segmentos-topo h2 {
    margin-top: 15px;

    color: #102235;

    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.07;

    letter-spacing: -2px;
}

.segmentos-topo h2 strong {
    display: block;
    color: #139bc9;
}

.segmentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.segmento-card {
    position: relative;

    min-height: 540px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    border-radius: 14px;

    background-size: cover;
    background-position: center;

    transition: transform .35s ease;
}

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

/* IMAGENS */

.segmento-card.residencial {
    background-image:
        url("img/residencial.webp");
}

.segmento-card.comercial {
    background-image:
        url("img/comercial.webp");
}

.segmento-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7,24,39,.05) 10%,
            rgba(7,24,39,.50) 50%,
            rgba(7,24,39,.98) 100%
        );
}

.segmento-conteudo {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 45px;
}

.segmento-tag {
    color: #52d3ff;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.5px;
}

.segmento-conteudo h3 {
    max-width: 400px;

    margin-top: 12px;

    color: #fff;

    font-size: 32px;
    line-height: 1.15;
}

.segmento-conteudo p {
    max-width: 450px;

    margin-top: 15px;

    color: #b4c4ce;

    font-size: 13px;
    line-height: 1.7;
}

.segmento-conteudo ul {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px 20px;

    margin-top: 25px;

    list-style: none;
}

.segmento-conteudo li {
    color: #dce7ed;
    font-size: 12px;
}

.segmento-conteudo li::first-letter {
    color: #52d3ff;
}

.segmento-conteudo a {
    display: inline-flex;

    margin-top: 30px;

    color: #52d3ff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 900;
}

.segmento-conteudo a:hover {
    transform: translateX(5px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .processo,
    .segmentos {
        padding: 90px 0;
    }

    .processo-topo {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;

        margin-bottom: 50px;
    }

    .processo-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 50px 30px;
    }

    .processo-grid::before {
        display: none;
    }

    .processo-card p {
        max-width: 330px;
    }

    .segmento-card {
        min-height: 500px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .processo,
    .segmentos {
        padding: 75px 0;
    }

    /* PROCESSO */

    .processo-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .processo-card {
        position: relative;

        padding:
            0 0 45px 80px;
    }

    .processo-card:not(:last-child)::after {
        content: "";

        position: absolute;

        top: 60px;
        left: 28px;

        width: 1px;

        height:
            calc(100% - 52px);

        background: #cddde5;
    }

    .processo-icon {
        position: absolute;

        top: 20px;
        left: 0;

        width: 56px;
        height: 56px;

        margin: 0;

        box-shadow:
            0 0 0 7px #f4f8fa;
    }

    .processo-numero {
        margin-bottom: 8px;
    }

    .processo-card p {
        max-width: 100%;
    }


    /* SEGMENTOS */

    .segmentos-topo {
        margin-bottom: 40px;
    }

    .segmentos-topo h2 {
        font-size: 37px;
        letter-spacing: -1px;
    }

    .segmentos-grid {
        grid-template-columns: 1fr;
    }

    .segmento-card {
        min-height: 500px;
    }

    .segmento-conteudo {
        padding: 30px 24px;
    }

    .segmento-conteudo h3 {
        font-size: 27px;
    }

    .segmento-conteudo ul {
        grid-template-columns: 1fr;
    }

}


/* CELULARES MENORES */

@media (max-width: 400px) {

    .segmento-card {
        min-height: 460px;
    }

    .segmento-conteudo {
        padding: 26px 20px;
    }

}

/* =========================
   DEPOIMENTOS
========================= */

.depoimentos {
    padding: 120px 0;
    background: #f4f8fa;
}

.depoimentos-topo {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}

.avaliacao-resumo {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px 22px;

    border: 1px solid #dce6eb;
    border-radius: 9px;

    background: #fff;
}

.avaliacao-resumo > strong {
    color: #102235;
    font-size: 38px;
}

.avaliacao-resumo div {
    display: flex;
    flex-direction: column;
}

.estrelas {
    color: #139bc9;
    letter-spacing: 2px;
}

.avaliacao-resumo small {
    margin-top: 4px;
    color: #8094a2;
    font-size: 10px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.depoimento-card {
    padding: 30px;

    border: 1px solid #dde6eb;
    border-radius: 10px;

    background: #fff;

    transition: .3s ease;
}

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

    box-shadow:
        0 18px 45px
        rgba(30,70,95,.08);
}

.depoimento-card p {
    min-height: 125px;

    margin-top: 20px;

    color: #6f8492;

    font-size: 14px;
    line-height: 1.8;
}

.cliente {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 22px;
}

.cliente-avatar {
    width: 42px;
    height: 42px;

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

    flex-shrink: 0;

    border-radius: 50%;

    background: #e8f8fd;

    color: #139bc9;

    font-size: 11px;
    font-weight: 900;
}

.cliente strong {
    display: block;

    color: #102235;

    font-size: 13px;
}

.cliente span {
    display: block;

    margin-top: 3px;

    color: #8a9ca7;

    font-size: 10px;
}


/* =========================
   CONTATO
========================= */

.contato {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #061827,
            #0a2b42
        );

    color: #fff;
}

.contato-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 75px;

    align-items: center;
}

.contato-conteudo h2 {
    margin-top: 15px;

    font-size:
        clamp(42px, 5vw, 60px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.contato-conteudo h2 strong {
    display: block;

    color: #52d3ff;
}

.contato-conteudo > p {
    max-width: 540px;

    margin-top: 22px;

    color: #a5bac8;

    font-size: 15px;

    line-height: 1.8;
}

.contato-vantagens {
    display: flex;
    flex-direction: column;

    gap: 12px;

    margin-top: 30px;
}

.contato-vantagens div {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #d0dde5;

    font-size: 13px;
}

.contato-vantagens span {
    color: #52d3ff;
}

.contato-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    margin-top: 35px;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 6px;

    background: #52d3ff;

    color: #071827;

    text-decoration: none;

    font-size: 12px;

    font-weight: 900;
}

.contato-whatsapp:hover {
    transform: translateY(-3px);
}


/* FORM */

.formulario-box {
    padding: 38px;

    border: 1px solid rgba(255,255,255,.11);

    border-radius: 14px;

    background:
        rgba(255,255,255,.06);

    backdrop-filter:
        blur(10px);

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

.formulario-topo span {
    color: #52d3ff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.formulario-topo h3 {
    margin-top: 8px;

    color: #fff;

    font-size: 25px;
}

.formulario-topo p {
    margin-top: 7px;

    color: #859dab;

    font-size: 12px;
}

.formulario-box form {
    margin-top: 28px;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #c8d6df;

    font-size: 10px;

    font-weight: 800;
}

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

    padding: 14px 15px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 6px;

    outline: none;

    background:
        rgba(5,20,34,.72);

    color: #fff;

    font-family: inherit;

    font-size: 13px;

    transition: .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #52d3ff;

    box-shadow:
        0 0 0 3px
        rgba(82,211,255,.07);
}

.form-group textarea {
    resize: vertical;
}

.btn-form {
    width: 100%;

    min-height: 52px;

    display: flex;

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

    gap: 15px;

    border: none;

    border-radius: 6px;

    background: #52d3ff;

    color: #071827;

    cursor: pointer;

    font-size: 12px;

    font-weight: 900;

    transition: .25s;
}

.btn-form:hover {
    transform: translateY(-2px);
}

.form-info {
    display: block;

    margin-top: 12px;

    color: #7892a3;

    text-align: center;

    font-size: 9px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .depoimentos,
    .contato {
        padding: 90px 0;
    }

    .depoimentos-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .depoimento-card:last-child {
        grid-column:
            1 / -1;
    }

    .contato-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .depoimentos,
    .contato {
        padding: 75px 0;
    }

    .depoimentos-topo {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        margin-bottom: 40px;
    }

    .avaliacao-resumo {
        width: 100%;
        justify-content: center;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .depoimento-card:last-child {
        grid-column: auto;
    }

    .depoimento-card p {
        min-height: auto;
    }

    .contato-conteudo h2 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .contato-whatsapp {
        width: 100%;

        justify-content: center;
    }

    .formulario-box {
        padding: 26px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

}

/* =========================
   FAQ
========================= */

.faq {
    padding: 120px 0;
    background: #ffffff;
}

.faq .section-header {
    max-width: 760px;
    margin-bottom: 55px;
}

.faq-list {
    max-width: 900px;
}

.faq-item {
    border-bottom: 1px solid #dce6eb;
}

.faq-pergunta {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 24px 0;

    border: none;

    background: transparent;

    color: #102235;

    cursor: pointer;

    text-align: left;

    font-family: inherit;

    font-size: 16px;
    font-weight: 800;
}

.faq-pergunta span {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

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

    border: 1px solid #cde5ed;

    border-radius: 50%;

    color: #139bc9;

    transition: .3s;
}

.faq-resposta {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height .35s ease;
}

.faq-resposta p {
    max-width: 760px;

    padding:
        0 55px 24px 0;

    color: #758996;

    font-size: 13px;

    line-height: 1.8;
}

.faq-item.ativo .faq-resposta {
    max-height: 250px;
}

.faq-item.ativo .faq-pergunta span {
    transform: rotate(45deg);

    background: #eaf8fc;
}

.faq-pergunta:hover {
    color: #139bc9;
}


/* =========================
   LOCALIZAÇÃO
========================= */

.localizacao {
    padding: 120px 0;

    background: #f4f8fa;
}

.localizacao-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.localizacao-conteudo h2 {
    margin-top: 15px;

    color: #102235;

    font-size:
        clamp(40px, 5vw, 56px);

    line-height: 1.07;

    letter-spacing: -2px;
}

.localizacao-conteudo h2 strong {
    display: block;

    color: #139bc9;
}

.localizacao-conteudo > p {
    max-width: 530px;

    margin-top: 22px;

    color: #748793;

    font-size: 14px;

    line-height: 1.8;
}

.localizacao-lista {
    display: flex;
    flex-direction: column;

    gap: 18px;

    margin-top: 32px;
}

.localizacao-lista > div {
    display: flex;

    align-items: center;

    gap: 14px;
}

.localizacao-lista > div > span {
    width: 43px;
    height: 43px;

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

    flex-shrink: 0;

    border-radius: 50%;

    background: #e7f7fc;

    color: #139bc9;
}

.localizacao-lista strong {
    display: block;

    color: #102235;

    font-size: 12px;
}

.localizacao-lista small {
    display: block;

    margin-top: 3px;

    color: #81929d;

    font-size: 10px;
}

.btn-localizacao {
    display: inline-flex;

    align-items: center;

    gap: 16px;

    margin-top: 35px;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 6px;

    background: #139bc9;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 900;
}

.mapa-box {
    height: 480px;

    overflow: hidden;

    border-radius: 14px;

    border:
        1px solid #d9e5eb;

    background: #fff;

    box-shadow:
        0 25px 60px
        rgba(25,65,90,.08);
}

.mapa-box iframe {
    width: 100%;
    height: 100%;

    border: 0;

    filter:
        grayscale(.7)
        contrast(.95);
}


/* =========================
   FOOTER
========================= */

.footer {
    padding:
        70px 0 28px;

    background: #051521;

    color: #fff;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 50px;
}

.footer-brand p {
    max-width: 320px;

    margin-top: 20px;

    color: #6e8797;

    font-size: 12px;

    line-height: 1.8;
}

.footer-col {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-col h4 {
    margin-bottom: 8px;

    color: #fff;

    font-size: 12px;
}

.footer-col a {
    color: #708898;

    text-decoration: none;

    font-size: 11px;
}

.footer-col a:hover {
    color: #52d3ff;
}

.footer-bottom {
    display: flex;

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

    gap: 20px;

    margin-top: 55px;

    padding-top: 24px;

    border-top:
        1px solid rgba(255,255,255,.07);
}

.footer-bottom p {
    color: #4f6878;

    font-size: 10px;
}


/* =========================
   WHATSAPP FLUTUANTE
========================= */

.whatsapp-float {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 999;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        10px 15px 10px 10px;

    border-radius: 50px;

    background: #52d3ff;

    color: #071827;

    text-decoration: none;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.25);

    transition: .25s;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
}

.whatsapp-float > span {
    width: 37px;
    height: 37px;

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

    border-radius: 50%;

    background: #071827;

    color: #52d3ff;
}

.whatsapp-float > div {
    display: flex;

    flex-direction: column;
}

.whatsapp-float strong {
    font-size: 11px;
}

.whatsapp-float small {
    margin-top: 2px;

    font-size: 8px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .faq,
    .localizacao {
        padding: 90px 0;
    }

    .localizacao-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .mapa-box {
        height: 420px;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .faq,
    .localizacao {
        padding: 75px 0;
    }

    .faq .section-header {
        margin-bottom: 35px;
    }

    .faq-pergunta {
        font-size: 14px;

        line-height: 1.45;
    }

    .faq-resposta p {
        padding:
            0 10px 22px 0;
    }

    .localizacao-conteudo h2 {
        font-size: 37px;

        letter-spacing: -1px;
    }

    .btn-localizacao {
        width: 100%;

        justify-content: center;
    }

    .mapa-box {
        height: 340px;

        border-radius: 9px;
    }

    .footer {
        padding:
            60px 0 90px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 40px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;

        width: 56px;
        height: 56px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }

    .whatsapp-float > span {
        width: auto;
        height: auto;

        background: transparent;

        color: #071827;

        font-size: 22px;
    }

    .whatsapp-float > div {
        display: none;
    }

}

/* =========================
   ACABAMENTO PREMIUM
========================= */


/* HEADER FIXO */

.header {
    position: fixed;

    transition:
        background .3s ease,
        padding .3s ease,
        box-shadow .3s ease,
        backdrop-filter .3s ease;
}


.header.scrolled {
    padding: 14px 0;

    background:
        rgba(5,21,33,.94);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 8px 35px
        rgba(0,0,0,.18);

    border-bottom:
        1px solid
        rgba(255,255,255,.07);
}


/* LINKS */

.nav a {
    position: relative;
}


.nav a:not(.nav-mobile-cta)::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #52d3ff;

    transition:
        width .25s ease;
}


.nav a:hover::after {
    width: 100%;
}


/* BOTÕES */

.btn-primary,
.btn-secondary,
.btn-header,
.hero-whatsapp,
.btn-vantagens,
.contato-whatsapp,
.btn-form,
.btn-localizacao {

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        color .25s ease;
}


.btn-primary:hover,
.hero-whatsapp:hover,
.btn-vantagens:hover,
.contato-whatsapp:hover,
.btn-form:hover,
.btn-localizacao:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(19,155,201,.20);
}


/* =========================
   ANIMAÇÕES
========================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* ATRASOS */

.reveal-delay-1 {
    transition-delay: .08s;
}

.reveal-delay-2 {
    transition-delay: .16s;
}

.reveal-delay-3 {
    transition-delay: .24s;
}



/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar {
    width: 9px;
}


::-webkit-scrollbar-track {
    background: #071827;
}


::-webkit-scrollbar-thumb {

    background: #139bc9;

    border-radius: 20px;
}


/* =========================
   SELEÇÃO
========================= */

::selection {

    background: #52d3ff;

    color: #071827;
}


/* =========================
   IMAGENS
========================= */

img {
    max-width: 100%;
}


/* =========================
   ACESSIBILIDADE
========================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {

    outline:
        2px solid #52d3ff;

    outline-offset: 4px;
}


/* =========================
   PREVENIR OVERFLOW
========================= */

html,
body {

    width: 100%;

    max-width: 100%;

    overflow-x: hidden;
}


/* =========================
   MOBILE FINAL
========================= */

@media (max-width: 768px) {

    .header.scrolled {
        padding: 11px 0;
    }


    section {
        scroll-margin-top: 80px;
    }


    .hero {
        min-height: auto;
    }


    .hero-content {
        padding-top: 125px;
    }


    .hero h1 {
        word-break: normal;
    }


    .hero-card {
        width: 100%;
    }


    .segmento-card {
        background-position: center;
    }


    .formulario-box {
        width: 100%;
    }


    input,
    select,
    textarea {

        max-width: 100%;
    }


    .whatsapp-float {

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

}


/* =========================
   CELULARES PEQUENOS
========================= */

@media (max-width: 390px) {

    .container {
        width: 92%;
    }


    .hero h1 {
        font-size: 36px;
    }


    .section-header h2,
    .segmentos-topo h2,
    .vantagens-conteudo h2,
    .localizacao-conteudo h2 {

        font-size: 34px;
    }


    .contato-conteudo h2 {

        font-size: 35px;
    }


    .hero-card {

        padding:
            25px 19px;
    }


    .segmento-conteudo {

        padding:
            25px 19px;
    }

}


/* =========================
   REDUZIR ANIMAÇÃO
========================= */

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

    * {

        scroll-behavior: auto !important;

        animation-duration:
            .01ms !important;

        transition-duration:
            .01ms !important;
    }

}

/* ===== REVISÃO FINAL ===== */
section { scroll-margin-top: 82px; }
img { max-width: 100%; height: auto; }
.header { position: fixed; }
.header.scrolled { padding: 14px 0; background: rgba(5,21,33,.94); backdrop-filter: blur(14px); box-shadow: 0 8px 35px rgba(0,0,0,.18); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
::selection { background:#52d3ff; color:#071827; }
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible { outline:2px solid #52d3ff; outline-offset:3px; }
@media (max-width:768px){ .header.scrolled{padding:11px 0}.hero{min-height:auto}.hero-content{padding-top:125px}.whatsapp-float{z-index:1200} }
@media (prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;transition-duration:.01ms!important}}

/* ===== DF CLIMATIZAÇÃO & ELÉTRICA ===== */
.df-faixa{padding:34px 0;background:#0d2438;color:#fff}.df-faixa-grid{display:flex;align-items:center;justify-content:space-between;gap:30px}.df-faixa-grid div{display:flex;flex-direction:column;gap:5px}.df-faixa-grid strong{font-size:20px}.df-faixa-grid span{color:#9fb0bd;font-size:12px}.eletrica{padding:120px 0;background:#f4f7f9}.df-services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:55px}.df-service{background:#fff;border:1px solid #dce5ea;border-radius:8px;padding:30px;min-height:210px;transition:.25s}.df-service:hover{transform:translateY(-5px);box-shadow:0 18px 40px rgba(5,30,50,.08)}.df-service>span{font-size:9px;letter-spacing:2px;color:#4b89b4;font-weight:900}.df-service h3{margin-top:38px;font-size:19px;color:#10283b}.df-service p{margin-top:12px;color:#6f7e88;font-size:12px;line-height:1.75}.trabalhos{padding:120px 0;background:#fff}.df-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:45px}.df-gallery figure{height:330px;overflow:hidden;border-radius:8px;background:#e8eef2}.df-gallery img{width:100%;height:100%;object-fit:cover;transition:transform .4s}.df-gallery figure:hover img{transform:scale(1.035)}.df-confianca{padding:100px 0;background:#eef4f7}.df-trust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:45px}.df-trust-grid>div{padding:28px;background:#fff;border-radius:7px;border:1px solid #dce5ea}.df-trust-grid strong,.df-trust-grid span{display:block}.df-trust-grid strong{color:#10283b;font-size:15px}.df-trust-grid span{margin-top:8px;color:#74838d;font-size:11px;line-height:1.6}@media(max-width:900px){.df-services-grid,.df-gallery{grid-template-columns:repeat(2,1fr)}.df-trust-grid{grid-template-columns:1fr}.eletrica,.trabalhos{padding:90px 0}}@media(max-width:600px){.df-faixa-grid{align-items:flex-start;flex-direction:column}.df-services-grid,.df-gallery{grid-template-columns:1fr}.df-gallery figure{height:390px}.eletrica,.trabalhos{padding:75px 0}}

/* =========================
   HERO DF - AJUSTE FINAL
========================= */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(90deg,
            rgba(4,18,32,.96) 0%,
            rgba(4,18,32,.88) 35%,
            rgba(4,18,32,.40) 65%,
            rgba(4,18,32,.15) 100%),
        url("img/hero-df.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        background-position: 68% center;
    }
}

@media (max-width: 430px) {
    .hero {
        background-position: 72% center;
    }
}

/* =========================================================
   DF — REFINO MOBILE 2026
   Hero dedicado para celular + header compacto
========================================================= */
@media (max-width: 768px) {
    .header {
        padding: 12px 0;
        background: linear-gradient(180deg, rgba(4,18,32,.82), rgba(4,18,32,.30));
        border-bottom-color: rgba(255,255,255,.08);
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
    }

    .header-container {
        gap: 12px;
    }

    .logo {
        gap: 8px;
        font-size: 15px;
        line-height: 1.05;
        letter-spacing: .2px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 17px;
        flex: 0 0 36px;
    }

    .logo small {
        margin-top: 3px;
        font-size: 6.5px;
        letter-spacing: 2px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        background: rgba(7,24,39,.72);
    }

    .nav {
        width: min(340px, 90%);
        padding: 88px 24px 32px;
        background: rgba(5,21,33,.985);
        box-shadow: -18px 0 50px rgba(0,0,0,.35);
    }

    .nav a {
        padding: 15px 0;
        font-size: 13px;
    }

    /* Hero usa um recorte vertical próprio no celular. */
    .hero {
        min-height: auto;
        display: block;
        background:
            linear-gradient(
                180deg,
                rgba(4,18,32,.12) 0%,
                rgba(4,18,32,.20) 28%,
                rgba(4,18,32,.62) 52%,
                rgba(4,18,32,.94) 73%,
                rgba(4,18,32,1) 100%
            ),
            url("img/hero-df-mobile.webp");
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .hero::before {
        display: none;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3,15,27,.28) 0%,
                transparent 52%,
                rgba(3,15,27,.06) 100%
            );
    }

    .hero-content {
        min-height: 100svh;
        display: flex;
        align-items: flex-end;
        padding: 112px 0 42px;
    }

    .hero-text {
        width: 100%;
        max-width: 560px;
    }

    .hero-tag {
        gap: 8px;
        font-size: 9px;
        letter-spacing: 1.8px;
        text-shadow: 0 1px 10px rgba(0,0,0,.35);
    }

    .hero-tag span {
        width: 18px;
    }

    .hero h1 {
        max-width: 520px;
        margin-top: 14px;
        font-size: clamp(37px, 10.8vw, 49px);
        line-height: 1.02;
        letter-spacing: -1.8px;
        text-wrap: balance;
        text-shadow: 0 2px 22px rgba(0,0,0,.36);
    }

    .hero h1 strong {
        margin-top: 3px;
    }

    .hero-text > p {
        max-width: 500px;
        margin-top: 17px;
        color: #d2dee6;
        font-size: 14px;
        line-height: 1.62;
        text-shadow: 0 1px 12px rgba(0,0,0,.3);
    }

    .hero-buttons {
        margin-top: 23px;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        border-radius: 7px;
        font-size: 12px;
    }

    .hero-benefits {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
        margin-top: 20px;
    }

    .hero-benefits div {
        gap: 6px;
        color: #b9cad5;
        font-size: 10px;
        line-height: 1.35;
    }

    .hero-benefits div:last-child {
        grid-column: 1 / -1;
    }

    /* O card lateral duplicava o CTA e deixava o início enorme no mobile. */
    .hero-card {
        display: none;
    }

    .hero-bottom {
        position: relative;
        background: #061827;
        border-top: 1px solid rgba(255,255,255,.08);
        backdrop-filter: none;
    }

    .hero-bottom .container {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-bottom .container > div {
        min-height: 78px;
        padding: 15px 16px;
        border-right: 1px solid rgba(255,255,255,.07);
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .hero-bottom strong {
        font-size: 11px;
    }

    .hero-bottom span {
        margin-top: 4px;
        font-size: 9px;
        line-height: 1.35;
    }
}

@media (max-width: 430px) {
    .container {
        width: 90%;
    }

    .hero {
        background-position: center top;
    }

    .hero-content {
        min-height: 100svh;
        padding-top: 102px;
        padding-bottom: 34px;
    }

    .hero h1 {
        font-size: clamp(35px, 10.6vw, 43px);
        letter-spacing: -1.5px;
    }

    .hero-text > p {
        font-size: 13.5px;
    }

    .hero-buttons {
        gap: 9px;
    }

    .hero-benefits {
        margin-top: 17px;
    }

    .hero-bottom .container > div {
        min-height: 74px;
        padding: 14px;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 13.5px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .hero h1 {
        font-size: 33px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-benefits div:last-child {
        grid-column: auto;
    }
}

/* Logo oficial DF */
.logo-img {
    display: block;
    width: 210px;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
    border-radius: 8px;
}
.footer .logo-img { width: 190px; }
@media (max-width: 768px) {
    .logo-img { width: 155px; max-height: 58px; }
    .footer .logo-img { width: 175px; }
}
