/* ══════════════════════════════════════════════════════════════
   BC RENOVA CLEAN — Folha de estilo (v2 · moderno & sofisticado)
   Vanilla CSS · mobile-first · Sora + Inter
   ══════════════════════════════════════════════════════════════ */

/* ── FONTES SELF-HOSTED (variable · latin + latin-ext) ──────────
   Sora e Inter servidas localmente para eliminar o render-blocking
   do Google Fonts. Um arquivo variável cobre toda a faixa de peso. */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('/assets/fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('/assets/fonts/sora-latext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/inter-latext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --primary:    #1670B8;
  --primary-2:  #2E93E0;
  --secondary:  #0C2E63;
  --navy-2:     #0A1F45;
  --accent:     #34BEDC;
  --bg:         #FFFFFF;
  --text:       #16283A;
  --cta:        #17A24A;
  --cta-2:      #23C15E;
  --cta-hover:  #128A3E;
  --text-muted: #55677A;
  --surface:    #F3F8FC;
  --surface-2:  #EAF3FA;
  --border:     #E4ECF3;
  --star:       #FBB800;

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --sp-xs: 8px;  --sp-sm: 16px; --sp-md: 24px;
  --sp-lg: 32px; --sp-xl: 48px; --sp-2xl: 72px; --sp-3xl: 104px;

  --shadow-sm:   0 2px 8px rgba(12,46,99,.06);
  --shadow-card: 0 18px 44px -18px rgba(12,46,99,.24), 0 6px 14px -8px rgba(12,46,99,.12);
  --shadow-soft: 0 30px 70px -30px rgba(12,46,99,.35);
  --shadow-btn:  0 10px 24px -6px rgba(23,162,74,.5);

  --container: 1180px;
  --header-h: 76px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);

  --z-header: 30;
  --z-float: 40;
  --z-menu: 50;
}

/* ── RESET / BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.65; color: var(--text);
  background: var(--bg); overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Sora', system-ui, sans-serif; line-height: 1.1; margin: 0 0 var(--sp-sm); color: var(--secondary); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.55rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; letter-spacing: -0.01em; }
p  { margin: 0 0 var(--sp-sm); }
a  { color: var(--primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { position: relative; padding: var(--sp-2xl) 0; }
@media (min-width: 768px) { .section { padding: var(--sp-3xl) 0; } .container { padding: 0 28px; } }
.section--surface { background: var(--surface); }
.section--navy { background: var(--secondary); color: #fff; }
.section--navy::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 80% at 85% 0%, rgba(52,190,220,.16), transparent 60%); pointer-events:none; }
.section--primary { background: linear-gradient(120deg, var(--primary) 0%, #1257A0 100%); color: #fff; }
.section--navy h2, .section--primary h2 { color: #fff; }
.text-center { text-align: center; }
.eyebrow { display: inline-flex; align-items:center; gap:8px; font-family: 'Sora',sans-serif; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .75rem; color: var(--primary); margin-bottom: 14px; }
.eyebrow::before { content:""; width:22px; height:2px; background: currentColor; border-radius:2px; }
.section--navy .eyebrow, .section--primary .eyebrow { color: var(--accent); }
.lead { font-size: 1.14rem; color: var(--text-muted); max-width: 60ch; line-height: 1.7; }
.section--navy .lead, .section--primary .lead { color: rgba(255,255,255,.85); }
.section-head { max-width: 720px; margin: 0 auto var(--sp-xl); text-align: center; }
.section-head .eyebrow { justify-content: center; }

/* ── BOTÕES ───────────────────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: -0.01em;
  min-height: 56px; padding: 15px 30px; border-radius: var(--radius-pill);
  border: 0; cursor: pointer; text-align: center; overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: transform 220ms var(--ease-spring), box-shadow 220ms var(--ease), background 220ms var(--ease);
}
.btn__ico { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.22); flex: 0 0 auto; }
.btn--cta { background: linear-gradient(135deg, var(--cta-2) 0%, var(--cta) 55%, var(--cta-hover) 100%); color: #fff; box-shadow: var(--shadow-btn); }
.btn--cta::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%); transform: translateX(-120%); transition: transform 650ms var(--ease); }
.btn--cta:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -8px rgba(23,162,74,.6); }
.btn--cta:hover::after { transform: translateX(120%); }
.btn--cta:active { transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--primary); box-shadow: inset 0 0 0 2px var(--border); }
.btn--outline:hover { box-shadow: inset 0 0 0 2px var(--primary); background: var(--surface); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { min-height: 62px; padding: 18px 36px; font-size: 1.08rem; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
@media (max-width: 560px) { .btn { width: 100%; } .btn--lg { font-size: clamp(.8rem, 4.2vw, 1.08rem); padding: 16px 18px; gap: 8px; } }

/* ── SELO GOOGLE (widget) ─────────────────────────────────── */
.g-review {
  display: inline-flex; align-items: center; gap: 14px; background: #fff; color: var(--text);
  border-radius: var(--radius-md); padding: 12px 20px 12px 16px; box-shadow: var(--shadow-card);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.g-review:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -20px rgba(12,46,99,.4); }
