/* =========================================================
   RADAR AMBIENTAL - STYLE.CSS ÚNICO E CORRIGIDO
   Páginas: index, servicos, sobre, contato, poco,
   piscina, comercio e documentacao.
========================================================= */

/* =========================================================
   VARIÁVEIS / BASE
========================================================= */

:root{
    --bg:#356791;
    --bg-dark:#183047;
    --panel:rgba(255,255,255,.06);
    --panel-strong:rgba(255,255,255,.10);
    --border:rgba(255,255,255,.10);
    --text:#eaf2ff;
    --muted:rgba(234,242,255,.74);
    --blue:#3d81c5;
    --blue2:#1f5fa5;
    --green:#25d366;
    --green2:#169b4e;
    --cyan:#7dd3fc;
    --shadow:0 16px 45px rgba(0,0,0,.34);
    --radius:20px;
    --max:1160px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    min-height:100vh;
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color:var(--text);
    background:
        radial-gradient(900px 600px at 12% 0%, rgba(61,129,197,.26), transparent 62%),
        radial-gradient(800px 500px at 90% 12%, rgba(37,211,102,.12), transparent 58%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-dark) 100%);
}

body.no-scroll{
    overflow:hidden;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

button,
input,
textarea{
    font:inherit;
}

.wrap{
    width:min(100%, var(--max));
    margin:0 auto;
    padding:0 18px;
}

.glass{
    background:var(--panel);
    border:1px solid var(--border);
    border-radius:var(--radius);
    backdrop-filter:blur(14px);
    box-shadow:var(--shadow);
}

section{
    padding:24px 0;
}

h1,
h2,
h3,
p{
    margin-top:0;
}

h1{
    margin:0;
    font-size:clamp(34px, 4.2vw, 54px);
    line-height:1.04;
    letter-spacing:-1.4px;
}

h2{
    margin:0;
    font-size:clamp(28px, 3.4vw, 42px);
    line-height:1.12;
    letter-spacing:-.8px;
}

h3{
    margin:0;
}

p{
    color:var(--muted);
}

.muted,
.subhead{
    color:var(--muted);
    line-height:1.7;
}

.subhead{
    max-width:78ch;
}

.grid{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:18px;
}

.card{
    padding:22px;
}

.span-4{grid-column:span 4}
.span-5{grid-column:span 5}
.span-6{grid-column:span 6}
.span-7{grid-column:span 7}
.span-8{grid-column:span 8}
.span-12{grid-column:span 12}

.section-mini{
    margin-bottom:14px;
    color:var(--cyan);
    font-size:13px;
    font-weight:900;
    letter-spacing:2px;
    text-transform:uppercase;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 12px;
    border-radius:999px;
    border:1px solid rgba(37,211,102,.28);
    background:rgba(37,211,102,.10);
    color:rgba(220,255,235,.95);
    font-size:12px;
    font-weight:900;
}

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

.site-header,
header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(6,11,20,.78);
    border-bottom:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(14px);
}

.topbar{
    min-height:64px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
}

.logo{
    width:42px;
    height:42px;
    border-radius:15px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 10px 24px rgba(0,0,0,.26);
}

.logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:4px;
}

.brand-title,
.brand .t1,
.brand-text .t1{
    font-weight:950;
    font-size:15px;
    line-height:1.1;
    letter-spacing:.2px;
}

.brand-subtitle,
.brand .t2,
.brand-text .t2{
    margin-top:3px;
    font-size:11px;
    line-height:1.2;
    color:var(--muted);
}

.desktop-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
}

.navlink{
    padding:8px 10px;
    border-radius:12px;
    font-size:13px;
    font-weight:850;
    color:rgba(234,242,255,.90);
    border:1px solid transparent;
    transition:.18s ease;
}

.navlink:hover,
.navlink.active{
    background:rgba(255,255,255,.07);
    border-color:rgba(255,255,255,.08);
}

.menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:24px;
    font-weight:900;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
}

.mobile-menu{
    display:none;
    padding:0 18px 18px;
    border-top:1px solid rgba(255,255,255,.08);
}

.mobile-menu.open{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.mobile-link{
    display:block;
    padding:13px 14px;
    border-radius:12px;
    font-weight:850;
    color:rgba(234,242,255,.92);
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
}

.mobile-link:hover,
.mobile-link.active{
    background:rgba(255,255,255,.09);
}

.mobile-btn{
    width:100%;
}

/* =========================================================
   BOTÕES
========================================================= */

.btn{
    min-height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:11px 15px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.07);
    color:#fff;
    font-weight:900;
    line-height:1;
    cursor:pointer;
    transition:.18s ease;
    white-space:nowrap;
}

