/* ============================================================
   SOS Visão — Design System
   Tokens e componentes derivados de "Designer System SOS Visão"
   ============================================================ */

/* 1. Tokens ------------------------------------------------- */
:root {
  --color-brand-primary: #8B1A2E;
  --color-brand-primary-dark: #6E1424;
  --color-brand-gray: #4A4A4A;
  --color-bg-primary: #FFFFFF;
  --color-bg-alt: #F7F8FA;
  --color-bg-brand: #FDF1F3;
  --color-text-primary: #2D2D2D;
  --color-text-secondary: #6B7280;
  --color-text-muted: #9CA3AF;
  --color-success: #16A34A;
  --color-star: #FBBF24;
  --color-border: #E5E7EB;

  --font-heading: 'Nunito', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --space-8: 8px;   --space-16: 16px; --space-24: 24px;
  --space-40: 40px; --space-64: 64px; --space-96: 96px;

  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px; --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --shadow-brand: 0 4px 20px rgba(139,26,46,.20);

  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --nav-h: 76px;
}

/* 2. Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
.icon { stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.icon--fill { fill: currentColor; stroke: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--color-brand-primary); outline-offset: 3px; border-radius: 4px; }

/* 3. Tipografia --------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-text-primary); line-height: 1.15; letter-spacing: -.01em; }
.h1 { font-weight: 800; font-size: clamp(2rem, 5.2vw, 3.15rem); line-height: 1.1; }
.h2 { font-weight: 800; font-size: clamp(1.6rem, 3.6vw, 2.25rem); line-height: 1.18; }
.h3 { font-weight: 700; font-size: 1.3rem; line-height: 1.3; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--color-text-secondary); line-height: 1.7; }
.muted { color: var(--color-text-secondary); }
.brand-text { color: var(--color-brand-primary); }

.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .75rem;
  text-transform: uppercase; letter-spacing: 2px; color: var(--color-brand-primary);
}
.label::before { content: ""; width: 26px; height: 2px; background: var(--color-brand-primary); border-radius: 2px; }
.label.is-center::before { display: none; }

/* 4. Layout ------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 8vw, 96px); }
.section--alt { background: var(--color-bg-alt); }
.section--brand { background: var(--color-bg-brand); }
.section__head { max-width: 680px; margin-bottom: 48px; }
.section__head.is-center { margin-inline: auto; text-align: center; }
.section__head .lead { margin-top: 16px; }
.section__head .h2 { margin-top: 14px; }

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* 5. Botões ------------------------------------------------- */
.btn {
  --btn-h: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--btn-h); padding-inline: 26px;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  border-radius: var(--radius-md); white-space: nowrap;
  transition: background .22s var(--ease), color .22s var(--ease),
              box-shadow .28s var(--ease), transform .12s var(--ease);
  position: relative;
}
.btn:active { transform: translateY(1px) scale(.995); }
.btn .icon { width: 20px; height: 20px; flex: none; }

.btn--primary { background: var(--color-brand-primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-brand-primary-dark); box-shadow: var(--shadow-brand); }
.btn--secondary { background: transparent; color: var(--color-brand-primary); box-shadow: inset 0 0 0 2px var(--color-brand-primary); }
.btn--secondary:hover { background: var(--color-bg-brand); }
.btn--ghost { color: var(--color-text-secondary); padding-inline: 12px; }
.btn--ghost:hover { color: var(--color-brand-primary); }
.btn--lg { --btn-h: 58px; padding-inline: 32px; font-size: 1.06rem; }
.btn--sm { --btn-h: 44px; font-size: .95rem; }
.btn--block { display: flex; width: 100%; }

/* progress / feedback state */
.btn.is-loading { pointer-events: none; color: transparent !important; }
.btn.is-loading .icon { opacity: 0; }
.btn.is-loading::after {
  content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.45); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
.btn--secondary.is-loading::after, .btn--ghost.is-loading::after { border-color: rgba(139,26,46,.35); border-top-color: var(--color-brand-primary); }
@keyframes spin { to { transform: rotate(360deg); } }