.g-review__logo { width: 34px; height: 34px; flex: 0 0 auto; }
.g-review__divider { width: 1px; align-self: stretch; background: var(--border); margin: 2px 0; }
.g-review__rate { font-family: 'Sora',sans-serif; font-weight: 800; font-size: 1.6rem; line-height: 1; color: #1f2b3a; }
.g-stars { color: var(--star); letter-spacing: 2px; font-size: 1rem; display:block; margin-top: 2px; }
.g-review__sub { display:block; color: var(--text-muted); font-size: .8rem; margin-top: 3px; font-weight: 500; }
.g-review__col { display: flex; flex-direction: column; }

/* ── HEADER ───────────────────────────────────────────────── */
.header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: var(--z-header);
  background: rgba(255,255,255,.72); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: box-shadow 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}
.header.is-scrolled { box-shadow: 0 10px 30px -12px rgba(12,46,99,.18); border-color: var(--border); background: rgba(255,255,255,.9); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header__logo img { height: 48px; width: auto; }
.nav { display: none; }
.nav a { position: relative; color: var(--text); font-weight: 500; font-size: .97rem; padding: 8px 4px; transition: color 200ms var(--ease); }
.nav a::after { content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px; border-radius:2px; background: linear-gradient(90deg,var(--primary),var(--accent)); transition: right 240ms var(--ease); }
.nav a:hover { color: var(--primary); }
.nav a:hover::after { right: 0; }
.header__cta { display: none; }
.header__actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 46px; height: 46px; align-items: center; justify-content: center; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--secondary); border-radius: 2px; transition: transform 220ms var(--ease), opacity 220ms var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: var(--header-h) 0 0 0; z-index: var(--z-menu); background: #fff; transform: translateX(100%); transition: transform 300ms var(--ease); display: flex; flex-direction: column; padding: var(--sp-lg) 24px; gap: 4px; overflow-y: auto; }
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { color: var(--text); font-family: 'Sora',sans-serif; font-weight: 600; font-size: 1.15rem; padding: 15px 8px; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: var(--sp-md); }
@media (min-width: 1000px) { .nav { display: flex; gap: 26px; } .header__cta { display: inline-flex; } .nav-toggle { display: none; } }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; padding: calc(var(--header-h) + var(--sp-2xl)) 0 var(--sp-3xl);
  color: #fff; background: var(--navy-2); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg::before { content:""; position:absolute; inset:0;
  background:
    radial-gradient(50% 60% at 12% 20%, rgba(46,147,224,.55), transparent 60%),
    radial-gradient(45% 55% at 88% 18%, rgba(52,190,220,.42), transparent 62%),
    radial-gradient(60% 70% at 75% 92%, rgba(23,162,74,.28), transparent 60%),
    linear-gradient(135deg, #0A1F45 0%, #0C2E63 55%, #103a7a 100%);
}
.hero__bg::after { content:""; position:absolute; inset:0; opacity:.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); }
.hero__photo { position:absolute; inset:0; background: var(--hero-img,none) center/cover no-repeat; opacity:.16; mix-blend-mode: luminosity; }
.blob { position: absolute; border-radius: 50%; filter: blur(30px); opacity:.5; will-change: transform; }
.blob--1 { width: 360px; height: 360px; top: -80px; right: -60px; background: radial-gradient(circle, rgba(52,190,220,.6), transparent 70%); animation: floaty 14s ease-in-out infinite; }
.blob--2 { width: 300px; height: 300px; bottom: -90px; left: -40px; background: radial-gradient(circle, rgba(35,193,94,.45), transparent 70%); animation: floaty 18s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(20px,-24px) scale(1.08);} }