.btn:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.10);
}

.btn.primary{
    background:linear-gradient(180deg, var(--blue), var(--blue2));
    border-color:rgba(61,129,197,.55);
    box-shadow:0 10px 24px rgba(31,95,165,.26);
}

.btn.green{
    background:linear-gradient(180deg, var(--green), var(--green2));
    border-color:rgba(37,211,102,.40);
    box-shadow:0 10px 24px rgba(22,155,78,.24);
}

.btn.secondary,
.btn.ghost,
.btn.outline{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:none;
}

.btn.outline{
    background:transparent;
}

.btn.big{
    min-height:50px;
    padding:14px 20px;
    border-radius:14px;
    font-size:15px;
}

.full-btn{
    width:100%;
}

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

.impact-hero{
    position:relative;
    min-height:72vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:55px 0;
}

.home-page .impact-hero{
    min-height:78vh;
}

.hero-overlay{
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at 14% 15%, rgba(61,129,197,.34), transparent 36%),
        radial-gradient(circle at 82% 18%, rgba(37,211,102,.14), transparent 32%);
}

.hero-bg-orb{
    position:absolute;
    border-radius:999px;
    filter:blur(10px);
    opacity:.42;
    pointer-events:none;
}

.orb-1{
    width:280px;
    height:280px;
    left:-80px;
    top:120px;
    background:rgba(61,129,197,.22);
}

.orb-2{
    width:230px;
    height:230px;
    right:-80px;
    top:160px;
    background:rgba(37,211,102,.16);
}

.impact-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.18fr .82fr;
    gap:28px;
    align-items:center;
}

.impact-copy{
    max-width:760px;
}

.impact-tag,
.kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    padding:10px 15px;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.09);
    color:rgba(234,242,255,.92);
    font-size:13px;
    font-weight:800;
}

.impact-copy h1,
.hero-content h1{
    font-size:clamp(34px, 4.2vw, 54px);
    line-height:1.04;
    letter-spacing:-1.2px;
}

.impact-copy h1 span,
.hero-content h1 span{
    display:block;
    background:linear-gradient(90deg,#bfe7ff,#60a5fa,#2ecc71);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.impact-copy p{
    max-width:680px;
    margin:18px 0 0;
    font-size:16px;
    line-height:1.75;
    color:rgba(234,242,255,.78);
}

.impact-actions,
.hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:24px;
}

.center-actions{
    justify-content:center;
}

.impact-proof,
.trust-row{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:24px;
}

.impact-proof div,
.trust-row div{
    min-width:145px;
    padding:14px 16px;
    border-radius:14px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
}

.impact-proof strong{
    display:block;
    margin-bottom:4px;
    font-size:16px;
    color:#fff;
}

.impact-proof span{
    font-size:13px;
    color:rgba(234,242,255,.68);
}

.impact-panel{
    display:flex;
    justify-content:center;
}

.scan-card{
    position:relative;
    overflow:hidden;
    width:100%;
    max-width:360px;
    padding:26px;
    border-radius:24px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(18px);
    box-shadow:0 22px 58px rgba(0,0,0,.32);
}

.scan-line{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--blue),var(--green));
}

.scan-card img{
    width:105px;
    height:105px;
    object-fit:contain;
    margin:0 auto 20px;
}

.scan-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    font-size:32px;
    background:linear-gradient(180deg, rgba(61,129,197,.34), rgba(31,95,165,.34));
}

.scan-card h2{
    margin:0 0 16px;
    font-size:24px;
}

.scan-card p{
    margin:0;
    line-height:1.65;
}

.mini-status{
    margin-top:18px;
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(234,242,255,.86);
    font-weight:800;
}

.mini-status span{
    width:10px;
    height:10px;
    border-radius:999px;
    background:var(--green);
    box-shadow:0 0 0 8px rgba(37,211,102,.12);
}

.modern-list{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
}

.modern-list li{
    padding:12px 14px;
    border-radius:14px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:rgba(234,242,255,.86);
    font-size:14px;
    line-height:1.45;
}

