:root {
  --navy: #0B1F3A;
  --navy-deep: #071427;
  --navy-soft: #1c3251;
  --gold: #C9971F;
  --gold-soft: #E3B94A;
  --paper: #FFFFFF;
  --paper-alt: #F4F6F9;
  --line: #E4E8EF;
  --ink: #16223B;
  --ink-soft: #55607A;
  --on-navy: #EDEFF3;
  --on-navy-soft: #A9B4C8;
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow-soft: 0 24px 60px -24px rgba(11, 31, 58, 0.25);
  --shadow-card: 0 12px 30px -16px rgba(11, 31, 58, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { max-width: 100%; }
a { color: inherit; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0; color: var(--navy); letter-spacing: -0.01em; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- NAV (clara) ---------- */
.fixed-top-stack { position: fixed; top: 0; left: 0; right: 0; z-index: 200; }
.nav { position: relative; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .3s ease; }
.nav.scrolled { box-shadow: 0 10px 30px -20px rgba(11,31,58,0.25); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { height: 26px; width: auto; }
.nav-links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-size: 14px; font-weight: 600; transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--navy); color: #fff; border: none; border-radius: 999px; padding: 10px 20px; font-weight: 700; font-size: 14px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.nav-cta:hover { background: var(--navy-soft); transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(11,31,58,.45); }
.nav-burger { display: none; background: none; border: none; color: var(--navy); font-size: 24px; cursor: pointer; }
.nav-mobile { display: none; flex-direction: column; gap: 2px; padding: 6px 24px 16px; background: #fff; }
.nav-mobile.open { display: flex; }
.nav-mobile a { text-decoration: none; color: var(--ink-soft); font-size: 15px; font-weight: 600; padding: 10px 0; border-bottom: 1px solid var(--line); }
@media (max-width: 860px) { .nav-links { display: none; } .nav-burger { display: block; } }

/* ---------- HERO (clara, foto real) ---------- */
.hero { position: relative; padding: 112px 0 80px; background: var(--paper-alt); overflow: hidden; }
.hero.hero-page { padding: 102px 0 60px; }
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; }
.hero-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 940px) { .hero-split { grid-template-columns: 1fr; gap: 32px; } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 20px; box-shadow: var(--shadow-card); }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,151,31,0.18); }
.hero h1 { font-size: clamp(30px, 4.2vw, 48px); line-height: 1.12; letter-spacing: -.01em; margin-bottom: 16px; }
.hero h1 .accent { color: var(--gold); }
.hero .lead { font-size: clamp(16px, 1.6vw, 18px); color: var(--ink-soft); line-height: 1.6; margin-bottom: 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.btn { display: inline-flex; align-items: center; gap: 9px; border-radius: 999px; border: none; padding: 15px 26px; font-size: 15.5px; font-weight: 700; cursor: pointer; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-soft); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(11,31,58,.45); }
.btn-ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

.google-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px 16px; box-shadow: var(--shadow-card); text-decoration: none; }
.google-badge .g-icon { width: 22px; height: 22px; flex: none; }
.google-badge b { color: var(--ink); font-size: 15px; }
.google-badge .stars { color: #F2B705; letter-spacing: 1px; font-size: 13px; }
.google-badge span.sub { display: block; font-size: 11.5px; color: var(--ink-soft); }

.hero-media { position: relative; }
.hero-media img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-soft); display: block; }
.hero-media .shape { position: absolute; inset: -16px -16px auto auto; width: 120px; height: 120px; border-radius: 24px; background: var(--gold); z-index: -1; opacity: .18; }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; border-top: 1px solid var(--line); padding-top: 26px; margin-top: 6px; }
.hstat b { display: block; font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 30px); color: var(--navy); letter-spacing: -.01em; }
.hstat span { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
@media (max-width: 760px) { .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 22px; } }

