/* Magitronic — estilos do site
   Paleta derivada do azul do logo (#002DB2). Um tema só (claro), pintado explicitamente. */
:root {
  --blue: #002db2;
  --blue-700: #00228a;
  --blue-50: #eef2fd;
  --blue-100: #dce4fb;
  --navy: #0b1633;
  --navy-800: #13214a;
  --ink: #141d36;
  --ink-2: #4a5572;
  --ink-3: #6b7592;
  --line: #dfe4ef;
  --ground: #f5f7fb;
  --surface: #ffffff;
  --wa: #0d7a3e;
  --wa-700: #0a6231;
  --star: #e89b00;
  --ok: #0d7a3e;
  --err: #b42318;

  --font: "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgb(11 22 51 / .06), 0 4px 16px rgb(11 22 51 / .06);
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --bar-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--blue-700); }
:focus-visible { outline: 3px solid #6f8ff0; outline-offset: 2px; border-radius: 4px; }
[hidden] { display: none !important; }

h1, h2, h3, .h3, .h4 {
  font-stretch: 112%;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5.2vw, 3.25rem); font-weight: 780; letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 740; letter-spacing: -.005em; }
h3, .h3 { font-size: 1.2rem; font-weight: 700; }
.h4 { font-size: 1.02rem; font-weight: 700; }
p { margin: 0; }
.lead { font-size: 1.15rem; color: var(--ink-2); max-width: 60ch; }
.eyebrow {
  font-size: .8rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); font-stretch: 110%;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(48px, 7vw, 88px) 0; display: grid; gap: 24px; }
.section-head { display: grid; gap: 8px; max-width: 62ch; }
.section-head p { color: var(--ink-2); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 8px 14px; z-index: 100; border-radius: 6px; }
.skip:focus { left: 8px; }
.ico { width: 1.25em; height: 1.25em; flex: none; }

/* colunas únicas no celular não podem crescer além da tela (selects com opções longas) */
.hero-grid, .band-grid, .contact-grid, .page-hero-grid, .two-col, .grid-2 { grid-template-columns: minmax(0, 1fr); }
.field, .lead-form, .hero-card { min-width: 0; }