/* 6. Header / Nav ------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 60; height: var(--nav-h);
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.header.is-scrolled { border-color: var(--color-border); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-weight: 500; color: var(--color-text-secondary); font-size: .96rem; transition: color .2s; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--color-brand-primary); border-radius: 2px; transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--color-text-primary); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: var(--radius-md); align-items: center; justify-content: center; color: var(--color-brand-gray); }
.nav__toggle:hover { background: var(--color-bg-alt); }
.nav__toggle .icon { width: 26px; height: 26px; }
.nav__toggle .icon-close { display: none; }
body.menu-open .nav__toggle .icon-menu { display: none; }
body.menu-open .nav__toggle .icon-close { display: block; }

/* Mobile drawer */
.nav__drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 55;
  background: #fff; border-bottom: 1px solid var(--color-border);
  padding: 20px 24px 28px; box-shadow: var(--shadow-lg);
  display: grid; gap: 6px;
  transform: translateY(-14px); opacity: 0; pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
body.menu-open .nav__drawer { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav__drawer a { padding: 14px 8px; font-weight: 600; color: var(--color-text-primary); border-radius: var(--radius-sm); border-bottom: 1px solid var(--color-border); }
.nav__drawer a:last-of-type { border-bottom: none; }
.nav__drawer .btn { margin-top: 14px; }

/* 7. Hero --------------------------------------------------- */
.hero { position: relative; padding-block: clamp(48px, 7vw, 90px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 520px at 82% -8%, var(--color-bg-brand) 0%, transparent 62%),
    linear-gradient(180deg, #fff 0%, var(--color-bg-alt) 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__eyebrow { margin-bottom: 20px; }
.hero__title { margin-bottom: 20px; }
.hero__sub { max-width: 34ch; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__proof { display: flex; align-items: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars span {
  width: 40px; height: 40px; border-radius: 50%; margin-left: -12px;
  border: 2px solid #fff; background: var(--color-bg-brand); color: var(--color-brand-primary);
  display: grid; place-items: center; font-family: var(--font-heading); font-weight: 800; font-size: .9rem;
  box-shadow: var(--shadow-sm);
}
.avatars span:first-child { margin-left: 0; }
.hero__proof-text { font-size: .92rem; color: var(--color-text-secondary); }
.hero__proof-text strong { color: var(--color-text-primary); font-weight: 700; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px;
  background: #fff; border: 1px solid var(--color-border); border-radius: 999px;
  font-size: .82rem; font-weight: 500; color: var(--color-text-secondary); box-shadow: var(--shadow-sm);
}
.pill .icon { width: 16px; height: 16px; color: var(--color-success); }

/* Hero signature — carta de acuidade (Snellen) */
.acuity {
  position: relative; background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 30px clamp(20px, 3vw, 40px) 26px; text-align: center; overflow: hidden;
}
.acuity__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.acuity__dot { display: flex; gap: 6px; }
.acuity__dot i { width: 9px; height: 9px; border-radius: 50%; background: var(--color-border); }
.acuity__dot i:first-child { background: var(--color-brand-primary); }
.acuity__tag { font-size: .72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-text-muted); }
.acuity__chart { font-family: var(--font-heading); font-weight: 800; color: var(--color-brand-gray); line-height: 1.34; }
.acuity__chart span { display: block; }
.acuity__chart .r1 { font-size: 2.6rem; letter-spacing: .3em; }
.acuity__chart .r2 { font-size: 1.9rem; letter-spacing: .28em; }
.acuity__chart .r3 { font-size: 1.35rem; letter-spacing: .26em; }
.acuity__chart .r4 { font-size: .95rem; letter-spacing: .24em; }
.acuity__chart .r5 { font-size: .68rem; letter-spacing: .22em; color: var(--color-text-secondary); }
.acuity__chart .blurred { filter: blur(4px); opacity: .55; transition: filter .9s var(--ease) .25s, opacity .9s var(--ease) .25s; }
.acuity.revealed .acuity__chart .blurred { filter: blur(0); opacity: 1; }
.acuity__foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .86rem; color: var(--color-text-secondary); }
.acuity__foot .icon { width: 18px; height: 18px; color: var(--color-brand-primary); }

/* Fotos (hero + sobre) -------------------------------------- */
.hero__photo { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/2; background: var(--color-bg-alt); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-badge {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  color: var(--color-text-primary); font-family: var(--font-heading); font-weight: 700; font-size: .86rem;
  padding: 9px 15px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.hero__photo-badge .icon { width: 18px; height: 18px; color: var(--color-success); }

.about__photo { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--color-bg-alt); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo-tag {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(255,255,255,.93); backdrop-filter: blur(8px);
  border-radius: var(--radius-md); padding: 12px 16px; box-shadow: var(--shadow-md);
}
.about__photo-tag strong { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: var(--color-text-primary); }
.about__photo-tag span { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 700; color: var(--color-brand-primary); }
.about__photo-tag .icon { width: 18px; height: 18px; }

/* 8. Cards genéricos ---------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 28px; transition: box-shadow .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  height: 100%;
}
.section--alt .card { background: #fff; }
.card:hover { box-shadow: var(--shadow-md); border-color: rgba(139,26,46,.28); transform: translateY(-3px); }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md); display: grid; place-items: center;
  background: var(--color-bg-brand); color: var(--color-brand-primary); margin-bottom: 18px;
}
.card__icon .icon { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--color-text-secondary); font-size: .95rem; }

/* 9. Serviços ----------------------------------------------- */
.service {
  display: flex; flex-direction: column; gap: 16px;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 28px; transition: box-shadow .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.service:hover { box-shadow: var(--shadow-md); border-color: rgba(139,26,46,.28); transform: translateY(-3px); }
.service__head { display: flex; align-items: center; gap: 14px; }
.service .card__icon { margin-bottom: 0; }
.service p { color: var(--color-text-secondary); font-size: .95rem; flex: 1; }
.service__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; font-size: .95rem; color: var(--color-brand-primary); transition: gap .2s var(--ease); }
.service__link .icon { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.service:hover .service__link { gap: 12px; }
.service:hover .service__link .icon { transform: translateX(3px); }

/* 10. Como funciona (passos) -------------------------------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 4px; }
.step__num {
  width: 56px; height: 56px; border-radius: var(--radius-md); display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem;
  background: var(--color-brand-primary); color: #fff; box-shadow: var(--shadow-brand); margin-bottom: 20px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--color-text-secondary); font-size: .96rem; }
.steps.grid--3 { position: relative; }
.steps .step:not(:last-child)::after {
  content: ""; position: absolute; top: 28px; left: 68px; right: -12px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0 8px, transparent 8px 16px);
}

/* 11. Sobre ------------------------------------------------- */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about__media { position: relative; }
.about__card {
  background: linear-gradient(160deg, var(--color-bg-brand), #fff);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 40px 32px; text-align: center;
}
.about__avatar {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px;
  background: #fff; border: 1px solid var(--color-border); display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.about__avatar .icon { width: 56px; height: 56px; color: var(--color-brand-primary); }
.about__card .name { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; }
.about__tag {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; padding: 6px 14px;
  background: #fff; border: 1px solid var(--color-border); border-radius: 999px; font-size: .82rem; font-weight: 600; color: var(--color-brand-primary);
}
.about__tag .icon { width: 16px; height: 16px; }
.about__list { display: grid; gap: 22px; margin-top: 32px; }
.about__list li { display: flex; gap: 16px; }
.about__list .icon-wrap { width: 44px; height: 44px; flex: none; border-radius: var(--radius-md); background: var(--color-bg-brand); color: var(--color-brand-primary); display: grid; place-items: center; }
.about__list .icon-wrap .icon { width: 24px; height: 24px; }
.about__list strong { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; margin-bottom: 2px; }
.about__list p { color: var(--color-text-secondary); font-size: .94rem; }

/* 12. Oferta / Planos --------------------------------------- */
.plans { align-items: stretch; }
.plan {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 32px 28px; position: relative; transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.plan:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.plan--featured { border: 2px solid var(--color-brand-primary); box-shadow: var(--shadow-brand); }
.plan__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--color-brand-primary); color: #fff; font-family: var(--font-heading); font-weight: 700;
  font-size: .74rem; letter-spacing: .5px; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; }
.plan__desc { color: var(--color-text-secondary); font-size: .92rem; margin-top: 6px; min-height: 42px; }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 4px; }
.plan__price b { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--color-text-primary); }
.plan__price span { font-size: .86rem; color: var(--color-text-muted); }
.plan__feats { display: grid; gap: 12px; margin: 22px 0 28px; }
.plan__feats li { display: flex; gap: 10px; font-size: .93rem; color: var(--color-text-secondary); }
.plan__feats .icon { width: 20px; height: 20px; flex: none; color: var(--color-success); }
.plan .btn { margin-top: auto; }

/* 13. Depoimentos ------------------------------------------- */
.reviews-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.rating-badge { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 14px 18px; box-shadow: var(--shadow-sm); }
.rating-badge .score { font-family: var(--font-heading); font-weight: 800; font-size: 1.8rem; line-height: 1; }
.stars { display: inline-flex; gap: 2px; }
.stars .icon { width: 18px; height: 18px; color: var(--color-star); }
.rating-badge small { display: block; color: var(--color-text-muted); font-size: .78rem; margin-top: 4px; }
.review { display: flex; flex-direction: column; gap: 16px; }
.review .stars .icon { width: 20px; height: 20px; }
.review__quote { font-size: 1rem; color: var(--color-text-primary); line-height: 1.7; flex: 1; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__author .ava { width: 44px; height: 44px; border-radius: 50%; background: var(--color-bg-brand); color: var(--color-brand-primary); display: grid; place-items: center; font-family: var(--font-heading); font-weight: 800; }
.review__author b { font-family: var(--font-heading); font-weight: 700; font-size: .96rem; }
.review__author span { display: block; color: var(--color-text-muted); font-size: .82rem; }

/* Coverflow (depoimentos) ----------------------------------- */
.coverflow { width: 100%; }
.coverflow__stage { outline: none; border-radius: var(--radius-lg); }
.coverflow__stage:focus-visible { outline: 3px solid var(--color-brand-primary); outline-offset: 4px; }
.coverflow__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.cf-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 28px; display: flex; flex-direction: column; gap: 16px; }

/* modo carrossel ativo (ligado por JS quando há movimento permitido) */
.coverflow.active .coverflow__stage { perspective: 1500px; overflow: hidden; padding: 26px 0; cursor: grab; touch-action: pan-y; }
.coverflow.active .coverflow__stage.grabbing { cursor: grabbing; }
.coverflow.active .coverflow__track { display: block; position: relative; height: 344px; transform-style: preserve-3d; margin: 0; }
.coverflow.active .cf-card { position: absolute; top: 0; left: 50%; width: clamp(280px, 40vw, 360px); height: 100%; will-change: transform, opacity; user-select: none; }
@media (max-width: 900px) { .coverflow:not(.active) .coverflow__track { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } .coverflow.active .cf-card { width: clamp(258px, 82vw, 340px); } }

.coverflow__nav { display: none; }
.coverflow.active .coverflow__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 10px; }
.cf-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--color-border); background: #fff; color: var(--color-brand-primary); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: background .2s var(--ease), transform .12s var(--ease), box-shadow .2s var(--ease); }
.cf-btn:hover { background: var(--color-bg-brand); box-shadow: var(--shadow-md); }
.cf-btn:active { transform: scale(.94); }
.cf-btn .icon { width: 22px; height: 22px; }
.cf-dots { display: flex; align-items: center; gap: 9px; }
.cf-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--color-border); transition: background .2s var(--ease), transform .2s var(--ease); }
.cf-dot.active { background: var(--color-brand-primary); transform: scale(1.3); }

/* 14. Localização ------------------------------------------- */
.locate { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.info-list { display: grid; gap: 20px; margin-top: 28px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .icon-wrap { width: 48px; height: 48px; flex: none; border-radius: var(--radius-md); background: #fff; border: 1px solid var(--color-border); color: var(--color-brand-primary); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.info-list .icon-wrap .icon { width: 24px; height: 24px; }
.info-list strong { display: block; font-family: var(--font-heading); font-weight: 700; }
.info-list p, .info-list a { color: var(--color-text-secondary); font-size: .95rem; }
.info-list a:hover { color: var(--color-brand-primary); }
.map-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); aspect-ratio: 4/3; background: var(--color-bg-alt); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-cta { display: inline-flex; margin-top: 24px; }

/* 15. FAQ --------------------------------------------------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 22px 4px; font-family: var(--font-heading); font-weight: 700; font-size: 1.06rem; color: var(--color-text-primary); }
.faq__q .icon { width: 24px; height: 24px; flex: none; color: var(--color-brand-primary); transition: transform .3s var(--ease); }
.faq__item.open .faq__q .icon { transform: rotate(180deg); }
.faq__a { overflow: hidden; height: 0; transition: height .32s var(--ease); }
.faq__a-inner { padding: 0 4px 24px; color: var(--color-text-secondary); font-size: .98rem; }

/* 16. CTA final --------------------------------------------- */
.cta-final { text-align: center; }
.cta-final .h2 { max-width: 20ch; margin: 14px auto 16px; }
.cta-final .lead { max-width: 44ch; margin: 0 auto 32px; }
.cta-final__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final__note { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-size: .9rem; color: var(--color-text-secondary); }
.cta-final__note .icon { width: 18px; height: 18px; color: var(--color-success); }

/* 17. Footer ------------------------------------------------ */
.footer { background: #fff; border-top: 1px solid var(--color-border); padding-block: 56px 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__brand img { height: 44px; margin-bottom: 18px; }
.footer__brand p { color: var(--color-text-secondary); font-size: .92rem; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-heading); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-text-muted); margin-bottom: 18px; }
.footer__col li { margin-bottom: 12px; }
.footer__col a { color: var(--color-text-secondary); font-size: .94rem; transition: color .2s; display: inline-flex; align-items: center; gap: 9px; }
.footer__col a:hover { color: var(--color-brand-primary); }
.footer__col .icon { width: 18px; height: 18px; }
.footer__socials { display: flex; gap: 12px; margin-top: 6px; }
.footer__socials a { width: 42px; height: 42px; border-radius: var(--radius-md); border: 1px solid var(--color-border); display: grid; place-items: center; color: var(--color-brand-gray); transition: all .22s var(--ease); }
.footer__socials a:hover { color: #fff; background: var(--color-brand-primary); border-color: var(--color-brand-primary); transform: translateY(-2px); }
.footer__socials .icon { width: 22px; height: 22px; }
.footer__bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--color-border); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom p, .footer__bottom a { font-size: .85rem; color: var(--color-text-muted); }
.footer__bottom a:hover { color: var(--color-brand-primary); }
.footer__legal { display: flex; gap: 20px; }

/* 18. WhatsApp flutuante ------------------------------------ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px 14px 16px;
  background: #25D366; color: #fff; border-radius: 999px; font-family: var(--font-heading); font-weight: 700; font-size: .95rem;
  box-shadow: 0 8px 28px rgba(37,211,102,.42);
  transform: translateY(120%); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease), box-shadow .25s;
}
.wa-float.show { transform: translateY(0); opacity: 1; }
.wa-float:hover { box-shadow: 0 10px 34px rgba(37,211,102,.55); }
.wa-float .icon { width: 26px; height: 26px; }
.wa-float__label { display: inline; }

/* Banner de consentimento de cookies ------------------------ */
.cookie-bar {
  position: fixed; left: 20px; bottom: 20px; z-index: 80;
  max-width: 440px; width: calc(100% - 40px);
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px 22px;
  display: flex; flex-direction: column; gap: 14px;
  transform: translateY(20px); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.cookie-bar.show { transform: translateY(0); opacity: 1; }
.cookie-bar__text { font-size: .9rem; color: var(--color-text-secondary); line-height: 1.6; }
.cookie-bar__text a { color: var(--color-brand-primary); font-weight: 600; }
.cookie-bar__actions { display: flex; gap: 10px; }
.cookie-bar__actions .btn { flex: 1; }
@media (max-width: 560px) { .cookie-bar { left: 12px; right: 12px; bottom: 12px; width: auto; } }
@media (prefers-reduced-motion: reduce) { .cookie-bar { transition: opacity .2s; transform: none; } }

/* 19. Skeleton / lazy media --------------------------------- */
.skeleton { position: relative; overflow: hidden; background: var(--color-bg-alt); }
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  transform: translateX(-100%); animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 100% { transform: translateX(100%); } }
.lazy-img { opacity: 0; transition: opacity .5s var(--ease); }
.lazy-img.loaded { opacity: 1; }

/* 20. Scroll reveal ----------------------------------------- */
/* Só escondemos quando o JS está ativo — sem JS o conteúdo aparece normalmente */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s var(--ease), transform .55s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* 21. Legal pages ------------------------------------------- */
.legal { padding-block: 64px 96px; }
.legal__wrap { max-width: 780px; margin-inline: auto; }
.legal h1 { font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 8px; }
.legal .updated { color: var(--color-text-muted); font-size: .88rem; margin-bottom: 40px; }
.legal h2 { font-weight: 800; font-size: 1.35rem; margin: 40px 0 14px; }
.legal p, .legal li { color: var(--color-text-secondary); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--color-brand-primary); font-weight: 600; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-brand-primary); font-weight: 600; margin-bottom: 32px; }
.back-link .icon { width: 18px; height: 18px; }

/* 22. Responsivo -------------------------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__sub { max-width: none; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__media { order: -1; max-width: 380px; }
  .locate { grid-template-columns: 1fr; gap: 32px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .steps .step:not(:last-child)::after { display: none; }
}
@media (max-width: 760px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .reviews-head { align-items: start; }
  .wa-float__label { display: none; }
  .wa-float { padding: 14px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn--block-mobile { display: flex; width: 100%; }
  .hero__cta .btn { flex: 1; }
}

/* 23. Acessibilidade — movimento reduzido ------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .acuity__chart .blurred { filter: none !important; opacity: 1 !important; }
  .skeleton::after { animation: none; }
}