/* Imagens de fundo por página */
.comercio-hero{
    background:
        linear-gradient(rgba(5,10,18,.82), rgba(5,10,18,.82)),
        url("../img/comercio/comercio.jpg");
    background-size:cover;
    background-position:center;
}

.contato-hero{
    background:
        linear-gradient(rgba(5,10,18,.84), rgba(5,10,18,.84)),
        url("../img/contato/contato-bg.jpg");
    background-size:cover;
    background-position:center;
}

.documentacao-hero{
    background:
        linear-gradient(rgba(5,10,18,.84), rgba(5,10,18,.84)),
        url("../img/documentacao.jpg");
    background-size:cover;
    background-position:center;
}

.piscina-hero{
    background:
        linear-gradient(rgba(5,10,18,.82), rgba(5,10,18,.82)),
        url("../img/piscina/piscina.jpg");
    background-size:cover;
    background-position:center;
}

.poco-hero{
    background:
        linear-gradient(rgba(5,10,18,.84), rgba(5,10,18,.84)),
        url("../img/poco/poco.jpg");
    background-size:cover;
    background-position:center;
}

.servicos-hero{
    background:
        linear-gradient(rgba(5,10,18,.84), rgba(5,10,18,.84)),
        url("../img/servicos-bg.jpg");
    background-size:cover;
    background-position:center;
}

.sobre-hero{
    background:
        linear-gradient(rgba(5,10,18,.84), rgba(5,10,18,.84)),
        url("../img/sobre.jpg");
    background-size:cover;
    background-position:center;
}

.home-main-hero{
    background:
        linear-gradient(rgba(5,10,18,.82), rgba(5,10,18,.82)),
        radial-gradient(circle at 20% 15%, rgba(61,129,197,.42), transparent 38%),
        radial-gradient(circle at 85% 10%, rgba(37,211,102,.18), transparent 35%),
        linear-gradient(135deg, #183047, #356791);
}

/* =========================================================
   INDEX - COMPATIBILIDADE
========================================================= */

.hero{
    padding:55px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:28px;
    align-items:center;
}

.hero-content .lead,
.lead{
    margin:18px 0 0;
    max-width:680px;
    font-size:16px;
    line-height:1.75;
    color:rgba(234,242,255,.78);
}

.hero-card{
    padding:28px;
    text-align:center;
}

.hero-card img{
    width:125px;
    height:125px;
    object-fit:contain;
    margin:0 auto 20px;
}

.services-section{
    padding:55px 0;
}

.section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:18px;
    margin-bottom:26px;
}

.section-head.center{
    display:block;
    text-align:center;
}

.section-head.center p{
    margin-left:auto;
    margin-right:auto;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:18px;
}

.service-card{
    padding:24px;
    border-radius:22px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.25s;
}

.service-card:hover{
    transform:translateY(-4px);
    border-color:rgba(61,129,197,.50);
}

.icon,
.service-card .icon{
    width:62px;
    height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    font-size:28px;
    background:linear-gradient(180deg, rgba(61,129,197,.34), rgba(31,95,165,.34));
}

.service-card h3{
    margin:0 0 10px;
    font-size:21px;
}

.service-card p{
    margin:0;
    line-height:1.7;
}

/* =========================================================
   CARDS MODERNOS GERAIS
========================================================= */

.modern-cards-section{
    padding:55px 0;
}

.modern-cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:18px;
}

.modern-card{
    padding:24px;
    border-radius:22px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(14px);
    transition:.25s;
}

.modern-card:hover{
    transform:translateY(-5px);
    border-color:rgba(61,129,197,.55);
    box-shadow:0 20px 48px rgba(0,0,0,.24);
}

.modern-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    font-size:28px;
    background:linear-gradient(180deg, rgba(61,129,197,.35), rgba(31,95,165,.35));
}

.modern-card h3{
    margin:0 0 12px;
    font-size:21px;
}

.modern-card p{
    margin:0;
    line-height:1.7;
    color:rgba(234,242,255,.74);
}

/* =========================================================
   BLOCO AUTHORITY / CTA
========================================================= */

.why-section,
.authority-section{
    padding:0 0 55px;
}

.why-box,
.authority-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
    padding:32px;
    border-radius:24px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
}

.why-box h2,
.authority-box h2{
    font-size:clamp(28px, 3vw, 38px);
    line-height:1.15;
}

.why-box p,
.authority-box p{
    line-height:1.75;
}

.authority-box small{
    display:block;
    margin-bottom:12px;
    color:var(--cyan);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:2px;
}