.hero__grid { position: relative; z-index: 1; display: grid; gap: var(--sp-xl); align-items: center; }
@media (min-width: 980px) { .hero__grid { grid-template-columns: 1.05fr .95fr; } }
.hero__inner { max-width: 640px; }
.hero .pill-tag { display:inline-flex; align-items:center; gap:8px; background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); color:#dbe9fb; font-size:.82rem; font-weight:500; padding:7px 14px; border-radius: var(--radius-pill); margin-bottom: var(--sp-md); }
.hero .pill-tag svg { color: var(--accent); }
.hero h1 { color: #fff; }
.hero h1 .hl { background: linear-gradient(100deg, #34BEDC, #59E0A0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: 1.16rem; color: rgba(255,255,255,.86); margin-bottom: var(--sp-lg); max-width: 54ch; line-height: 1.7; }
.hero__list { display: grid; gap: 13px; margin: 0 0 var(--sp-lg); }
.hero__list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; color: #eaf2fb; }
.hero__list .chk { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: rgba(52,190,220,.18); display: grid; place-items: center; color: var(--accent); margin-top: 1px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* Hero visual — imagem única, limpa e completa */
.hero__visual { position: relative; z-index: 1; display: none; }
@media (min-width: 980px) { .hero__visual { display: block; } }
.hero__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.hero__visual::before { content:""; position:absolute; inset: 22px -22px -22px 22px; z-index:-1; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--accent), var(--primary)); opacity:.22; }

/* ── STATS ────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); text-align: center; }
.stat__num { font-family: 'Sora',sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); color: #fff; line-height: 1; letter-spacing: -0.03em; }
.stat__label { color: rgba(255,255,255,.82); font-size: .95rem; margin-top: 8px; }

/* ── GRID CARDS ───────────────────────────────────────────── */
.grid { display: grid; gap: var(--sp-lg); grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3, .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: transparent; }
.card__imgwrap { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--surface); }
.card__img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--surface); transition: transform 600ms var(--ease); }
.card:hover .card__img { transform: scale(1.07); }
.card__body { padding: var(--sp-lg); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { color: var(--primary); margin: 0; }
.card__body p { color: var(--text-muted); margin: 0; font-size: .96rem; flex: 1; }
.card__body .btn { margin-top: var(--sp-sm); }
.card--featured { background: linear-gradient(150deg, var(--primary) 0%, #12579f 100%); border-color: transparent; box-shadow: var(--shadow-card); }
.card--featured h3, .card--featured p { color: #fff; }
.card--featured p { color: rgba(255,255,255,.9); }
.card__tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,.95); color: var(--primary); font-family:'Sora',sans-serif; font-size:.72rem; font-weight:700; padding: 5px 12px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }

/* ── BENEFÍCIOS ───────────────────────────────────────────── */
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg); }
/* No layout de 2 colunas (mobile/tablet), centraliza o último item quando ele fica órfão */
@media (max-width: 899px) { .benefits .benefit:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: calc(50% - var(--sp-lg) / 2); } }
@media (min-width: 900px) { .benefits { grid-template-columns: repeat(5, 1fr); } }
.benefit { text-align: center; padding: var(--sp-md) 8px; border-radius: var(--radius-md); transition: background 260ms var(--ease), transform 260ms var(--ease); }
.benefit:hover { background: #fff; box-shadow: var(--shadow-card); transform: translateY(-4px); }
.benefit__icon { width: 72px; height: 72px; margin: 0 auto var(--sp-sm); border-radius: 20px; background: linear-gradient(150deg, var(--surface-2), #fff); box-shadow: inset 0 0 0 1px var(--border); display: grid; place-items: center; color: var(--primary); transition: transform 260ms var(--ease-spring); }
.benefit:hover .benefit__icon { transform: translateY(-3px) rotate(-4deg); color: var(--accent); }
.benefit h3 { font-size: 1.05rem; margin-bottom: 6px; }
.benefit p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ── SPLIT ────────────────────────────────────────────────── */
.split { display: grid; gap: var(--sp-xl); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--rev .split__media { order: 2; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; }
.split__media::before { content:""; position:absolute; inset: 20px -20px -20px 20px; z-index:-1; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--accent), var(--primary)); opacity:.18; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); margin-top: var(--sp-lg); }
.pillar { text-align: center; }
.pillar__icon { width:52px; height:52px; margin: 0 auto 8px; border-radius: 15px; background: var(--surface); color: var(--primary); display:grid; place-items:center; }
.pillar strong { display: block; font-family:'Sora',sans-serif; font-size: .92rem; }
.check-list { display: grid; gap: 14px; margin-top: var(--sp-md); }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.check-list .chk { flex:0 0 auto; width:26px; height:26px; border-radius:50%; background: rgba(23,162,74,.12); color: var(--cta); display:grid; place-items:center; }

/* ── ANTES/DEPOIS ─────────────────────────────────────────── */
.ba { position: relative; max-width: 720px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); user-select: none; touch-action: none; }
.ba img { display: block; width: 100%; height: auto; pointer-events: none; }
.ba__after { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba__after img { position: absolute; top: 0; left: 0; height: 100%; width: auto; max-width: none; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); cursor: ew-resize; }
.ba__handle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 46px; height: 46px; transform: translate(-50%,-50%); background: var(--primary); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 6px 16px rgba(0,0,0,.35); }
.ba__tag { position: absolute; bottom: 14px; padding: 5px 14px; border-radius: var(--radius-pill); font-size: .72rem; font-weight: 700; font-family:'Sora',sans-serif; color: #fff; background: rgba(12,46,99,.8); }
.ba__tag--before { left: 14px; } .ba__tag--after { right: 14px; }
.ba__handle::before { content:""; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:20px; height:20px; z-index:1;
  background: no-repeat center/20px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3Cpolyline points='9 18 15 12 9 6' transform='translate(6 0)'/%3E%3C/svg%3E"); }
/* grid de sliders antes/depois */
.ba-grid { display: grid; gap: var(--sp-lg); grid-template-columns: 1fr; }
@media (min-width: 720px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .ba-grid { grid-template-columns: repeat(3, 1fr); } }
.ba-grid .ba { max-width: none; margin: 0; }
/* Modificador para uma única comparação antes/depois centralizada */
.ba-grid--single { grid-template-columns: 1fr !important; max-width: 640px; margin-inline: auto; }
.ba-item { margin: 0; }
.ba__cap { text-align: center; margin-top: 12px; font-family:'Sora',sans-serif; font-weight: 600; font-size: .98rem; color: var(--secondary); }
.section--navy .ba__cap { color: #fff; }
.ba-hint { display:inline-flex; align-items:center; gap:8px; font-size:.9rem; color: var(--text-muted); margin-top: 2px; }
.section--navy .ba-hint { color: rgba(255,255,255,.8); }
.ba-hint svg { color: var(--primary); }
.section--navy .ba-hint svg { color: var(--accent); }

/* ── AVALIAÇÕES ───────────────────────────────────────────── */
.reviews { display: grid; gap: var(--sp-lg); grid-template-columns: 1fr; }
@media (min-width: 860px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { position: relative; background: #fff; color: var(--text); border-radius: var(--radius-md); padding: var(--sp-lg); box-shadow: var(--shadow-card); transition: transform 260ms var(--ease); }
.review:hover { transform: translateY(-6px); }
.review__top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review__avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family:'Sora',sans-serif; font-weight: 700; }
.review__name { font-family:'Sora',sans-serif; font-weight: 600; font-size: .98rem; }
.review__g { position:absolute; top: 18px; right: 18px; width: 22px; height: 22px; }
.review p { color: var(--text-muted); font-size: .95rem; margin: 8px 0 0; }
.review a { font-size: .85rem; font-weight: 600; display:inline-block; margin-top: 10px; }

/* ── MVV ──────────────────────────────────────────────────── */
.mvv { display: grid; gap: var(--sp-lg); grid-template-columns: 1fr; }
@media (min-width: 800px) { .mvv { grid-template-columns: repeat(3,1fr); } }
.mvv__item { text-align: center; padding: var(--sp-lg); border-radius: var(--radius-md); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.mvv__item svg { color: var(--accent); margin-bottom: 12px; }
.mvv__item h3 { color: #fff; }
.mvv__item p { color: rgba(255,255,255,.85); font-size: .95rem; margin: 0; }
/* variante para fundo claro (mesma seção de "Para quem atendemos") */
.mvv--light .mvv__item { background: var(--surface); border-color: var(--border); box-shadow: var(--shadow-sm); }
.mvv--light .mvv__item svg { color: var(--primary); }
.mvv--light .mvv__item h3 { color: var(--secondary); }
.mvv--light .mvv__item p { color: var(--text-muted); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { background:#fff; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; box-shadow: var(--shadow-sm); transition: box-shadow 240ms var(--ease); }
.faq details[open] { box-shadow: var(--shadow-card); }
.faq summary { list-style: none; cursor: pointer; padding: var(--sp-md) var(--sp-lg); font-family:'Sora',sans-serif; font-weight: 600; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--surface); color: var(--primary); display: grid; place-items: center; transition: transform 240ms var(--ease), background 240ms var(--ease); font-size: 1.2rem; line-height: 1; }
.faq details[open] summary .icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq details p { color: var(--text-muted); padding: 0 var(--sp-lg) var(--sp-md); margin: 0; }

/* ── MAPA + CTA ───────────────────────────────────────────── */
.map-cta { display: grid; gap: var(--sp-xl); align-items: center; }
@media (min-width: 900px) { .map-cta { grid-template-columns: 1fr 1fr; } }
.map-embed { border: 0; width: 100%; height: 360px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.nap { display: grid; gap: 14px; margin: var(--sp-md) 0 var(--sp-lg); }
.nap li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.nap .ico { flex:0 0 auto; width:40px; height:40px; border-radius:12px; background: var(--surface); color: var(--primary); display:grid; place-items:center; }

/* ── RODAPÉ ───────────────────────────────────────────────── */
.footer { background: var(--navy-2); color: rgba(255,255,255,.78); padding: var(--sp-2xl) 0 var(--sp-lg); position:relative; overflow:hidden; }
.footer::before { content:""; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity:.5; }
.footer__grid { display: grid; gap: var(--sp-xl); grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer img { height: 46px; margin-bottom: var(--sp-md); }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: var(--sp-md); }
.footer a { color: rgba(255,255,255,.78); transition: color 200ms var(--ease); }
.footer a:hover { color: #fff; }
.footer__links { display: grid; gap: 12px; }
.footer__social { display: flex; gap: 12px; margin-top: var(--sp-md); }
.footer__social a { width: 44px; height: 44px; border-radius: 14px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background 220ms var(--ease), transform 220ms var(--ease); }
.footer__social a:hover { background: var(--cta); transform: translateY(-3px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--sp-xl); padding-top: var(--sp-md); font-size: .85rem; text-align: center; color: rgba(255,255,255,.55); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px 24px; }
@media (max-width: 640px) { .footer__bottom { flex-direction: column; justify-content: center; } }
.footer__credit { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.5); text-decoration: none; }
.footer__credit:hover { color: #fff; }
.footer__credit:hover .footer__credit-logo { opacity: 1; }
.footer .footer__credit-logo { height: 13px; width: auto; margin: 0; display: block; opacity: .82; transition: opacity 200ms var(--ease); }

/* ── WHATSAPP FLUTUANTE ───────────────────────────────────── */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: var(--z-float); width: 62px; height: 62px; border-radius: 50%; background: linear-gradient(135deg,var(--cta-2),var(--cta)); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px -6px rgba(23,162,74,.6); transition: transform 240ms var(--ease-spring); }
.wa-float:hover { transform: scale(1.08) rotate(4deg); }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--cta); z-index: -1; animation: wa-pulse 2.4s ease-out infinite; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .5; } 70%,100% { transform: scale(1.8); opacity: 0; } }

/* ── BREADCRUMB / STEPS / CHIPS ───────────────────────────── */
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: var(--sp-md); }
.breadcrumb a { color: rgba(255,255,255,.9); }
.breadcrumb span { margin: 0 6px; opacity:.6; }

.steps { display: grid; gap: var(--sp-lg); grid-template-columns: 1fr; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4,1fr); } }
.step { text-align: center; padding: var(--sp-lg); background:#fff; border:1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform 260ms var(--ease), box-shadow 260ms var(--ease); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.step__num { width: 56px; height: 56px; margin: 0 auto var(--sp-sm); border-radius: 18px; background: linear-gradient(150deg, var(--primary), var(--accent)); color: #fff; font-family:'Sora',sans-serif; font-weight: 800; font-size: 1.3rem; display: grid; place-items: center; box-shadow: var(--shadow-btn); }
.step h3 { font-size: 1.05rem; }
.step p { color: var(--text-muted); font-size: .92rem; margin: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 9px 18px; font-size: .9rem; font-weight: 500; color: var(--text); box-shadow: var(--shadow-sm); transition: all 220ms var(--ease); }
.chip:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.areas { margin-top: var(--sp-lg); }
.areas__title { font-size: 1.1rem; margin-bottom: var(--sp-sm); }
.areas .chips { justify-content: flex-start; }

/* ── REVEAL ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── A11Y / MOTION ────────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; color: var(--primary); padding: 10px 16px; z-index: 100; border-radius: 8px; }
.skip-link:focus { left: 8px; top: 8px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