/* ---------- SECTIONS shared ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
#diferenciais .section-head { max-width: 820px; }
#diferenciais .section-head h2 { white-space: nowrap; }
@media (max-width: 640px) { #diferenciais .section-head h2 { white-space: normal; } }
#medicos .section-head { max-width: 820px; }
#medicos .section-head h2 { white-space: nowrap; }
#medicos .section-head h2 .accent { color: var(--gold); }
@media (max-width: 640px) { #medicos .section-head h2 { white-space: normal; } }
.section-head h2 { font-size: clamp(24px, 3vw, 34px); line-height: 1.15; margin-top: 10px; }
.section-head p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin-top: 12px; }
.section-alt { background: var(--paper-alt); }

/* ---------- CARDS (claros) ---------- */
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-card); }
.value-card .v-icon { width: 46px; height: 46px; border-radius: 12px; background: color-mix(in srgb, var(--navy) 8%, transparent); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 14px; }
.value-card b { font-family: var(--font-display); font-size: 18px; display: block; margin-bottom: 8px; color: var(--navy); }
.value-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 0; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 940px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: color-mix(in srgb, var(--gold) 45%, var(--line)); }
.service-icon { width: 44px; height: 44px; border-radius: 12px; background: color-mix(in srgb, var(--navy) 8%, transparent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; }
.service-card h3 { font-size: 17px; font-family: var(--font-body); font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.service-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.service-card .btn { margin-top: 18px; }
.service-card .btn-block { margin-top: auto; padding-top: 18px; }
#servicos-destaque .service-card .btn-block, #servicos-medicos .service-card .btn-block { background: none; border: none; box-shadow: none; padding: 18px 0 0; width: auto; justify-content: flex-start; color: var(--gold); font-size: 13.5px; }
#servicos-destaque .service-card .btn-block:hover, #servicos-medicos .service-card .btn-block:hover { color: var(--gold-soft); text-decoration: underline; transform: none; }

.dif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .dif-grid { grid-template-columns: 1fr; } }

/* ---------- SPLIT (texto + mídia, alternado) ---------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-grid.video-side { grid-template-columns: 1.4fr 0.6fr; }
@media (max-width: 900px) { .split-grid.video-side { grid-template-columns: 1fr; } }
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
@media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; } .split-grid.reverse > * { direction: ltr; } }
.lead-text { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin-top: 16px; }
.values-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { background: color-mix(in srgb, var(--gold) 12%, #fff); border: 1px solid color-mix(in srgb, var(--gold) 35%, var(--line)); color: var(--navy); font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-card); }
.info-card .row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; gap: 12px; }
.info-card .row:last-child { border-bottom: none; }
.info-card .row span:first-child { color: var(--ink-soft); }
.info-card .row span:last-child { font-weight: 700; color: var(--navy); text-align: right; }

.photo-frame { position: relative; }
.photo-frame img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft); display: block; }
.photo-frame .shape { position: absolute; inset: auto auto -14px -14px; width: 100px; height: 100px; border-radius: 18px; background: var(--gold); opacity: .16; z-index: -1; }

.quote-block { margin: 22px 0 0; padding: 20px 24px; border-left: 3px solid var(--gold); background: var(--paper-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.quote-block p { font-family: var(--font-display); font-size: 18px; font-style: italic; color: var(--navy); line-height: 1.4; margin: 0; }
.quote-block cite { display: block; margin-top: 10px; font-size: 13.5px; font-style: normal; font-weight: 700; color: var(--ink-soft); }

#quem-cuida .split-grid { align-items: stretch; }
#quem-cuida .photo-frame { display: flex; }
#quem-cuida .photo-frame img { height: 100%; object-fit: cover; }
@media (max-width: 900px) { #quem-cuida .photo-frame img { height: auto; max-height: 420px; } }

#valores .section-head { max-width: 780px; }
#valores .section-head h2 { white-space: nowrap; }
@media (max-width: 640px) { #valores .section-head h2 { white-space: normal; } }

.video-wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); background: var(--navy); }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- TESTIMONIALS ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-card); }
.testi-card .stars { color: #F2B705; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { font-size: 14.5px; color: var(--ink); line-height: 1.6; margin: 0 0 14px; }
.testi-name { font-weight: 700; font-size: 13.5px; color: var(--ink-soft); }

/* ---------- WIDGET / CHAT (assistente) ---------- */
.widget-section { background: var(--paper-alt); }
.widget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 940px) { .widget-grid { grid-template-columns: 1fr; gap: 32px; } }
.widget-copy h2 { font-size: clamp(24px, 3vw, 34px); margin-top: 10px; line-height: 1.18; }
.widget-copy p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin-top: 14px; max-width: 460px; }
.widget-features { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.widget-features li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); font-size: 14.5px; }
.widget-features svg { flex: none; margin-top: 2px; stroke: var(--gold); }