.why-list,
.authority-list{
    display:grid;
    gap:14px;
}

.why-list div,
.authority-list div{
    padding:16px;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    color:rgba(234,242,255,.90);
    line-height:1.5;
}

.final-cta,
.dark-cta{
    padding:0 0 60px;
}

.cta-card,
.dark-cta-box{
    padding:42px 28px;
    border-radius:28px;
    text-align:center;
    background:linear-gradient(135deg, rgba(61,129,197,.22), rgba(31,95,165,.10));
    border:1px solid rgba(255,255,255,.08);
}

.cta-card h2,
.dark-cta-box h2{
    margin:0 0 16px;
    font-size:clamp(30px, 3.5vw, 42px);
}

.cta-card p,
.dark-cta-box p{
    max-width:720px;
    margin:0 auto 26px;
    line-height:1.75;
    color:rgba(234,242,255,.74);
}

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

.premium-services-section{
    padding:55px 0;
}

.premium-services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:18px;
}

.premium-service-card{
    overflow:hidden;
    border-radius:26px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.25s;
    backdrop-filter:blur(14px);
}

.premium-service-card:hover{
    transform:translateY(-6px);
    border-color:rgba(61,129,197,.5);
    box-shadow:0 22px 54px rgba(0,0,0,.32);
}

.premium-service-image{
    height:210px;
    overflow:hidden;
}

.premium-service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
}

.premium-service-card:hover img{
    transform:scale(1.05);
}

.premium-service-content{
    padding:24px;
}

.premium-service-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    font-size:28px;
    background:linear-gradient(180deg, rgba(61,129,197,.35), rgba(31,95,165,.35));
}

.premium-service-content h3{
    margin:0 0 12px;
    font-size:26px;
}

.premium-service-content p{
    margin:0;
    line-height:1.7;
    color:rgba(234,242,255,.74);
}

.premium-link{
    display:inline-block;
    margin-top:18px;
    font-weight:900;
    color:var(--cyan);
}

/* Cards antigos de serviços - compatibilidade */
.service-card-img{
    position:relative;
    display:block;
    overflow:hidden;
    min-height:260px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 12px 32px rgba(0,0,0,.35);
    transition:.22s ease;
}

.service-card-img:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 46px rgba(0,0,0,.45);
}

.service-card-img img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.service-card-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.82) 100%);
}

.service-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:22px;
}

.service-overlay h3{
    margin:0;
    font-size:22px;
    font-weight:900;
}

.service-overlay p{
    margin:8px 0 0;
    color:rgba(255,255,255,.88);
    line-height:1.5;
}

.service-cta{
    display:inline-block;
    margin-top:12px;
    color:var(--cyan);
    font-size:13px;
    font-weight:900;
}

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

.modern-contact-section{
    padding:55px 0;
}

.modern-contact-grid{
    display:grid;
    grid-template-columns:1fr 380px;
    gap:24px;
    align-items:start;
}

.modern-form{
    padding:32px;
    border-radius:26px;
}

.modern-form h2{
    margin:0 0 12px;
    font-size:36px;
}

.modern-form p{
    margin:0 0 24px;
    line-height:1.75;
    color:rgba(234,242,255,.74);
}

.modern-field{
    margin-bottom:16px;
}

.modern-field label,
label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:900;
}

.modern-field input,
.modern-field textarea,
input,
textarea{
    width:100%;
    border:none;
    outline:none;
    padding:15px 16px;
    border-radius:16px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.09);
    color:#fff;
    font-size:15px;
}

input::placeholder,
textarea::placeholder{
    color:rgba(255,255,255,.52);
}

.modern-field textarea,
textarea{
    min-height:140px;
    resize:vertical;
}

.modern-field input:focus,
.modern-field textarea:focus,
input:focus,
textarea:focus{
    border-color:rgba(61,129,197,.85);
    background:rgba(255,255,255,.08);
}

.modern-contact-cards{
    display:grid;
    gap:16px;
}

.modern-contact-card{
    display:flex;
    gap:16px;
    align-items:center;
    padding:22px;
    border-radius:22px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.25s;
}

.modern-contact-card:hover{
    transform:translateY(-4px);
    border-color:rgba(61,129,197,.5);
}

.modern-contact-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    background:linear-gradient(180deg, rgba(61,129,197,.35), rgba(31,95,165,.35));
}

.modern-contact-card h3{
    margin:0 0 6px;
    font-size:20px;
}

.modern-contact-card p{
    margin:0;
    color:rgba(234,242,255,.72);
    line-height:1.6;
}

/* Contato antigo - compatibilidade */
.layout{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:20px;
    align-items:start;
}

.form-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:16px;
}

.small{
    margin-top:10px;
    font-size:12px;
    line-height:1.5;
    color:rgba(255,255,255,.62);
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:14px;
}

.contact-card{
    position:relative;
    overflow:hidden;
    min-height:130px;
    padding:16px;
    display:flex;
    align-items:center;
    gap:12px;
    border-radius:20px;
    background-size:cover;
    background-position:center;
    border:1px solid rgba(255,255,255,.12);
}

.contact-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.70));
}

.contact-card > *{
    position:relative;
    z-index:2;
}

.contact-ico{
    width:46px;
    height:46px;
    border-radius:16px;
    display:grid;
    place-items:center;
    background:rgba(0,0,0,.18);
}

.contact-title{
    font-size:16px;
    font-weight:950;
}

.contact-text{
    margin-top:6px;
    font-size:13px;
    color:rgba(234,242,255,.86);
}

/* =========================================================
   SOBRE
========================================================= */

.modern-about-section{
    padding:55px 0;
}

.modern-about-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:28px;
    align-items:start;
}

.modern-about-text h2{
    margin:0 0 18px;
    font-size:clamp(30px, 4vw, 44px);
    line-height:1.1;
}

.modern-about-text p{
    margin-bottom:16px;
    line-height:1.75;
    color:rgba(234,242,255,.74);
}

.modern-about-cards{
    display:grid;
    gap:18px;
}

.mini-about-card{
    padding:24px;
    border-radius:22px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
}

.mini-about-card strong{
    display:block;
    margin-bottom:10px;
    font-size:22px;
}

.mini-about-card span{
    color:rgba(234,242,255,.72);
    line-height:1.65;
}

.modern-region-section{
    padding:0 0 55px;
}

.section-head-modern{
    margin-bottom:26px;
}

.modern-city-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}

.modern-city-card{
    overflow:hidden;
    border-radius:22px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.25s;
}

.modern-city-card:hover{
    transform:translateY(-4px);
    border-color:rgba(61,129,197,.5);
}

.modern-city-card img{
    width:100%;
    height:165px;
    object-fit:cover;
}

.modern-city-card span{
    display:block;
    padding:18px;
    font-weight:900;
}

/* Sobre antigo - compatibilidade */
.sobre-bg{
    position:relative;
    overflow:hidden;
    background-image:url("../img/sobre.jpg");
    background-size:cover;
    background-position:center;
}

.sobre-bg::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.sobre-bg > *{
    position:relative;
    z-index:1;
}

.area-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:14px;
    margin-bottom:14px;
}

.city-grid{
    margin-top:10px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:12px;
}

.city-card{
    position:relative;
    overflow:hidden;
    min-height:130px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.04);
    box-shadow:0 12px 30px rgba(0,0,0,.28);
    transition:.18s;
}

.city-card:hover{
    transform:translateY(-2px);
    filter:brightness(1.05);
}

.city-card img{
    width:100%;
    height:140px;
    object-fit:cover;
}

.city-label{
    position:absolute;
    left:10px;
    bottom:10px;
    padding:8px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    background:rgba(0,0,0,.42);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(8px);
}

.city-more{
    display:grid;
    place-items:center;
}

.city-more-inner{
    padding:14px;
    text-align:center;
}

.city-more-title{
    font-weight:950;
}

/* =========================================================
   LISTAS ANTIGAS / SERVIÇOS ANTIGOS
========================================================= */

.list{
    margin:12px 0 0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
}

.list li{
    padding:12px 14px;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    color:rgba(234,242,255,.88);
    line-height:1.5;
}

.service{
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:16px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.09);
    background:rgba(0,0,0,.14);
}

.service + .service{
    margin-top:12px;
}

.service .icon,
.service > .icon{
    width:44px;
    height:44px;
    border-radius:15px;
    flex:0 0 auto;
    margin-bottom:0;
    font-size:18px;
}

.service h3{
    margin:0;
    font-size:16px;
}

.service p{
    margin:6px 0 0;
    font-size:14px;
    line-height:1.5;
}

/* =========================================================
   POPUP
========================================================= */