/* ---------- botões ---------- */
.btn {
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  font: inherit; font-weight: 680; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-700); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-700); color: #fff; }
.btn-ghost { background: transparent; color: var(--blue); border-color: var(--blue-100); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-700); }
.btn-light { background: #fff; color: var(--navy); }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: .92rem; }
.btn-block { width: 100%; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 520px) { .actions .btn { flex: 1 1 100%; } }

/* ---------- barra de protótipo ---------- */
.demo-bar { background: #fff4d6; color: #5c4300; font-size: .85rem; padding-block: 8px; border-bottom: 1px solid #f0dca0; }
.demo-bar a { color: inherit; font-weight: 600; }
.demo-row { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; justify-content: space-between; }
.demo-switch { display: flex; align-items: center; gap: 8px; }
.demo-switch a {
  border: 1px solid #d9c07a; border-radius: 999px; padding: 3px 12px; text-decoration: none;
  background: #fffaee; white-space: nowrap;
}
.demo-switch a:hover { background: #fff; }
body:not(.theme-b) .demo-switch .ver-a, body.theme-b .demo-switch .ver-b { background: #5c4300; color: #fff4d6; border-color: #5c4300; }

/* ---------- cabeçalho ---------- */
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-row { display: flex; align-items: center; gap: 16px; min-height: 72px; }
.logo img { width: 164px; height: auto; }
.menu-toggle {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 8px 14px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font: inherit; font-weight: 600; color: var(--navy); cursor: pointer;
}
.menu-icon, .menu-icon::before, .menu-icon::after { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: transform .2s; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-icon::before { top: -6px; } .menu-icon::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { transform: translateY(-6px) rotate(-45deg); }

.nav { display: none; }
.nav.open {
  display: block; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  max-height: calc(100vh - 80px); overflow-y: auto; padding: 8px var(--gutter) 20px;
}
.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-list > li > a, .sub-toggle {
  display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 14px 4px;
  border: 0; border-bottom: 1px solid var(--line); background: none; font: inherit; font-weight: 600; color: var(--navy);
  text-decoration: none; cursor: pointer; text-align: left;
}
.sub-toggle::after { content: ""; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin: -4px 6px 0; transition: transform .2s; }
.sub-toggle[aria-expanded="true"]::after { transform: rotate(-135deg); margin-top: 4px; }
.sub { display: none; padding: 8px 4px 12px; gap: 16px; }
.sub.open { display: grid; }
.sub ul { list-style: none; margin: 0; padding: 0; display: grid; }
.sub a { display: block; padding: 7px 0; text-decoration: none; color: var(--ink); }
.sub a:hover, .sub a[aria-current="page"] { color: var(--blue); }
.sub-title { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.sub-all { margin-top: 10px; }
.sub-all a { color: var(--blue); font-weight: 600; }
.nav-cta { display: grid; gap: 10px; padding-top: 16px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 650; text-decoration: none; color: var(--navy); white-space: nowrap; }

@media (min-width: 1100px) {
  .menu-toggle { display: none; }
  .nav, .nav.open { display: flex; align-items: center; gap: 20px; margin-left: auto; position: static; box-shadow: none; border: 0; padding: 0; max-height: none; overflow: visible; background: none; }
  .nav-list { display: flex; gap: 2px; }
  .nav-list > li { position: relative; }
  .nav-list > li > a, .sub-toggle { border: 0; padding: 10px 10px; font-size: .95rem; width: auto; border-radius: 8px; white-space: nowrap; }
  .nav-list > li > a:hover, .sub-toggle:hover { background: var(--blue-50); color: var(--blue); }
  .sub-toggle::after { margin-left: 8px; }
  .sub, .sub.open {
    display: none; position: absolute; top: calc(100% + 8px); left: -12px; width: 520px;
    grid-template-columns: 1fr 1fr; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: 0 12px 40px rgb(11 22 51 / .14); padding: 20px 22px;
  }
  .sub.open { display: grid; }
  .nav-cta { display: flex; align-items: center; gap: 16px; padding: 0; }
}

/* ---------- breadcrumb ---------- */
.breadcrumb ol { list-style: none; margin: 0; padding: 14px 0 0; display: flex; flex-wrap: wrap; gap: 4px 8px; font-size: .88rem; color: var(--ink-3); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--line); }
.breadcrumb a { color: var(--ink-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); text-decoration: underline; }

/* ---------- home: hero ---------- */
.hero { padding-block: clamp(28px, 5vw, 64px) 0; }
.hero-grid { display: grid; gap: 32px; align-items: start; }
.hero-text { display: grid; gap: 20px; }
.hero h1 { font-size: clamp(2.1rem, 5.6vw, 3.6rem); }
.hero h1 span { color: var(--blue); }
.hero-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(20px, 3vw, 28px); display: grid; gap: 14px;
}
.hero-card h2 { font-size: 1.35rem; }
.hero-card > p { color: var(--ink-2); font-size: .95rem; }
.hero-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 10; max-width: 100%; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 56px; }
}

.proof { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 0; }
.proof div { background: var(--surface); padding: 14px 16px; }
.proof dt { font-size: .82rem; color: var(--ink-3); line-height: 1.3; }
.proof dd { margin: 0; font-weight: 750; font-stretch: 112%; font-size: 1.2rem; color: var(--navy); }
.proof div { display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: 2px; }
@media (min-width: 700px) { .proof { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- sintomas ---------- */
.symptoms, .symptom-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); }
.symptom-links { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.symptoms li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; display: grid; gap: 6px; align-content: start; }
.symptoms h3 { font-size: 1.05rem; }
.symptoms p { color: var(--ink-2); font-size: .96rem; }
.symptom-links a {
  display: grid; gap: 4px; height: 100%; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); text-decoration: none; color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.symptom-links a:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.symptom-links strong { font-size: 1.06rem; color: var(--navy); font-stretch: 108%; }
.symptom-links span { color: var(--ink-2); font-size: .95rem; }
.symptom-links em { font-style: normal; color: var(--blue); font-weight: 650; font-size: .92rem; margin-top: 4px; }

/* ---------- cards de serviço ---------- */
.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); }
.cards-2 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); }
.cards-3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.card-link {
  display: grid; gap: 6px; align-content: start; height: 100%; padding: 18px 20px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.card-link:hover { border-color: var(--blue); box-shadow: var(--shadow); color: var(--ink); }
.card-title { font-weight: 700; font-stretch: 108%; color: var(--navy); font-size: 1.05rem; }
.card-link:hover .card-title { color: var(--blue); }
.card-text { color: var(--ink-2); font-size: .94rem; line-height: 1.5; }
.card-meta { font-size: .8rem; color: var(--ink-3); }
.group-title { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- passos ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; counter-reset: step; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.steps li { counter-increment: step; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: grid; gap: 8px; align-content: start; }
.steps li::before {
  content: counter(step); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue); color: #fff; font-weight: 750; font-size: .95rem;
}
.steps p { color: var(--ink-2); font-size: .95rem; }

/* ---------- marcas ---------- */
.chips, .prose .chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-weight: 600; font-size: .92rem; color: var(--navy); }

