/* =========================================================================
   ENERGIA INTUITIVA — style.css
   Paleta: azul elétrico #007AFF · navy #192A56 · ink #111111 (cores planas)
   Tipo:   Space Grotesk (display) · Inter (texto) · Space Mono (etiquetas)
   ========================================================================= */

:root {
    --blue:      #007AFF;
    --blue-600:  #0064d6;
    --blue-050:  #eaf3ff;
    --navy:      #192A56;
    --navy-700:  #111d3c;
    --navy-900:  #0c1530;
    --ink:       #111111;
    --paper:     #ffffff;
    --mist:      #f4f6fb;
    --mist-200:  #eef1f8;
    --line:      #e2e8f4;
    --muted:     #5b6478;
    --muted-light: #aeb8d4;

    --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
    --font-body:    "Inter", system-ui, -apple-system, sans-serif;
    --font-mono:    "Space Mono", ui-monospace, monospace;

    --radius:    14px;
    --radius-sm: 10px;
    --container: 1200px;
    --header-h:  74px;

    --shadow-sm: 0 2px 8px rgba(17, 29, 60, .06);
    --shadow-md: 0 14px 40px rgba(17, 29, 60, .10);
    --shadow-lg: 0 24px 60px rgba(17, 29, 60, .16);

    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- Base ------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

a { color: var(--blue); text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-link {
    position: absolute; left: 16px; top: -60px;
    background: var(--navy); color: #fff; padding: 10px 16px;
    border-radius: 8px; z-index: 2000; transition: top .2s;
}
.skip-link:focus { top: 16px; color: #fff; }

/* ---- Tipografia ------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; margin: 0; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: .76rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--blue);
    margin-bottom: 18px;
}
.eyebrow-icon { width: 16px; height: 16px; }
.eyebrow-light { color: #6fb0ff; }

.section-title { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); color: var(--ink); }
.section-title-light { color: #fff; }

.section-lead {
    font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem);
    color: var(--muted); max-width: 54ch; margin-top: 16px;
}
.section-lead-light { color: var(--muted-light); }

/* ---- Botões ----------------------------------------------------------- */
.btn-ei {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-display); font-weight: 600; font-size: .98rem;
    padding: 13px 22px; border-radius: var(--radius-sm);
    border: 1.5px solid transparent; cursor: pointer;
    transition: transform .15s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s;
    line-height: 1; white-space: nowrap;
}
.btn-ei:hover { transform: translateY(-2px); }
.btn-ei:active { transform: translateY(0); }
.btn-ei .btn-icon { width: 18px; height: 18px; }

.btn-ei-lg { padding: 16px 28px; font-size: 1.04rem; }

.btn-ei-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(0, 122, 255, .28); }
.btn-ei-primary:hover { background: var(--blue-600); color: #fff; box-shadow: 0 12px 26px rgba(0, 122, 255, .34); }

.btn-ei-dark { background: var(--navy); color: #fff; }
.btn-ei-dark:hover { background: var(--navy-700); color: #fff; }

.btn-ei-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-ei-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); color: #fff; }

.btn-ei-light { background: #fff; color: var(--navy); }
.btn-ei-light:hover { background: var(--mist); color: var(--navy); }

/* ---- Cabeçalho -------------------------------------------------------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s, background .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.brand { display: flex; align-items: center; }
.brand-logo { height: 30px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a {
    font-family: var(--font-display); font-weight: 500; font-size: .98rem;
    color: var(--ink); position: relative; padding: 4px 0;
}
.main-nav a::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
    background: var(--blue); transition: width .25s var(--ease);
}
.main-nav a:hover { color: var(--blue); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
    font-family: var(--font-mono); font-weight: 700; font-size: .8rem;
    color: var(--navy); border: 1.5px solid var(--line);
    padding: 8px 12px; border-radius: 8px; letter-spacing: .05em;
    transition: border-color .2s, color .2s, background .2s;
}
.lang-toggle:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-050); }

.nav-burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
    align-items: center; justify-content: center; background: none; border: 1.5px solid var(--line);
    border-radius: 10px; cursor: pointer; }
.nav-burger span { width: 20px; height: 2px; background: var(--ink); transition: .25s var(--ease); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 16px 24px 22px;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
.mobile-nav a { font-family: var(--font-display); font-weight: 500; color: var(--ink); padding: 12px 4px; border-bottom: 1px solid var(--mist-200); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav.is-open { display: flex; }

/* ---- Hero ------------------------------------------------------------- */
.hero {
    position: relative; overflow: hidden;
    background: var(--navy);
    padding: calc(var(--header-h) + 80px) 0 96px;
    color: #fff;
}
.hero-current { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .9; }
.hero-current .conductor { fill: none; stroke: rgba(255, 255, 255, .08); stroke-width: 2; }
.hero-current .pulse {
    fill: none; stroke: var(--blue); stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(0, 122, 255, .8));
    stroke-dasharray: 140 1600;
    stroke-dashoffset: 1740;
    animation: current-flow 5s linear infinite;
}
@keyframes current-flow { to { stroke-dashoffset: 0; } }

.hero-container { position: relative; z-index: 1; }
.hero-content { max-width: 760px; }
.hero-title { font-size: clamp(2.3rem, 1.3rem + 4.4vw, 4.2rem); color: #fff; }
.hero-lead { font-size: clamp(1.08rem, 1rem + .5vw, 1.32rem); color: #cdd6ee; margin: 22px 0 34px; max-width: 60ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 38px 0 0; padding: 0; }
.hero-chips li { display: flex; align-items: center; gap: 8px; color: #b9c4e4; font-size: .94rem; font-weight: 500; }
.chip-icon { width: 18px; height: 18px; color: var(--blue); flex: none; }

/* ---- Secções genéricas ------------------------------------------------ */
.section { padding: clamp(64px, 4vw + 40px, 110px) 0; }
.section-head { max-width: 720px; margin-bottom: 52px; }

/* ---- Serviços --------------------------------------------------------- */
.section-services { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.service-card {
    position: relative; background: var(--paper); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 32px 28px 28px; overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.service-card::before {
    content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
    background: var(--blue); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }

.service-num {
    position: absolute; top: 22px; right: 26px;
    font-family: var(--font-mono); font-size: .9rem; font-weight: 700; color: var(--line);
    letter-spacing: .05em;
}
.service-card:hover .service-num { color: var(--blue-050); }

.service-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--blue-050); color: var(--blue); margin-bottom: 22px;
}
.svc-svg { width: 28px; height: 28px; }
.service-title { font-size: 1.28rem; color: var(--ink); margin-bottom: 10px; }
.service-desc { color: var(--muted); font-size: .98rem; margin: 0; }

.services-foot { margin-top: 44px; }

/* ---- Empresa ---------------------------------------------------------- */
.section-about { background: var(--mist); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-text { color: var(--muted); font-size: 1.06rem; margin: 0 0 16px; max-width: 52ch; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-item { display: flex; gap: 16px; background: var(--paper); border: 1px solid var(--line);
    border-radius: var(--radius-sm); padding: 22px 20px; }
.value-icon { flex: none; width: 44px; height: 44px; border-radius: 11px; background: var(--navy);
    color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.val-svg { width: 22px; height: 22px; }
.value-title { font-size: 1.05rem; color: var(--ink); margin-bottom: 4px; }
.value-desc { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.5; }

.certs { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; margin-top: 48px;
    padding-top: 36px; border-top: 1px solid var(--line); }
.cert-item img { height: 48px; width: auto; }
.cert-item span { font-family: var(--font-mono); color: var(--muted); font-weight: 700; }

/* ---- Áreas ------------------------------------------------------------ */
.section-areas { background: var(--navy); position: relative; overflow: hidden; }
.section-areas::after {
    content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px;
    border: 2px solid rgba(255, 255, 255, .05); border-radius: 50%;
}
.areas-list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 8px 0 0; position: relative; }
.area-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
    color: #dfe6f7; padding: 10px 16px; border-radius: 100px; font-size: .94rem; font-weight: 500;
    transition: background .2s, border-color .2s, transform .2s;
}
.area-chip:hover { background: rgba(0, 122, 255, .18); border-color: var(--blue); transform: translateY(-2px); }
.area-icon { width: 15px; height: 15px; color: var(--blue); flex: none; }
.areas-note { color: var(--muted-light); margin-top: 28px; font-size: .96rem; position: relative; }

/* ---- Trabalhos / antes-depois ----------------------------------------- */
.section-works { background: var(--paper); }
.works-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.ba { margin: 0; }
.ba-frame {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4 / 3; background: var(--mist); box-shadow: var(--shadow-sm); user-select: none;
}
.ba-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; border-right: 2px solid #fff; }
.ba-before-wrap img { width: 100vw; max-width: none; }
.ba-tag { position: absolute; top: 14px; font-family: var(--font-mono); font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em; padding: 5px 10px; border-radius: 6px; color: #fff; }
.ba-tag-before { left: 14px; background: var(--navy); }
.ba-tag-after { right: 14px; background: var(--blue); }
.ba-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 44px; transform: translateX(-50%);
    background: none; border: none; cursor: ew-resize; display: flex; align-items: center; justify-content: center; z-index: 3;
}
.ba-handle::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); background: #fff; }
.ba-handle::after { content: ""; width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); }
.ba-arrow { position: absolute; width: 16px; height: 16px; color: var(--navy); z-index: 1; }
.ba-arrow-l { transform: rotate(180deg) translateX(8px); }
.ba-arrow-r { transform: translateX(8px); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; z-index: 4; }
.ba-caption { margin-top: 14px; color: var(--muted); font-size: .94rem; }

.works-soon {
    text-align: center; max-width: 520px; margin: 0 auto;
    border: 2px dashed var(--line); border-radius: var(--radius); padding: 60px 32px; background: var(--mist);
}
.works-soon-mark { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 16px; background: var(--navy);
    color: var(--blue); display: flex; align-items: center; justify-content: center; }
.soon-svg { width: 32px; height: 32px; }
.works-soon h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--ink); }
.works-soon p { color: var(--muted); margin: 0; }

.works-grid-staggered {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.work-card-up {
    transform: translateY(-40px);
}

.work-card-down {
    transform: translateY(40px);
}

.work-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.work-caption {
    margin-top: 1rem;
    text-align: center;
}

/* Categorias da galeria: Obras concluídas / Em curso */
.works-cat { margin-top: 40px; }
.works-cat:first-of-type { margin-top: 8px; }
.works-cat-title {
    display: flex; align-items: center; gap: 12px;
    font-size: 1.35rem; color: var(--ink); margin: 0 0 40px;
    padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.works-cat-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.works-cat-dot-concluidas { background: var(--blue); }
.works-cat-dot-ongoing {
    background: #f5a623;
    box-shadow: 0 0 0 4px rgba(245, 166, 35, .18);
    animation: ei-pulse 2s var(--ease) infinite;
}
@keyframes ei-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(245, 166, 35, .18); }
    50%      { box-shadow: 0 0 0 7px rgba(245, 166, 35, .08); }
}
/* ---- Faixa CTA -------------------------------------------------------- */
.cta-band { background: var(--ink); color: #fff; padding: 56px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band-title { font-size: clamp(1.5rem, 1rem + 2vw, 2.2rem); color: #fff; }
.cta-band-lead { color: #b6bccb; margin: 10px 0 0; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Contactos -------------------------------------------------------- */
.section-contact { background: var(--mist); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; align-items: start; }

.contact-info { background: var(--navy); border-radius: var(--radius); padding: 32px 28px; color: #fff; }
.contact-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: #fff; transition: opacity .2s; }
.contact-row:hover { opacity: .85; color: #fff; }
.contact-row-static { cursor: default; }
.contact-row-icon { flex: none; width: 44px; height: 44px; border-radius: 11px; background: rgba(255, 255, 255, .08);
    display: inline-flex; align-items: center; justify-content: center; color: var(--blue); }
.contact-row-icon svg { width: 22px; height: 22px; }
.contact-row-label { display: block; font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase;
    letter-spacing: .1em; color: var(--muted-light); }
.contact-row-value { display: block; font-weight: 600; font-size: 1.04rem; }

.contact-hours { display: flex; align-items: center; gap: 12px; padding: 18px 0 4px; color: #cdd6ee; font-size: .92rem; }
.hours-icon { width: 22px; height: 22px; color: var(--blue); flex: none; }
.contact-hours strong { color: #fff; }

.contact-map { margin-top: 20px; border-radius: var(--radius-sm); overflow: hidden; }
.contact-map iframe { width: 100%; height: 200px; border: 0; display: block; filter: grayscale(.2); }

/* Formulário */
.contact-form-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 32px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.req { color: var(--blue); }
.field input, .field select, .field textarea {
    font-family: var(--font-body); font-size: 1rem; color: var(--ink);
    border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px 15px;
    background: var(--paper); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-050);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .is-invalid { border-color: #d9382f; box-shadow: 0 0 0 4px rgba(217, 56, 47, .08); }
.field-err { color: #d9382f; font-size: .82rem; margin-top: 6px; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field-consent { margin-top: 4px; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; font-size: .9rem; color: var(--muted); cursor: pointer; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--blue); }

.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 8px; }
.form-required-note { font-size: .82rem; color: var(--muted); }

.form-alert { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: var(--radius-sm);
    margin-bottom: 22px; font-weight: 500; }
.form-alert-ok { background: #e7f7ee; color: #137a43; border: 1px solid #b8e6cb; }
.form-alert-err { background: #fdecea; color: #b3261e; border: 1px solid #f5c6c2; }
.alert-icon { width: 20px; height: 20px; flex: none; }

/* ---- Rodapé ----------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #c2cbe4; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer-logo { height: 30px; width: auto; margin-bottom: 18px; }
.footer-logo.logo-fallback { background: #fff; padding: 6px 10px; border-radius: 8px; }
.footer-tagline { color: #97a3c4; max-width: 36ch; margin: 0 0 20px; font-size: .96rem; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contacts a { display: inline-flex; align-items: center; gap: 10px; color: #dbe2f4; font-weight: 500; }
.footer-contacts a:hover { color: var(--blue); }
.foot-icon { width: 18px; height: 18px; color: var(--blue); }

.footer-col h4 { font-size: .82rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em;
    color: #6f7ba0; margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; color: #c2cbe4; padding: 6px 0; font-size: .96rem; }
.footer-col a:hover { color: #fff; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    padding-top: 24px; color: #7783a6; font-size: .88rem; }
.footer-bottom p { margin: 0; }
.footer-credit a { color: #c2cbe4; font-weight: 600; }
.footer-credit a:hover { color: var(--blue); }

/* ---- WhatsApp flutuante ----------------------------------------------- */
.whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 900;
    width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 28px rgba(37, 211, 102, .42); transition: transform .2s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.wa-svg { width: 30px; height: 30px; }

/* ---- Reveal on scroll ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---- Responsivo ------------------------------------------------------- */
@media (max-width: 980px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .works-grid { grid-template-columns: 1fr; }
    .works-grid-staggered { grid-template-columns: 1fr; gap: 1.5rem; }
    .work-card-up,
    .work-card-down { transform: none; }
}

@media (max-width: 820px) {
    .main-nav, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .hero-actions .btn-ei { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 620px) {
    .container { padding: 0 18px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-band-inner { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-info, .contact-form-wrap { padding: 26px 22px; }
}

/* ---- Movimento reduzido ---------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero-current .pulse { animation: none; stroke-dasharray: none; stroke-dashoffset: 0; opacity: .5; }
}
/* =========================================================================
   SEO LOCAL — páginas de zona, serviço, "perto de mim", FAQ e 404
   ========================================================================= */

/* ---- Hero das subpáginas ---------------------------------------------- */
.hero-sub { padding: calc(var(--header-h) + 44px) 0 72px; }
.hero-title-sub { font-size: clamp(2rem, 1.2rem + 3.2vw, 3.4rem); }
.hero-sub .hero-content { max-width: 820px; }
.hero-sub .hero-lead { margin: 18px 0 30px; }
.hero-sub .hero-actions .btn-ei-ghost .btn-icon { color: var(--blue); }

/* ---- Breadcrumb ------------------------------------------------------- */
.breadcrumb-ei { margin-bottom: 26px; font-size: .86rem; }
.breadcrumb-ei ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 0; padding: 0; }
.breadcrumb-ei li { display: inline-flex; align-items: center; gap: 6px; color: #93a0c6; }
.breadcrumb-ei li + li::before { content: "/"; color: rgba(255, 255, 255, .22); margin-right: 2px; }
.breadcrumb-ei a { color: #c4cde6; display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb-ei a:hover { color: #fff; }
.breadcrumb-ei [aria-current] { color: #fff; font-weight: 500; }
.bc-icon { width: 15px; height: 15px; color: var(--blue); }

/* ---- Texto + aside (zona / serviço) ------------------------------------ */
.section-alt { background: var(--mist); }
.section-zone-intro { padding-bottom: clamp(48px, 3vw + 24px, 80px); }
.zone-grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: 48px; align-items: start; }
.zone-text p { color: var(--muted); font-size: 1.08rem; line-height: 1.75; margin: 0 0 18px; max-width: 64ch; }
.zone-text p:first-child { color: var(--ink); font-size: 1.16rem; font-weight: 500; }
.zone-text p:first-child::first-letter { color: var(--blue); }

.zone-aside {
    position: sticky; top: calc(var(--header-h) + 20px);
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px 26px; box-shadow: var(--shadow-sm);
}
.section-alt .zone-aside { border-color: transparent; }
.zone-aside-title { display: flex; align-items: center; gap: 10px; font-size: 1.12rem; color: var(--ink); margin-bottom: 16px; }
.zone-aside-icon { width: 20px; height: 20px; color: var(--blue); flex: none; }
.zone-places { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.zone-places li { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: .96rem; line-height: 1.5; }
.zone-places li a { color: var(--ink); font-weight: 500; }
.zone-places li a:hover { color: var(--blue); }
.place-icon { width: 16px; height: 16px; color: var(--blue); flex: none; margin-top: 4px; }
.zone-aside-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.zone-aside-cta .btn-ei { flex: 1 1 auto; justify-content: center; }

/* ---- Cartões de serviço com link ------------------------------------- */
.service-title a { color: inherit; }
.service-title a:hover { color: var(--blue); }
.service-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
    font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--blue);
}
.service-link .btn-icon { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.service-link:hover .btn-icon { transform: translateX(3px); }

/* ---- FAQ ("as pessoas também perguntam") ------------------------------- */
.section-faq { background: var(--paper); }
.faq-list { max-width: 860px; display: grid; gap: 12px; }
.faq-item {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
    transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-q {
    list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 18px 20px; font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--ink);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--blue); }
.faq-icon {
    flex: none; width: 32px; height: 32px; border-radius: 9px; background: var(--blue-050); color: var(--blue);
    display: inline-flex; align-items: center; justify-content: center; transition: transform .25s var(--ease), background .2s;
}
.faq-svg { width: 16px; height: 16px; }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a { padding: 0 20px 20px; }
.faq-a p { margin: 0; color: var(--muted); line-height: 1.7; max-width: 72ch; }

/* ---- Pesquisas frequentes -------------------------------------------- */
.section-searches { background: var(--mist); padding: 48px 0; }
.searches-inner { display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: start; }
.searches-title { font-size: 1.15rem; color: var(--ink); margin-bottom: 6px; }
.searches-lead { color: var(--muted); font-size: .92rem; margin: 0; }
.searches-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.search-chip {
    display: inline-flex; align-items: center; gap: 7px; background: var(--paper); border: 1px solid var(--line);
    color: var(--muted); padding: 7px 12px; border-radius: 100px; font-size: .86rem;
}
.search-icon { width: 13px; height: 13px; color: var(--blue); flex: none; }

/* ---- Grelha de zonas ------------------------------------------------- */
.section-zones { background: var(--paper); }
.section-zones-dark { background: var(--navy); position: relative; overflow: hidden; }
.section-zones-dark::after {
    content: ""; position: absolute; left: -140px; bottom: -140px; width: 380px; height: 380px;
    border: 2px solid rgba(255, 255, 255, .05); border-radius: 50%;
}
.zones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; position: relative; }
.zone-card {
    display: flex; align-items: center; gap: 14px; padding: 16px 18px;
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
    color: var(--ink); transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.zone-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue); color: var(--ink); }
.zone-card-icon {
    flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--blue-050); color: var(--blue);
    display: inline-flex; align-items: center; justify-content: center;
}
.zone-card-svg { width: 20px; height: 20px; }
.zone-card-body { display: flex; flex-direction: column; min-width: 0; }
.zone-card-name { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.zone-card-label { font-size: .82rem; color: var(--muted); }
.zone-card-arrow { width: 18px; height: 18px; margin-left: auto; color: var(--blue); flex: none; transition: transform .2s var(--ease); }
.zone-card:hover .zone-card-arrow { transform: translateX(3px); }
.section-zones-dark .zone-card { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); color: #fff; }
.section-zones-dark .zone-card:hover { background: rgba(0, 122, 255, .16); color: #fff; }
.section-zones-dark .zone-card-icon { background: rgba(255, 255, 255, .08); }
.section-zones-dark .zone-card-label { color: var(--muted-light); }
.zones-more { margin: 32px 0 0; position: relative; }

/* ---- Áreas (página inicial): chips com link -------------------------- */
.areas-list li { display: contents; }
a.area-chip-link { color: #dfe6f7; }
a.area-chip-link:hover { color: #fff; }
.areas-all { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-family: var(--font-display); }
.areas-all:hover { color: var(--blue); }
.areas-all .btn-icon { width: 16px; height: 16px; color: var(--blue); }

/* ---- Rodapé a 4 colunas + zonas -------------------------------------- */
.footer-grid-4 { grid-template-columns: 1.5fr .9fr 1.1fr 1.1fr; }
.footer-zones { display: grid; grid-template-columns: 1fr 1fr; column-gap: 12px; }
.footer-zones a { font-size: .9rem; padding: 4px 0; }

/* ---- Responsivo ------------------------------------------------------- */
@media (max-width: 980px) {
    .zone-grid { grid-template-columns: 1fr; gap: 32px; }
    .zone-aside { position: static; }
    .zones-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid-4 { grid-template-columns: 1fr 1fr; }
    .searches-inner { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 620px) {
    .zones-grid { grid-template-columns: 1fr; }
    .footer-grid-4 { grid-template-columns: 1fr; }
    .hero-sub { padding-top: calc(var(--header-h) + 28px); }
    .faq-q { padding: 15px 16px; font-size: .98rem; }
    .faq-a { padding: 0 16px 16px; }
}