.popup-overlay{
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:rgba(0,0,0,.76);
    opacity:0;
    visibility:hidden;
    transition:.25s;
}

.popup-overlay.ativo{
    opacity:1;
    visibility:visible;
}

.popup-box{
    position:relative;
    max-width:92vw;
    max-height:92vh;
    animation:popupEntrada .25s ease;
}

.popup-box img{
    width:100%;
    max-width:520px;
    max-height:88vh;
    object-fit:contain;
    border-radius:22px;
    box-shadow:0 20px 70px rgba(0,0,0,.55);
}

.popup-close{
    position:absolute;
    top:-14px;
    right:-14px;
    width:42px;
    height:42px;
    border:none;
    border-radius:999px;
    background:#fff;
    color:#000;
    font-size:20px;
    font-weight:900;
    cursor:pointer;
}

@keyframes popupEntrada{
    from{
        transform:scale(.92);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

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

.wa-float{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:60;

    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 18px;

    border-radius:999px;

    background:linear-gradient(
        180deg,
        #25d366,
        #169b4e
    );

    border:1px solid rgba(37,211,102,.35);

    color:#fff;

    font-weight:800;
    font-size:15px;

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

    transition:.25s;
}

.wa-float:hover{
    transform:translateY(-3px);
    filter:brightness(1.05);
}

.wa-ico{
    width:34px;
    height:34px;

    border-radius:50%;

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

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

    color:#fff;

    flex-shrink:0;
}

.wa-ico svg{
    width:20px;
    height:20px;

    fill:currentColor;
}

.footer,
footer{
    padding:26px 0 34px;

    color:rgba(234,242,255,.60);

    font-size:12px;

    text-align:center;

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

    background:rgba(6,11,20,.22);
}

.nav-actions{
    display:flex;
    gap:8px;
    align-items:center;
}

.site-main{
    min-height:calc(100vh - 64px);
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width:1080px){
    .desktop-nav{
        display:none !important;
    }

    .menu-toggle{
        display:flex !important;
    }
}

@media(max-width:980px){
    .wrap{
        padding:0 16px;
    }

    .impact-hero{
        min-height:auto;
        padding:55px 0;
    }

    .impact-grid,
    .hero-grid,
    .authority-box,
    .why-box,
    .modern-contact-grid,
    .modern-about-grid,
    .layout{
        grid-template-columns:1fr;
    }

    .impact-copy h1,
    .hero-content h1{
        font-size:42px;
        letter-spacing:-1px;
    }

    .span-4,
    .span-5,
    .span-6,
    .span-7,
    .span-8{
        grid-column:span 12;
    }

    .premium-service-image{
        height:210px;
    }

    .modern-form{
        padding:26px;
    }

    .cta-card,
    .dark-cta-box{
        padding:36px 22px;
    }
}

@media(max-width:680px){
    .topbar{
        min-height:62px;
    }

    .logo{
        width:40px;
        height:40px;
    }

    .brand-title,
    .brand .t1,
    .brand-text .t1{
        font-size:15px;
    }

    .brand-subtitle,
    .brand .t2,
    .brand-text .t2{
        font-size:11px;
    }

    .impact-copy h1,
    .hero-content h1{
        font-size:34px;
    }

    .impact-copy p,
    .hero-content .lead,
    .lead{
        font-size:15px;
    }

    .impact-proof,
    .trust-row{
        flex-direction:column;
    }

    .impact-proof div,
    .trust-row div{
        width:100%;
    }

    .impact-actions,
    .hero-actions{
        flex-direction:column;
    }

    .btn.big,
    .impact-actions .btn,
    .hero-actions .btn{
        width:100%;
    }

    .scan-card,
    .modern-card,
    .modern-form,
    .mini-about-card,
    .premium-service-content{
        padding:22px;
    }

    .modern-contact-card{
        padding:20px;
    }

    .modern-contact-icon,
    .premium-service-icon,
    .modern-icon{
        width:58px;
        height:58px;
        font-size:26px;
    }

    .wa-float{
        right:12px;
        bottom:12px;
        padding:10px 12px;
    }
}

@media(max-width:430px){
    .wrap{
        padding:0 14px;
    }

    .impact-copy h1,
    .hero-content h1{
        font-size:32px;
    }

    .scan-card h2,
    .premium-service-content h3{
        font-size:24px;
    }

    .section-mini{
        font-size:12px;
    }
}