/* ---------- avaliações ---------- */
.reviews { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); }
.review { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: grid; gap: 10px; align-content: start; }
.review blockquote { margin: 0; color: var(--ink); font-size: .98rem; }
.review figcaption { font-weight: 700; color: var(--navy); font-size: .92rem; }
.stars { color: var(--star); letter-spacing: 2px; font-size: .95rem; }
.reviews-more { font-weight: 600; }

/* ---------- faixa escura (formulários) ---------- */
.band { background: var(--navy); color: #d9e1f5; margin-top: clamp(48px, 7vw, 88px); padding-block: clamp(40px, 6vw, 72px); }
.band h2 { color: #fff; }
.band a { color: #b9c9ff; }
.band-grid { display: grid; gap: 28px; align-items: start; }
.band-grid > div:first-child { display: grid; gap: 12px; max-width: 46ch; }
.band-alt { font-size: .95rem; }
.band .lead-form { background: var(--surface); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 28px); }
.band .lead-form a { color: var(--blue); }
@media (min-width: 900px) { .band-grid { grid-template-columns: .9fr 1.1fr; gap: 56px; } }

/* ---------- formulários ---------- */
.lead-form { display: grid; gap: 14px; }
.lead-form fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 14px; }
.lead-form legend { font-weight: 750; font-stretch: 110%; color: var(--navy); font-size: 1.1rem; margin-bottom: 4px; padding: 0; }
.grid-2 { display: grid; gap: 14px; }
@media (min-width: 560px) { .grid-2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.field { display: grid; gap: 6px; align-content: start; }
.field label, .field .label { font-weight: 620; font-size: .93rem; color: var(--navy); }
.opt { font-weight: 400; color: var(--ink-3); }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field select, .field textarea {
  width: 100%; max-width: 100%; min-height: 48px; padding: 10px 14px; border: 1px solid #c9d1e3; border-radius: 8px;
  background: #fff; color: var(--ink); font: inherit; font-size: 1rem;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: 3px solid var(--blue-100); outline-offset: 0; }
.field [aria-invalid="true"] { border-color: var(--err); }
.hint { font-size: .84rem; color: var(--ink-3); }
.radios { display: flex; flex-wrap: wrap; gap: 8px 18px; min-height: 48px; align-items: center; }
.radios label { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.radios input, .check input { width: 18px; height: 18px; accent-color: var(--blue); }
.check { grid-template-columns: auto 1fr; align-items: start; gap: 10px; }
.check label { font-weight: 400; font-size: .88rem; color: var(--ink-2); }
.check input { margin-top: 2px; }
.hp { position: absolute; left: -9999px; }
.form-status { font-size: .92rem; }
.form-status:empty { display: none; }
.form-status.error { color: var(--err); }
.form-status.ok { color: var(--ok); }
.form-note { font-size: .84rem; color: var(--ink-3); text-align: center; }

/* ---------- páginas de serviço ---------- */
.page-hero { padding-block: clamp(20px, 4vw, 40px) 0; }
.page-hero-grid { display: grid; gap: 28px; align-items: center; }
.page-hero-text { display: grid; gap: 18px; }
.page-hero-img { margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); aspect-ratio: 4 / 3; max-width: 100%; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) { .page-hero-grid { grid-template-columns: 1fr 440px; gap: 56px; } }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ticks li { display: flex; gap: 10px; align-items: baseline; font-weight: 550; }
.ticks li::before { content: ""; flex: none; width: 16px; height: 9px; border-left: 3px solid var(--wa); border-bottom: 3px solid var(--wa); transform: rotate(-45deg) translateY(-3px); }

.two-col { display: grid; gap: 32px; padding-top: clamp(40px, 6vw, 72px); align-items: start; }
.main-col { display: grid; gap: 40px; min-width: 0; }
@media (min-width: 960px) {
  .two-col { grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; }
  .side-col { position: sticky; top: 100px; }
}
.prose { display: grid; gap: 14px; max-width: 70ch; }
.prose h2 { margin-bottom: 2px; }
.prose h3 { margin-top: 8px; }
.prose p, .prose li { color: #2c3654; }
.prose ul, .prose ol { margin: 0; padding-left: 22px; display: grid; gap: 6px; }
.prose strong { color: var(--navy); }
.prose table { border-collapse: collapse; width: 100%; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: var(--navy); background: var(--blue-50); }
.table-scroll { overflow-x: auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }

.facts-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; display: grid; gap: 14px; }
.facts { margin: 0; display: grid; }
.facts div { display: grid; gap: 2px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.facts div:first-child { padding-top: 0; }
.facts dt { font-size: .8rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; font-weight: 650; }
.facts dd { margin: 0; font-weight: 650; color: var(--navy); }
.facts-note { font-size: .84rem; color: var(--ink-3); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; max-width: 860px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 52px 16px 20px; font-weight: 650; color: var(--navy); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 400; color: var(--blue); }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 20px 18px; color: var(--ink-2); display: grid; gap: 10px; }

/* ---------- contato / mapa ---------- */
.contact-grid { display: grid; gap: 24px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.contact-list, .prose .contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.contact-list li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; display: grid; gap: 2px; }
.contact-list .k { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 650; color: var(--ink-3); }
.contact-list .v { font-weight: 650; color: var(--navy); }
.contact-list address { font-style: normal; font-weight: 600; color: var(--navy); }
.map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--blue-50); aspect-ratio: 4 / 3; max-width: 100%; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-load {
  width: 100%; height: 100%; border: 0; cursor: pointer; font: inherit; color: var(--navy);
  display: grid; place-content: center; justify-items: center; gap: 6px; text-align: center; padding: 24px;
  background:
    linear-gradient(90deg, rgb(0 45 178 / .06) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(rgb(0 45 178 / .06) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--blue-50);
}
.map-load span:not(.btn):not(.map-pin) { color: var(--ink-2); font-size: .95rem; }
.map-load .btn { margin-top: 10px; }
.map-pin { width: 28px; height: 28px; background: var(--blue); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); margin-bottom: 8px; box-shadow: inset 0 0 0 8px var(--blue), inset 0 0 0 14px #fff; }

.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px); }
.center-narrow { max-width: 760px; margin-inline: auto; }
.page-head { padding-block: clamp(24px, 4vw, 40px) 0; display: grid; gap: 14px; }

/* ---------- blog ---------- */
.post { display: grid; gap: 28px; max-width: 820px; padding-top: clamp(20px, 4vw, 40px); }
.post-head { display: grid; gap: 14px; }
.post-img { margin: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 9; max-width: 100%; }
.post-img img { width: 100%; height: 100%; object-fit: cover; }
.post .prose { max-width: none; }
.post-cta { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--radius-lg); padding: 24px; display: grid; gap: 12px; }

/* ---------- mapa do site ---------- */
.sitemap-cols { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.sitemap-cols ul { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 8px; }

/* ---------- CTA final ---------- */
.cta-final { margin-top: clamp(48px, 7vw, 88px); }
.cta-box {
  background: var(--blue); color: #e6ecff; border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 48px);
  display: grid; gap: 18px; justify-items: start;
}
.cta-box h2 { color: #fff; }
.cta-box .btn-ghost { color: #fff; border-color: rgb(255 255 255 / .45); }
.cta-box .btn-ghost:hover { border-color: #fff; color: #fff; }

/* ---------- rodapé ---------- */
.site-footer { background: var(--navy); color: #c3cde6; margin-top: clamp(56px, 8vw, 96px); padding-top: 48px; font-size: .95rem; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.footer-brand { display: grid; gap: 12px; align-content: start; }
.footer-brand img { width: 178px; }
.footer-title { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; font-weight: 700; }
.site-footer address { font-style: normal; margin-bottom: 8px; }
.footer-hours { margin-top: 8px; }
.footer-contacts, .footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-links a { color: #c3cde6; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid var(--navy-800); margin-top: 40px; padding-block: 20px; font-size: .85rem; color: #8d9ac0; }

/* ---------- barra de ações (celular) ---------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  background: var(--surface); border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgb(11 22 51 / .08);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.action-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: var(--bar-h); text-decoration: none; font-weight: 650; font-size: .82rem; color: var(--navy); }
.action-bar a + a { border-left: 1px solid var(--line); }
.action-bar .ab-wa { background: var(--wa); color: #fff; }
.action-bar .ico { width: 22px; height: 22px; }
@media (min-width: 900px) { .action-bar { display: none; } }

/* ---------- consentimento de cookies ---------- */
.consent {
  position: fixed; z-index: 70; left: 12px; right: 12px; bottom: calc(var(--bar-h) + 12px + env(safe-area-inset-bottom, 0px));
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 30px rgb(11 22 51 / .16);
  padding: 14px 16px; display: grid; gap: 10px; font-size: .9rem; max-width: 520px;
}
.consent-actions { display: flex; gap: 8px; justify-content: flex-end; }
@media (min-width: 900px) { .consent { bottom: 20px; left: 20px; right: auto; } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; } }