.chat-card { background: #fff; border-radius: 22px; box-shadow: var(--shadow-soft); overflow: hidden; display: flex; flex-direction: column; height: 540px; max-height: 74vh; border: 1px solid var(--line); }
.chat-head { background: var(--navy); color: var(--on-navy); padding: 16px 20px; display: flex; align-items: center; gap: 12px; flex: none; }
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--navy-deep); font-weight: 800; font-family: var(--font-display); flex: none; }
.chat-head-info b { display: block; font-size: 14.5px; }
.chat-head-info span { font-size: 12px; color: var(--on-navy-soft); display: flex; align-items: center; gap: 6px; }
.chat-head-info .live-dot { width: 7px; height: 7px; border-radius: 50%; background: #3ED598; display: inline-block; }
.chat-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; background: #fff; }
.bubble { max-width: 84%; padding: 12px 16px; border-radius: 16px; font-size: 14.5px; line-height: 1.5; animation: pop .28s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(6px) scale(.98); } to { opacity: 1; transform: none; } }
.bubble.bot { background: var(--paper-alt); color: var(--ink); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble.user { background: var(--navy); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.typing { align-self: flex-start; display: flex; gap: 4px; padding: 14px 16px; background: var(--paper-alt); border: 1px solid var(--line); border-radius: 16px; border-bottom-left-radius: 4px; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-soft); opacity: .5; animation: blink 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 80%, 100% { opacity: .3; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }
.chat-options { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 20px; border-top: 1px solid var(--line); background: #fff; flex: none; }
.chat-option { border: 1.5px solid var(--line); background: var(--paper-alt); color: var(--ink); border-radius: 999px; padding: 9px 15px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .15s ease; }
.chat-option:hover { border-color: var(--gold); background: color-mix(in srgb, var(--gold) 10%, #fff); transform: translateY(-1px); }
.chat-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chat-cta { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; border: none; border-radius: 999px; padding: 10px 18px; font-weight: 700; font-size: 13.5px; cursor: pointer; text-decoration: none; }
.chat-restart { background: none; border: 1px solid var(--line); color: var(--ink-soft); border-radius: 999px; padding: 10px 16px; font-size: 13.5px; font-weight: 600; cursor: pointer; }

/* ---------- BLOG POST ---------- */
.post-header { padding: 148px 0 40px; background: var(--paper-alt); border-bottom: 1px solid var(--line); }
.post-header .wrap { max-width: 800px; }
.post-breadcrumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; }
.post-breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.post-breadcrumb a:hover { color: var(--navy); }
.post-header h1 { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: clamp(26px, 4vw, 40px); line-height: 1.22; margin-top: 10px; }
.post-meta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; color: var(--ink-soft); font-size: 13.5px; margin-top: 18px; }

.post-body-section { padding: 56px 0 84px; }
.post-body-section .wrap { max-width: 780px; }
.post-content { font-size: 17px; line-height: 1.75; color: var(--ink); }
.post-content h2 { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: clamp(21px, 2.6vw, 27px); line-height: 1.3; margin: 44px 0 16px; }
.post-content h3 { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 19px; line-height: 1.3; margin: 32px 0 12px; }
.post-content p { margin: 0 0 20px; }
.post-content ul, .post-content ol { margin: 0 0 20px; padding-left: 22px; }
.post-content li { margin-bottom: 8px; }
.post-content strong { color: var(--navy); font-weight: 700; }
.post-content a { color: var(--gold); font-weight: 600; text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--gold) 40%, transparent); }
.post-content a:hover { color: var(--gold-soft); }
.post-content blockquote { margin: 28px 0; padding: 18px 24px; border-left: 3px solid var(--gold); background: var(--paper-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink-soft); font-style: italic; }
.post-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; display: block; overflow-x: auto; }
.post-content th, .post-content td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.post-content th { background: var(--paper-alt); color: var(--navy); font-weight: 700; }
.post-content img { border-radius: var(--radius-sm); margin: 24px 0; display: block; }
.post-content hr { border: none; border-top: 1px solid var(--line); margin: 32px 0; }
@media (max-width: 640px) { .post-header { padding: 120px 0 32px; } }

/* ---------- FINAL CTA ---------- */
.final-cta { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); border-radius: 28px; padding: 56px 48px; text-align: center; color: var(--on-navy); }
.final-cta h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.final-cta p { color: var(--on-navy-soft); font-size: 16px; max-width: 560px; margin: 0 auto 26px; }
.final-cta .hero-actions { justify-content: center; margin-bottom: 0; }
.final-cta .btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.24); }
@media (max-width: 700px) { .final-cta { padding: 40px 26px; } }

.final-cta.with-bg-photo { background-size: cover; background-position: center; background-repeat: no-repeat; }

.final-cta.with-photo { text-align: left; padding: 0; overflow: hidden; }
.final-cta-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.final-cta-copy { padding: 56px 48px; }
.final-cta.with-photo .final-cta p { margin-left: 0; }
.final-cta.with-photo .hero-actions { justify-content: flex-start; }
.final-cta-media { align-self: stretch; min-height: 320px; }
.final-cta-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 800px) { .final-cta-grid { grid-template-columns: 1fr; } .final-cta-media { min-height: 220px; } .final-cta-copy { padding: 40px 26px; } .final-cta.with-photo .final-cta p { margin: 0; } }

/* ---------- FORMS (contato / trabalhe) ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-card); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 14.5px; font-family: var(--font-body); background: var(--paper-alt); color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; }
.job-list { display: grid; gap: 14px; margin: 26px 0 0; }
.job-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; box-shadow: var(--shadow-card); }
.job-card b { font-size: 15px; color: var(--navy); }
.job-tag { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #8A6400; background: color-mix(in srgb, var(--gold) 18%, #fff); padding: 5px 10px; border-radius: 999px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- FOOTER ---------- */
footer { background: var(--navy-deep); color: var(--on-navy-soft); padding: 60px 0 26px; }
footer .flogo { display: flex; justify-content: flex-start; text-align: left; }
footer .flogo svg { height: 24px; width: auto; display: block; }
footer .flogo svg path { fill: #A9B4C8 !important; }
footer p { font-size: 13.5px; line-height: 1.6; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 940px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.foot-help { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 20px; }
.foot-help p { margin: 6px 0 16px; }
.foot-help .btn-primary { background: transparent; color: var(--gold-soft); border: 1.5px solid rgba(227,185,74,.4); box-shadow: none; width: auto; display: inline-flex; padding: 8px 16px; font-size: 12.5px; font-weight: 600; white-space: nowrap; }
.foot-help .btn-primary:hover { background: rgba(227,185,74,.08); transform: none; box-shadow: none; }

.video-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; }
.video-modal.open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(7,10,18,.88); }
.video-modal-box { position: relative; width: 100%; max-width: 900px; aspect-ratio: 16 / 9; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); }
.video-modal-frame, .video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-close { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.55); color: #fff; border: none; font-size: 20px; line-height: 1; cursor: pointer; z-index: 2; transition: background .2s ease; }
.video-modal-close:hover { background: rgba(0,0,0,.75); }
footer h4 { font-family: var(--font-body); color: #fff; font-size: 14px; margin: 0 0 16px; }
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
footer ul a { text-decoration: none; font-size: 13.5px; color: var(--on-navy-soft); transition: color .2s ease; }
footer ul a:hover { color: var(--gold-soft); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; flex-wrap: wrap; gap: 14px; font-size: 12.5px; text-align: left; }
.foot-bottom .foot-credit { text-align: right; }
.foot-bottom .foot-credit a { color: var(--gold-soft); text-decoration: none; font-weight: 600; }
.foot-bottom .foot-credit a:hover { text-decoration: underline; }
.foot-social { display: flex; gap: 10px; margin-top: 16px; }
.foot-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--on-navy-soft); transition: background .2s ease; }
.foot-social a svg { width: 16px; height: 16px; fill: var(--on-navy-soft); transition: fill .2s ease; }
.foot-social a:hover { background: rgba(255,255,255,.14); }
.foot-social a:hover svg { fill: #fff; }

.fab { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px -8px rgba(0,0,0,.4); z-index: 150; text-decoration: none; transition: transform .2s ease; }
.fab:hover { transform: scale(1.08); }

/* ---------- BANNER ROTATIVO (hero da Home) ---------- */
.banner-hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; background: var(--navy-deep); }
.banner-hero.hero-page-mode { min-height: 420px; }
.banner-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; }
.banner-slide.active { opacity: 1; }
.banner-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,39,.55), rgba(7,20,39,.82)); }
.banner-content { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; padding: 60px 24px 70px; text-align: center; color: #fff; }
.banner-content .hero-badge { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: var(--gold-soft); margin-left: auto; margin-right: auto; box-shadow: none; }
.banner-content h1 { color: #fff; font-size: clamp(28px, 4.4vw, 46px); line-height: 1.16; margin-bottom: 16px; }
.banner-content h1 .accent { color: var(--gold-soft); }
.banner-content .lead { color: rgba(255,255,255,.82); max-width: 620px; margin-left: auto; margin-right: auto; }
.banner-content .hero-actions { justify-content: center; }
.banner-content .google-badge { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); backdrop-filter: blur(6px); margin: 0 auto 26px; }
.banner-content .google-badge b, .banner-content .google-badge .sub { color: #fff; }
.banner-content .hero-stats { border-top-color: rgba(255,255,255,.16); max-width: 640px; margin-left: auto; margin-right: auto; }
.banner-content .hero-stats b { color: #fff; }
.banner-content .hero-stats span { color: rgba(255,255,255,.68); }
.banner-dots { position: absolute; bottom: 22px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.banner-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; padding: 0; transition: background .2s ease, transform .2s ease; }
.banner-dot.active { background: var(--gold); transform: scale(1.2); }

/* ---------- grids parelhas (evitar linha orfa) ---------- */
.services-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .services-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid.cols-4 { grid-template-columns: 1fr; } }

/* ---------- soluções com vídeo individual (padrão real do site oficial) ---------- */
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 940px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .solutions-grid { grid-template-columns: 1fr; } }
.solution-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.solution-card .solution-body { padding: 22px 22px 8px; }
.solution-card h3 { font-size: 16.5px; font-family: var(--font-body); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.solution-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 16px; }
.solution-card .video-poster { border-radius: 0; margin: 0; box-shadow: none; }
.solution-card .solution-cta { margin: 16px 22px 22px; }

/* ---------- lista de serviços extras (chips) ---------- */
.chip-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.chip-item { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px 10px 12px; box-shadow: var(--shadow-card); }
.chip-item .ci-icon { width: 30px; height: 30px; border-radius: 50%; background: color-mix(in srgb, var(--navy) 8%, transparent); display: flex; align-items: center; justify-content: center; font-size: 14px; flex: none; }
.chip-item span { font-size: 13.5px; font-weight: 600; color: var(--navy); }

/* ---------- video com poster + play (padrão do site oficial, vídeo vertical 9:16) ---------- */
.video-poster { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 9 / 16; background: var(--navy); cursor: pointer; max-width: 300px; margin: 0 auto; }
.video-poster.ratio-16-9 { aspect-ratio: 16 / 9; max-width: none; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.video-poster:hover img { transform: scale(1.03); }
.video-poster .play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-poster .play-btn span { width: 68px; height: 68px; border-radius: 50%; background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -8px rgba(0,0,0,.5); transition: transform .2s ease; }
.video-poster:hover .play-btn span { transform: scale(1.08); }
.video-poster .play-btn svg { margin-left: 4px; }
.video-poster iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- depoimentos estilo Google Meu Negócio ---------- */
.g-testi-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 40px; }
.testi-grid.g-style { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .testi-grid.g-style { grid-template-columns: 1fr; } }
.g-testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-card); }
.g-testi-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.g-testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 16px; flex: none; }
.g-testi-name { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.g-testi-stars { color: #F2B705; font-size: 13px; letter-spacing: 1px; display: flex; align-items: center; gap: 6px; }
.g-testi-card p { font-size: 14.5px; color: var(--ink); line-height: 1.6; margin: 0; }

/* ---------- CONTROLPAX CAST ---------- */
.cast-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .cast-grid { grid-template-columns: 1fr; } }
.cast-video { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); background: var(--navy); }
.cast-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.cast-cta { margin-top: 30px; text-align: center; }

/* ---------- BLOG (teaser + página) ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; box-shadow: var(--shadow-card); transition: transform .22s ease, box-shadow .22s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.blog-card .blog-card-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; background: var(--paper-alt); }
.blog-card .blog-card-body { padding: 22px 22px 24px; }
.blog-card h3 { font-size: 16.5px; font-family: var(--font-body); font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.blog-card span.read-more { font-size: 13px; font-weight: 700; color: var(--gold); }
.blog-cta { margin-top: 30px; text-align: center; }
.blog-grid.blog-grid-all { grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 940px) { .blog-grid.blog-grid-all { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid.blog-grid-all { grid-template-columns: 1fr; } }

/* ---------- FAQ (accordion) ---------- */
.faq-list { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--paper-alt); border-radius: 16px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; color: var(--navy); font-size: 15px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; background: #fff; transition: transform .25s ease; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }
