/* =====================================================================
   Espaço Terapêutico Crescer e Aprender
   Design System — paleta da marca: teal + pêssego sobre creme
   ===================================================================== */

:root {
  /* ---- Brand palette ---- */
  --teal:     #4FB0AB;
  --teal-d:   #3C8F8A;
  --teal-dd:  #2E726E;
  --peach:    #EAA87E;
  --peach-d:  #DB9461;
  --peach-dd: #C47C4B;
  --cream:    #FAF5EF;
  --cream-2:  #F3E9DE;

  --ink:      #423D38;
  --ink-soft: #665F57;
  --muted:    #7C7268;
  --line:     #ECE3D7;
  --white:    #FFFFFF;

  /* ---- Semantic ---- */
  --primary:      var(--teal);
  --primary-dark: var(--teal-dd);
  --secondary:    var(--peach);
  --accent:       var(--peach-d);
  --whatsapp:     #25D366;
  --gold:         #F5B638;

  /* ---- Type ---- */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-head: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* ---- Radius & shadow ---- */
  --r-sm: 12px;
  --r:    20px;
  --r-lg: 30px;
  --r-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(70,64,59,.06);
  --shadow:    0 16px 44px rgba(70,64,59,.10);
  --shadow-lg: 0 30px 80px rgba(70,64,59,.16);
  --shadow-3d: 0 18px 40px -12px rgba(62,143,138,.45);

  /* ---- Layout ---- */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(58px, 9vw, 116px);
}

/* ===================== Reset ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0; font-family: var(--font-body); color: var(--ink);
  background: var(--cream); line-height: 1.68; font-size: 17px;
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; }

h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; text-wrap: balance; }
h1, h2 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(2rem, 4.1vw, 3.25rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.1rem, 1.9vw, 1.28rem); letter-spacing: -.01em; line-height: 1.3; }
h4 { font-family: var(--font-head); font-weight: 600; }
p  { margin: 0 0 1rem; color: var(--ink-soft); text-wrap: pretty; }
.lead, .s-head p { text-wrap: balance; }
strong { color: var(--ink); font-weight: 600; }

/* ===================== Layout helpers ===================== */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream-2); }
.section--tint { background: linear-gradient(180deg, #EAF4F3, var(--cream)); }
.section--mint { background: #E8F4F2; }
.section--peach { background: #FBEDE1; }
.section--white { background: #fff; }
.section--ink { background: #3a3631; color: #E7E1D8; }
.section--ink h2 { color: #fff; }
.section--ink .lead { color: #C9C2B8; }
.center { text-align: center; }
.narrow { max-width: 760px; }
.narrow.center { margin-inline: auto; }
.grid { display: grid; gap: clamp(18px, 3vw, 30px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7em; font-family: var(--font-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-dd);
  background: none; border: 0; padding: 0; box-shadow: none; margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--peach); }
.lead { font-size: 1.14rem; color: var(--ink-soft); }

/* two-tone display heading (estilo da marca) */
.display .l1 { display: block; color: var(--ink-soft); font-weight: 500; }
.display .l2 { display: block; color: var(--teal-dd); }
.display em { font-style: italic; color: var(--peach-dd); }

/* ===================== Buttons ===================== */
.btn {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; padding: .9em 1.7em;
  border-radius: var(--r-pill); border: 2px solid transparent; line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s, color .18s, border-color .18s;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn::after {
  content: ""; position: absolute; top: 0; left: 0; width: 38%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: translateX(-220%) skewX(-18deg); pointer-events: none;
}
.btn:hover::after { transform: translateX(420%) skewX(-18deg); transition: transform .85s ease; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 12px 26px rgba(79,176,171,.36); }
.btn--primary:hover { background: var(--teal-d); transform: translateY(-2px); }
.btn--secondary { background: #fff; color: var(--teal-dd); border-color: #EAD9C6; box-shadow: 0 10px 24px rgba(196,124,75,.14); }
.btn--secondary:hover { border-color: var(--peach); color: var(--peach-dd); transform: translateY(-2px); }
.btn--secondary svg { color: var(--peach-dd); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-dd); transform: translateY(-2px); }
.btn--wa { background: var(--whatsapp); color: #fff; box-shadow: 0 12px 26px rgba(37,211,102,.34); }
.btn--wa:hover { filter: brightness(.96); transform: translateY(-2px); }
.btn--lg { font-size: 1rem; padding: .82em 1.5em; }

/* ===================== Scroll progress ===================== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 90;
  background: linear-gradient(90deg, var(--teal), var(--peach)); transition: width .12s linear; }

/* ===================== Header ===================== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250,245,239,.68);
  backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(70,64,59,.07); transition: background .25s, border-color .25s, box-shadow .25s; }
.site-header.is-stuck { background: rgba(250,245,239,.82); border-color: rgba(70,64,59,.1); box-shadow: 0 6px 24px rgba(70,64,59,.07); }
.topbar { background: var(--teal-dd); color: #fff; font-size: .82rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .45rem; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 1.3rem; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: .4rem; color: #fff; }
.topbar svg { width: 15px; height: 15px; opacity: .9; }
.topbar a { opacity: .92; transition: opacity .15s; }
.topbar a:hover { opacity: 1; }
.topbar__right svg { width: 16px; height: 16px; }
@media (max-width: 680px) { .topbar__hide { display: none; } .topbar__in { justify-content: center; } .topbar__left { gap: .8rem; } }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding-block: .6rem; }
.brand { display: flex; align-items: center; }
.brand__logo { height: 50px; width: auto; }
@media (max-width: 960px) { .brand__logo { height: 42px; } }
.nav__links { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--ink-soft); transition: color .15s; position: relative; white-space: nowrap; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--teal); border-radius: 2px; transition: width .22s ease; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--teal-dd); }
.nav__mobcta { display: none; }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: .9rem; }
.nav__phone { display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink); transition: color .15s; }
.nav__phone svg { width: 16px; height: 16px; color: var(--teal); flex: none; }
.nav__phone:hover { color: var(--teal-dd); }
.nav__cta .btn { white-space: nowrap; padding: .68em 1.3em; font-size: .92rem; box-shadow: 0 8px 20px rgba(79,176,171,.28); }
.nav__cta .btn svg { width: 16px; height: 16px; }
@media (max-width: 1240px) { .nav__phone { display: none; } }
.nav__toggle { display: none; background: none; border: 0; padding: 6px; position: relative; z-index: 60; }
.nav__toggle span { display: block; width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: transform .28s ease, opacity .2s ease; }
.nav__scrim { display: none; }
.nav__mobfoot { display: none; }
@media (max-width: 980px) {
  .nav__toggle { display: block; }
  .nav__cta { display: none; }
  body.nav-open { overflow: hidden; }

  /* ---- Menu em tela cheia (abaixo do cabeçalho) ---- */
  .nav__links {
    position: fixed; top: 62px; left: 0; right: 0; z-index: 45;
    height: calc(100vh - 62px); height: calc(100dvh - 62px);
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0;
    text-align: center; overflow-y: auto;
    padding: clamp(20px, 5vh, 44px) var(--gutter) clamp(30px, 7vh, 56px);
    background:
      radial-gradient(140% 60% at 100% 0%, rgba(79,176,171,.12), transparent 60%),
      radial-gradient(120% 55% at 0% 100%, rgba(234,168,126,.14), transparent 60%),
      linear-gradient(180deg, #FBF6F0, #F4EBDF);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .3s ease, transform .4s cubic-bezier(.2,.9,.3,1), visibility .4s;
  }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; transform: none; }

  .nav__links > li { width: 100%; opacity: 0; transform: translateY(10px);
    transition: opacity .4s ease, transform .45s cubic-bezier(.2,.9,.3,1); }
  .nav.is-open .nav__links > li { opacity: 1; transform: none; }
  .nav.is-open .nav__links > li:nth-child(1) { transition-delay: .06s; }
  .nav.is-open .nav__links > li:nth-child(2) { transition-delay: .10s; }
  .nav.is-open .nav__links > li:nth-child(3) { transition-delay: .14s; }
  .nav.is-open .nav__links > li:nth-child(4) { transition-delay: .18s; }
  .nav.is-open .nav__links > li:nth-child(5) { transition-delay: .22s; }
  .nav.is-open .nav__links > li:nth-child(6) { transition-delay: .26s; }

  .nav__links a { display: inline-block; border: 0; padding: .1em 0;
    font-family: var(--font-display); font-weight: 600; letter-spacing: .005em;
    font-size: clamp(1.75rem, 7.6vw, 2.35rem); line-height: 1.7; color: var(--ink); transition: color .15s; }
  .nav__links a::after { display: none; }
  .nav__links a[aria-current="page"] { color: var(--teal-dd); font-style: italic; }

  .nav__mobcta { display: block; margin-top: 1.7rem; }
  .nav__mobcta .btn { display: inline-flex; width: auto; min-width: 250px; justify-content: center;
    font-size: 1rem; padding: .95em 1.9em; box-shadow: 0 14px 30px rgba(79,176,171,.34); }

  .nav__mobfoot { display: flex; flex-direction: column; align-items: center; gap: .35rem;
    margin-top: 1.9rem; padding-top: 1.5rem; border-top: 1px solid rgba(70,64,59,.12); width: min(320px, 100%); }
  .nav__mobfoot-label { font-family: var(--font-head); font-size: .68rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--peach-dd); margin-bottom: .35rem; }
  .nav__mobfoot a { display: inline-flex; align-items: center; gap: .55rem; padding: .3rem .2rem; border: 0;
    font-size: .98rem; color: var(--ink-soft); }
  .nav__mobfoot a b { color: var(--ink); font-weight: 600; font-family: var(--font-head); }
  .nav__mobfoot svg { width: 16px; height: 16px; color: var(--teal-dd); flex: none; }

  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ===================== Hero (home) ===================== */
.hero { --hero-pb: clamp(30px, 4.4vw, 60px); position: relative; overflow: hidden; padding-block: clamp(36px, 5vw, 72px) var(--hero-pb);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 60%, #fff 100%); }
#por-que { position: relative; scroll-margin-top: 84px; }
.scroll-cue { position: absolute; z-index: 8; left: 50%; top: -28px; transform: translateX(-50%);
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: var(--teal-dd);
  background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 26px rgba(70,64,59,.13);
  animation: scrollBounce 1.9s ease-in-out infinite; transition: color .2s, box-shadow .2s, border-color .2s; }
.scroll-cue svg { width: 24px; height: 24px; }
.scroll-cue:hover { color: var(--teal); border-color: var(--teal); box-shadow: 0 12px 30px rgba(70,64,59,.17); }
@keyframes scrollBounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }
@media (max-width: 900px) { .scroll-cue { display: none; } }
.hero::before, .hero::after { content: ""; position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; }
.hero::before { width: 560px; height: 560px; top: -200px; right: -140px; background: radial-gradient(circle at 30% 30%, rgba(79,176,171,.22), transparent 68%); }
.hero::after { width: 520px; height: 520px; bottom: -240px; left: -160px; background: radial-gradient(circle at 50% 50%, rgba(234,168,126,.24), transparent 68%); }
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.18fr 1fr; gap: clamp(20px, 2.6vw, 40px); align-items: center; }
.hero__grid > * { min-width: 0; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }
.hero__badge { display: inline-flex; align-items: center; gap: .5em; background: #E7F3F1; border: 0;
  padding: .5em 1.1em; border-radius: var(--r-pill); font-size: .82rem; font-weight: 600; color: var(--teal-dd);
  margin-bottom: 1.1rem; }
.hero__badge svg { width: 15px; height: 15px; color: var(--peach-d); }
.hero h1 { margin-bottom: .35em; font-size: clamp(2.6rem, 4.7vw, 3.95rem); line-height: 1.08; }
.hero .lead { font-size: .95rem; max-width: 48ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.hero__actions .btn { white-space: nowrap; }
@media (max-width: 420px) { .hero__actions { flex-wrap: wrap; } .hero__actions .btn { width: 100%; justify-content: center; } }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.2rem 1.6rem; margin-top: 1.7rem; }
.hero__trust div { display: flex; flex-direction: column; min-width: 0; }
.hero__trust span { white-space: normal; }
.hero__trust b { font-family: var(--font-display); font-weight: 600; font-size: 1.75rem; color: var(--teal-dd); line-height: 1; font-feature-settings: "lnum" 1; }
.hero__trust span { font-size: .86rem; color: var(--muted); margin-top: .3rem; }

/* tiles flutuantes (usados no hero de Terapias) */
.float-tile { position: absolute; z-index: 3; display: flex; align-items: center; gap: .6rem; background: #fff;
  border-radius: 16px; padding: .7rem .95rem; box-shadow: var(--shadow); font-size: .85rem; font-weight: 600; color: var(--ink);
  animation: floaty 5s ease-in-out infinite; }
.float-tile .ic { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex: none; }
.float-tile .ic svg { width: 19px; height: 19px; }
.float-tile.t1 { top: 8%; left: -6%; } .float-tile.t1 .ic { background: var(--teal); }
.float-tile.t2 { bottom: 16%; right: -8%; animation-delay: -2.5s; } .float-tile.t2 .ic { background: var(--peach); }
.float-tile.t3 { bottom: 4%; left: 6%; animation-delay: -1.2s; } .float-tile.t3 .ic { background: var(--teal); }
@media (max-width: 480px) { .float-tile.t1 { left: 0; } .float-tile.t2 { right: 0; } }

/* hero com recorte (sem moldura) sobre forma orgânica */
.hero__art { position: relative; width: 100%; max-width: 600px; margin: 0 auto; margin-bottom: calc(-1 * var(--hero-pb)); aspect-ratio: auto; align-self: end; }
.hero__cut { position: relative; aspect-ratio: 1/0.86; overflow: hidden; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.hero__cut__blob { position: absolute; z-index: 1; inset: 5% 2% 0 4%;
  background: linear-gradient(155deg, #F2B488, var(--peach-d)); border-radius: 48% 52% 0 0 / 64% 58% 0 0;
  box-shadow: var(--shadow); overflow: hidden; }
.hero__cut__blob::after { content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.22) 2px, transparent 2px); background-size: 24px 24px; }
.hero__cut__ring { position: absolute; z-index: 2; width: 26%; height: 26%; right: 4%; top: 3%;
  border: 2px dashed var(--teal); border-radius: 50%; opacity: .4; animation: spinSlow 30s linear infinite; }
.hero__cut img { position: absolute; z-index: 3; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 98%; height: auto; filter: drop-shadow(0 14px 22px rgba(70,64,59,.18)); }
/* cards como stickers rotacionados */
.fc-card { position: absolute; z-index: 7; background: rgba(255,255,255,.72); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.6); border-radius: 14px; padding: .55rem .8rem; box-shadow: 0 14px 32px rgba(70,64,59,.16);
  display: flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-size: .82rem; font-weight: 600; color: var(--ink);
  transition: transform .25s ease; }
.fc-card .ic { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: var(--teal); flex: none; }
.fc-card .ic svg { width: 17px; height: 17px; }
.fc-google { top: 10%; left: -4%; transform: rotate(-5deg); }
.fc-google:hover { transform: rotate(0); }
.fc-google .stars { color: var(--gold); } .fc-google .stars svg { width: 13px; height: 13px; }
.fc-spec { bottom: 12%; right: -5%; transform: rotate(5deg); } .fc-spec:hover { transform: rotate(0); } .fc-spec .ic { background: var(--teal); }
@media (max-width: 480px) { .fc-google { left: 0; } .fc-spec { right: 0; } }
/* foto do hero das páginas internas */
.page-hero__photo { position: relative; width: 100%; max-width: 520px; margin-inline: auto; }
.page-hero__photo .pf { position: relative; z-index: 2; overflow: hidden; border-radius: var(--r-lg);
  aspect-ratio: 4/3.15; box-shadow: var(--shadow-lg); }
.page-hero__photo .pf img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.page-hero__photo::before { content: ""; position: absolute; z-index: 1; inset: 20px -16px -18px 16px;
  border-radius: var(--r-lg); background: linear-gradient(150deg, var(--peach), var(--teal)); opacity: .85; }
.fc-founders { position: absolute; z-index: 5; bottom: -14px; left: -14px; max-width: 220px; transform: rotate(-3deg); line-height: 1.25; }
.fc-founders:hover { transform: rotate(0); }
.fc-founders .ic { background: var(--peach); }
@media (max-width: 860px) { .page-hero__photo { max-width: 440px; } .fc-founders { left: 0; } }

/* ===================== Galeria (Nosso espaço) ===================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery figure { margin: 0; position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm); }
.gallery figure:nth-child(odd) { transform: translateY(18px); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery figure:hover img { transform: scale(1.07); }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery figure:nth-child(odd) { transform: none; } }

/* ===================== Section heading ===================== */
.s-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.s-head.center { margin-inline: auto; }

/* ===================== Cards ===================== */
.card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.5rem, 2.4vw, 2rem); box-shadow: var(--shadow-sm); height: 100%;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon { width: 58px; height: 58px; border-radius: 17px; display: grid; place-items: center; margin-bottom: 1.1rem;
  color: #fff; transition: transform .22s ease; box-shadow: var(--shadow-3d); }
.card__icon svg { width: 27px; height: 27px; }
.card:hover .card__icon { transform: translateY(-2px) rotate(-4deg) scale(1.06); }
.card__kicker { display: block; font-family: var(--font-head); font-size: .71rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--peach-dd); margin-bottom: .3rem; }
.card h3 { margin-bottom: .4rem; }
.card p { font-size: .96rem; margin-bottom: 0; }
.card__link { display: inline-flex; align-items: center; gap: .35em; margin-top: 1rem; font-family: var(--font-head);
  font-weight: 600; font-size: .92rem; color: var(--teal-dd); }
.card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* icon tile colors (alternando teal/pêssego, como a marca) */
.ic-teal  { background: var(--teal); }
.ic-peach { background: var(--peach); box-shadow: 0 18px 40px -12px rgba(219,148,97,.5); }

/* ===================== Equipe (com foto) ===================== */
.member { text-align: center; padding-top: 0; overflow: hidden; }
.member__photo { position: relative; aspect-ratio: 1/1; border-radius: var(--r) var(--r) 0 0; margin: -2rem -2rem 1.3rem;
  background: linear-gradient(155deg, #EAF4F3, #FBEFE3); display: grid; place-items: center; overflow: hidden; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__photo .ph { display: grid; place-items: center; gap: .4rem; color: var(--teal-d); }
.member__photo .ph svg { width: 56px; height: 56px; }
.member__photo .ph span { font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.member__photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -40px 50px -30px rgba(70,64,59,.15); pointer-events: none; }
.member h3 { margin-bottom: .2rem; }
.member .role { font-size: .9rem; color: var(--peach-dd); font-weight: 600; margin-bottom: .6rem; }
.member p { font-size: .94rem; }

/* ===================== Therapy cards (clicáveis) ===================== */
.tcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.5rem, 2.4vw, 1.9rem); box-shadow: var(--shadow-sm); height: 100%; position: relative; overflow: hidden;
  color: var(--ink); transition: transform .22s ease, box-shadow .22s ease, border-color .22s; }
.tcard::after { content: ""; position: absolute; top: -36px; right: -36px; width: 100px; height: 100px; border-radius: 50%;
  background: var(--cream-2); opacity: 0; transform: scale(.6); transition: opacity .3s ease, transform .35s ease; }
.tcard > * { position: relative; z-index: 1; }
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.tcard:hover::after { opacity: .7; transform: scale(1); }
.tcard .card__icon { margin-bottom: 1rem; transition: transform .22s ease; }
.tcard:hover .card__icon { transform: translateY(-2px) rotate(-4deg) scale(1.06); }
.tcard h3 { margin-bottom: 1rem; }
.tcard__cta { margin-top: auto; display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-head);
  font-weight: 600; font-size: .92rem; color: var(--teal-dd); }
.tcard__arrow { width: 30px; height: 30px; border-radius: 50%; background: #E5F2F0; color: var(--teal-dd);
  display: grid; place-items: center; transition: background .22s ease, color .22s ease, transform .22s ease; }
.tcard__arrow svg { width: 16px; height: 16px; }
.tcard:hover .tcard__arrow { background: var(--teal); color: #fff; transform: translateX(4px); }

/* ===================== Feature cards (Por que) ===================== */
.feat { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.9rem 1.6rem 1.7rem; box-shadow: var(--shadow-sm); height: 100%;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s; }
.feat::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--peach)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feat:hover::after { transform: scaleX(1); }
.feat > * { position: relative; z-index: 1; }
.feat .card__icon { margin-bottom: 1rem; }
.feat h3 { margin-bottom: .4rem; }
.feat p { font-size: .95rem; color: var(--ink-soft); margin: 0; }
.fineprint { font-size: .9rem; color: var(--ink-soft); text-wrap: pretty; }
.card .fineprint { margin: .8rem 0 0; }
.conv-tile { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .9rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.6rem, 2.4vw, 2.2rem); box-shadow: var(--shadow-sm); text-decoration: none; color: var(--ink);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s; }
.conv-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.conv-tile__logo { display: grid; place-items: center; height: 64px; }
.conv-tile__logo img { max-height: 56px; max-width: 78%; object-fit: contain; }
.conv-tile__name { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; }
.media-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s; }
.media-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.media-card__img { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: #EDE5DB; }
.media-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.media-card:hover .media-card__img img { transform: scale(1.05); }
.media-card__body { padding: 1.1rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .5rem; }
.media-card__src { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.media-card h3 { font-size: 1.06rem; line-height: 1.3; margin: 0; text-wrap: balance; }

/* ===================== Steps ===================== */
.step__num { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 1.1rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: #fff; background: var(--teal); box-shadow: var(--shadow-3d);
  border: 4px solid #fff; }
.step:nth-child(even) .step__num { background: var(--peach); }

/* linha do tempo */
.timeline { position: relative; }
.timeline .step { position: relative; z-index: 1; text-align: center; }
.timeline .step__num { margin-inline: auto; }
@media (min-width: 901px) {
  .timeline::before { content: ""; position: absolute; top: 28px; left: 13%; right: 13%; height: 3px; z-index: 0;
    background-image: linear-gradient(90deg, var(--peach-d) 0 55%, transparent 55%); background-size: 16px 3px; opacity: .55; }
}

/* ===================== Units ===================== */
.unit { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm);
  height: 100%; display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, border-color .22s; }
.unit:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.unit__photo { position: relative; height: 210px; overflow: hidden; background: linear-gradient(135deg, #EAF4F3, #FBEFE3); }
.unit__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.unit:hover .unit__photo img { transform: scale(1.06); }
.unit__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(40,40,40,.18)); }
.unit__badge { position: absolute; z-index: 1; top: .9rem; left: .9rem; background: rgba(255,255,255,.95); color: var(--teal-dd);
  font-family: var(--font-head); font-weight: 700; font-size: .76rem; padding: .42rem .85rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: .35rem; }
.unit__badge svg { width: 14px; height: 14px; color: var(--peach-d); }
.unit__body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.unit__tag { font-family: var(--font-head); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--peach-dd); }
.unit__body h3 { margin: -.1rem 0 .35rem; }
.unit__line { display: flex; align-items: flex-start; gap: .55rem; font-size: .93rem; color: var(--ink-soft); margin: 0; }
.unit__line svg { width: 17px; height: 17px; color: var(--teal); flex: none; margin-top: 2px; }
.unit__actions { display: flex; gap: .55rem; margin-top: auto; padding-top: 1rem; }
.unit__actions .btn { flex: 1; justify-content: center; padding-inline: .5rem; font-size: .86rem; }

/* unidades com mapa indexado */
.units-stack { display: flex; flex-direction: column; gap: clamp(1.4rem, 3vw, 2.2rem); }
.unit-full { display: grid; grid-template-columns: 1fr 1.12fr; overflow: hidden; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); transition: box-shadow .22s ease, transform .22s ease; }
.unit-full:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.unit-full__info { display: flex; flex-direction: column; }
.unit-full__photo { position: relative; aspect-ratio: 16/6.4; overflow: hidden; background: linear-gradient(135deg, #EAF4F3, #FBEFE3); }
.unit-full__photo img { width: 100%; height: 100%; object-fit: cover; }
.unit-full__text { display: flex; flex-direction: column; flex: 1; padding: clamp(1.4rem, 2.6vw, 2rem); gap: .6rem; }
.unit-full__text h3 { margin: .1rem 0 .3rem; }
.unit-full__map { position: relative; min-height: 300px; background: #EAF4F3; }
.unit-full__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 820px) {
  .unit-full { grid-template-columns: 1fr; }
  .unit-full__map { min-height: 260px; order: -1; }
  .unit-full__photo { aspect-ratio: 16/7; }
}

/* ===================== Convênios (carrossel infinito) ===================== */
.conv-rail { position: relative; overflow: hidden; padding: .5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.conv-track { display: flex; gap: 1.1rem; width: max-content; animation: convscroll 34s linear infinite; }
.conv-rail:hover .conv-track { animation-play-state: paused; }
.conv-card { flex: none; width: 210px; height: 116px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); display: grid; place-items: center; padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s; }
.conv-card img { max-height: 56px; max-width: 150px; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .68; transition: filter .3s ease, opacity .3s ease, transform .3s ease; }
.conv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.conv-card:hover img { filter: none; opacity: 1; transform: scale(1.05); }
@keyframes convscroll { to { transform: translateX(-50%); } }

/* ===================== Pricing ===================== */
.plan { display: flex; flex-direction: column; padding: 1.7rem 1.4rem; }
.plan.is-featured { border-color: var(--teal); box-shadow: var(--shadow); }
.plan__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap; background: var(--peach);
  color: #4a3422; font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .42em 1.1em; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.plan__price { font-family: var(--font-display); font-weight: 600; font-size: 2.3rem; color: var(--ink); margin: .3rem 0 .1rem; font-feature-settings: "lnum" 1, "tnum" 1; white-space: nowrap; }
.plan .plan__price { font-size: clamp(1.5rem, 2vw, 1.8rem); }
.plan__price small { font-size: .8rem; font-weight: 500; color: var(--muted); font-family: var(--font-head); }
.plan ul { list-style: none; padding: 0; margin: 1.1rem 0 1.4rem; }
.plan li { padding: .5rem 0 .5rem 1.6rem; position: relative; font-size: .9rem; line-height: 1.45; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.plan li svg { position: absolute; left: 0; top: .65rem; width: 15px; height: 15px; color: var(--teal); }
.plan .btn { margin-top: auto; }
.plan__sessions { font-family: var(--font-head); font-weight: 500; font-size: .86rem; color: var(--muted); margin: 0; }
.plan__price[data-empty] { min-height: 1px; }

/* planos: layout mais largo na horizontal */
[data-plan-scope] .container { max-width: 1340px; }

/* calculadora de sessões */
.calc { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(1.5rem, 3vw, 2.6rem); align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm); margin-bottom: clamp(1.9rem, 3vw, 2.8rem); }
.calc__field + .calc__field { margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.calc__field .plan-toggle { margin-top: .8rem; }
.calc__label { display: flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.calc__label svg { width: 19px; height: 19px; color: var(--teal); flex: none; }
.calc__count { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--muted); margin: .7rem 0 1.1rem; }
.calc__count strong { font-weight: 700; color: var(--teal-dd); font-size: 1.5em; margin-right: .1em; }
.calc__range { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; outline: none; cursor: pointer;
  background: linear-gradient(90deg, var(--teal) 0 var(--fill, 37%), var(--line) var(--fill, 37%) 100%); }
.calc__range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 5px solid var(--teal); box-shadow: var(--shadow-sm); cursor: pointer; transition: transform .15s; }
.calc__range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.calc__range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 5px solid var(--teal); box-shadow: var(--shadow-sm); cursor: pointer; }
.calc__scale { display: flex; justify-content: space-between; margin-top: .6rem; font-size: .78rem; color: var(--muted); }
.calc__result { text-align: center; background: linear-gradient(160deg, #EAF4F3, #fff 80%); border: 1px solid var(--line); border-radius: 18px; padding: 1.4rem 1.5rem; }
.calc__reco { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-dd); }
.calc__reco svg { width: 15px; height: 15px; }
.calc__result h3 { margin: .55rem 0 .05rem; font-size: 1.55rem; }
.calc__result .plan__sessions { margin-bottom: .3rem; }
.calc__result .plan__price { justify-content: center; display: flex; align-items: baseline; gap: .2rem; margin: .1rem 0 1.1rem; }
.calc__result .btn { width: 100%; justify-content: center; }
@media (max-width: 760px) { .calc { grid-template-columns: 1fr; } }

.plan { transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease; }
.plan .plan__flag { display: none; }
.plan.is-selected { border-color: var(--teal); box-shadow: 0 0 0 2px var(--teal), var(--shadow); transform: translateY(-3px); }
.plan.is-selected .plan__flag { display: inline-block; }
.plan.is-selected .btn--ghost { background: var(--teal); color: #fff; border-color: transparent; box-shadow: 0 12px 26px rgba(79,176,171,.34); }
.plan.is-selected .btn--ghost:hover { background: var(--teal-d); }
.plan.is-selected .btn--ghost svg { color: #fff; }

/* seletor de unidade (planos) */
.plan-toggle-wrap { display: flex; justify-content: center; margin-bottom: clamp(1.8rem, 3.4vw, 2.6rem); }
.plan-toggle { display: inline-flex; gap: 4px; background: rgba(255,255,255,.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7); border-radius: var(--r-pill); padding: 5px; box-shadow: 0 6px 18px rgba(70,64,59,.08); }
.plan-toggle__btn { border: 0; background: transparent; cursor: pointer; padding: .62rem 1.2rem; border-radius: var(--r-pill);
  font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--muted); transition: background .2s, color .2s, box-shadow .2s; white-space: nowrap; }
.plan-toggle__btn:hover { color: var(--teal-dd); }
.plan-toggle__btn.is-active { background: var(--teal); color: #fff; box-shadow: 0 6px 16px rgba(79,176,171,.32); }
[data-price] { transition: opacity .18s ease; }

/* Escola & Família: pilares */
.ef-pillars { max-width: 1000px; margin: 0 auto clamp(2.2rem, 4vw, 3.2rem); }
.ef-pillar { text-align: center; }
.ef-pillar .card__icon { margin: 0 auto .9rem; }
.ef-pillar h3 { margin-bottom: .35rem; }
.ef-pillar p { font-size: .92rem; color: var(--muted); margin: 0; max-width: 30ch; margin-inline: auto; }

/* pacotes Escola & Família */
.epack-grid { max-width: 1000px; margin-inline: auto; align-items: start; }
.epack { display: flex; flex-direction: column; }
.epack.is-featured { border-color: var(--teal); box-shadow: var(--shadow); }
.epack__head { display: flex; align-items: center; gap: .9rem; }
.epack__ic { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; color: #fff; flex: none; box-shadow: var(--shadow-sm); }
.epack__ic.ic-teal { background: var(--teal); } .epack__ic.ic-peach { background: var(--peach); }
.epack__ic svg { width: 25px; height: 25px; }
.epack__head .card__kicker { margin-bottom: .05rem; }
.epack__head h3 { margin: 0; }
.epack__tagline { font-size: .92rem; color: var(--muted); margin: .9rem 0 0; }
.epack .plan__price { margin: .7rem 0 0; }
.epack__included { background: #EAF4F3; border-radius: 14px; padding: .95rem 1.15rem; margin: 1.1rem 0 .2rem; }
.epack__included__label { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-dd); margin-bottom: .6rem; }
.epack__included__label svg { width: 15px; height: 15px; }
.epack__included ul { list-style: none; padding: 0; margin: 0; }
.epack__included li { display: flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 500; color: var(--ink); margin-bottom: .4rem; }
.epack__included li:last-child { margin-bottom: 0; }
.epack__included li svg { width: 16px; height: 16px; color: var(--teal); flex: none; }
.epack__acc { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: .3rem 0; }
.epack__acc summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .95rem 0; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--teal-dd); }
.epack__acc summary::-webkit-details-marker { display: none; }
.epack__acc summary svg { width: 18px; height: 18px; transition: transform .25s; flex: none; }
.epack__acc[open] summary svg { transform: rotate(180deg); }
.epack__acc__body { padding-bottom: .9rem; }
.epack__acc .plan-group:first-child { margin-top: 0; }
.plan-group h4 svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: .35rem; color: var(--teal); }
.epack .btn { margin-top: 1.2rem; }
.plan-group { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 1rem 1.15rem; margin-top: .9rem; }
.plan-group h4 { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--teal-dd); margin: 0 0 .55rem; }
.plan-group ul { list-style: none; padding: 0; margin: 0; }
.plan-group li { position: relative; padding-left: 1.15rem; font-size: .85rem; line-height: 1.45; color: var(--ink-soft); margin-bottom: .5rem; }
.plan-group li:last-child { margin-bottom: 0; }
.plan-group li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--peach); }

/* benefícios + condições */
.plan-info { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(1.5rem, 3vw, 2.6rem);
  margin-top: clamp(1.8rem, 3vw, 2.6rem); background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.6rem, 3vw, 2.3rem); box-shadow: var(--shadow-sm); }
.plan-info__title { display: flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink); margin: 0 0 1.1rem; }
.plan-info__title svg { width: 19px; height: 19px; color: var(--teal); }
.plan-benefits { margin-top: clamp(1.9rem, 3vw, 2.8rem); }
.plan-info__benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.benefit { display: flex; align-items: center; gap: .75rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: .85rem .95rem; font-size: .88rem; line-height: 1.3; color: var(--ink); box-shadow: var(--shadow-sm); }
.benefit__ic { width: 38px; height: 38px; border-radius: 11px; background: #EAF4F3; color: var(--teal-dd); display: grid; place-items: center; flex: none; }
.benefit__ic svg { width: 19px; height: 19px; }
@media (max-width: 900px) { .plan-info__benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .plan-info__benefits { grid-template-columns: 1fr; } }

/* banner de planos (terapias) */
.plan-cta { display: flex; align-items: center; justify-content: space-between; gap: clamp(1.4rem, 3vw, 2.6rem); flex-wrap: wrap;
  background: #EAF4F3; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.7rem, 3.4vw, 2.6rem) clamp(1.7rem, 3.6vw, 2.8rem); }
.plan-cta__text { flex: 1 1 380px; }
.plan-cta__text h2 { margin: .35rem 0 .5rem; }
.plan-cta__text p { margin: 0; color: var(--ink-soft); max-width: 52ch; }
.plan-cta .btn { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 620px) { .plan-cta { flex-direction: column; align-items: flex-start; } .plan-cta .btn { width: 100%; justify-content: center; } }

/* regulamento dos pacotes */
.regulamento { margin-top: clamp(1.2rem, 2.2vw, 1.8rem); background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.regulamento__head { display: flex; align-items: center; gap: .95rem; margin-bottom: 1.5rem; padding-bottom: 1.35rem; border-bottom: 1px solid var(--line); }
.regulamento__ic { width: 48px; height: 48px; border-radius: 14px; background: #EAF4F3; color: var(--teal-dd); display: grid; place-items: center; flex: none; }
.regulamento__ic svg { width: 23px; height: 23px; }
.regulamento__head h3 { margin: 0; font-size: 1.2rem; }
.regulamento__head p { margin: .15rem 0 0; font-size: .85rem; color: var(--muted); }
.regulamento__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2.6rem;
  counter-reset: reg; }
.regulamento__list li { display: flex; gap: .95rem; }
.regulamento__num { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--peach-dd); line-height: 1.2; flex: none; min-width: 1.7rem; padding-top: .05rem; }
.regulamento__body strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: .25rem; }
.regulamento__body p { margin: 0; font-size: .83rem; line-height: 1.55; color: var(--muted); }
@media (max-width: 720px) { .regulamento__list { grid-template-columns: 1fr; gap: 1.2rem; } }

/* ===================== FAQ ===================== */
.faq { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary { list-style: none; cursor: pointer; padding: 1.2rem 1.5rem; font-family: var(--font-head); font-weight: 600;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; color: var(--teal); transition: transform .25s; flex: none; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq p { padding: 0 1.5rem 1.35rem; margin: 0; font-size: .97rem; }

/* ===================== Reviews (Google) ===================== */
.gbadge { display: inline-flex; align-items: center; gap: .7rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: .55rem 1.2rem; box-shadow: var(--shadow-sm); }
.gbadge .g { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.gbadge .g b:nth-child(1){color:#4285F4} .gbadge .g b:nth-child(2){color:#EA4335} .gbadge .g b:nth-child(3){color:#FBBC05} .gbadge .g b:nth-child(4){color:#4285F4} .gbadge .g b:nth-child(5){color:#34A853} .gbadge .g b:nth-child(6){color:#EA4335}
.stars { display: inline-flex; gap: 1px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.gbadge .rate { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.reviews-list { max-width: 880px; margin-inline: auto; display: flex; flex-direction: column; gap: 1.25rem; }
.reviews-list .review { padding: 2rem 2.3rem; gap: 1.15rem; }
.reviews-list .review p { font-size: 1.02rem; line-height: 1.6; }
.reviews-list .av { width: 54px; height: 54px; font-size: 1.2rem; }
.reviews-list .review__id strong { font-size: 1.08rem; }
.reviews-list .review__id em { font-size: .86rem; }
.review__head { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; }
.review__head .stars { margin-left: auto; }
.review__head .stars svg { width: 20px; height: 20px; }
.reviews-list .review .gmark { position: static; margin-left: .9rem; width: 24px; height: 24px; flex: none; }
.reviews-list .gmark svg { width: 100%; height: 100%; }
.review { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .9rem; transition: transform .22s ease, box-shadow .22s ease, border-color .22s; }
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.review__top { display: flex; align-items: center; gap: .8rem; padding-right: 30px; }
.review .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; background: var(--teal); flex: none; }
.review:nth-child(even) .av { background: var(--peach); }
.review .gmark { position: absolute; top: 1.6rem; right: 1.6rem; width: 22px; height: 22px; margin: 0; }
.review__id { display: flex; flex-direction: column; min-width: 0; }
.review__id strong { font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: var(--ink); line-height: 1.3; }
.review__id em { font-style: normal; font-size: .82rem; color: var(--muted); }
.review .gmark svg { width: 100%; height: 100%; }
.review .stars { color: var(--gold); }
.review .stars svg { width: 17px; height: 17px; }
.review p { font-size: 1rem; line-height: 1.62; color: var(--ink-soft); margin: 0; }

/* ===================== CTA band ===================== */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-lg);
  padding: clamp(1.9rem, 3.4vw, 2.8rem) clamp(1.9rem, 4vw, 3.4rem);
  display: flex; align-items: center; justify-content: space-between; gap: clamp(1.4rem, 3vw, 3rem); flex-wrap: wrap;
  color: #fff; box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--teal-d), var(--teal)); }
.cta-band::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; top: -130px; right: -80px; background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band__copy { flex: 1 1 340px; }
.cta-band__act { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; }
.cta-band .hero__actions { margin-top: 0; flex-wrap: wrap; }
.cta-band__note { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.85); }
.cta-band__note svg { width: 15px; height: 15px; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: .5rem; }
.cta-band p { color: #fff; opacity: .92; font-size: .95rem; max-width: 46ch; margin: 0; }
@media (max-width: 720px) { .cta-band { flex-direction: column; align-items: flex-start; text-align: left; } }
.cta-band .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }

/* ===================== Page hero (interior) — rico ===================== */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #EAF4F3, var(--cream));
  padding-block: clamp(54px, 8vw, 96px); }
.page-hero::before, .page-hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.page-hero::before { width: 480px; height: 480px; top: -200px; right: -120px; background: radial-gradient(circle at 30% 30%, rgba(79,176,171,.20), transparent 68%); animation: floaty 9s ease-in-out infinite; }
.page-hero::after { width: 420px; height: 420px; bottom: -220px; left: -120px; background: radial-gradient(circle at 50% 50%, rgba(234,168,126,.22), transparent 68%); animation: floaty 11s ease-in-out infinite reverse; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,5vw,56px); align-items: center; }
@media (max-width: 860px) { .page-hero__grid { grid-template-columns: 1fr; } }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 1.1rem; display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; }
.breadcrumb--center { justify-content: center; }
.breadcrumb a:hover { color: var(--teal-dd); }
.page-hero--stack { padding-bottom: clamp(40px, 6vw, 72px); }

/* contato */
.contato-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.contato-head .lead { margin-inline: auto; }
.contato-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: .3rem 1.1rem; margin: 1.3rem 0 0; font-size: .88rem; color: var(--muted); }
.contato-meta span { position: relative; padding-left: 1.1rem; }
.contato-meta span::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--peach); }
.contato-meta span:first-child { padding-left: 0; } .contato-meta span:first-child::before { display: none; }
.contato-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(1.4rem, 3vw, 2.2rem); align-items: start; max-width: 1060px; margin-inline: auto; text-align: left; }
@media (max-width: 860px) { .contato-grid { grid-template-columns: 1fr; } }
.contato-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.contato-form h2 { font-size: 1.4rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--ink); margin-bottom: .45rem; }
.field label span { color: var(--muted); font-weight: 400; }
.contato-form input, .contato-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: .78rem .95rem;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: #FCFAF7; transition: border-color .15s, box-shadow .15s; }
.contato-form input::placeholder, .contato-form textarea::placeholder { color: #a99f92; }
.contato-form input:focus, .contato-form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(79,176,171,.16); background: #fff; }
.contato-form textarea { resize: vertical; min-height: 96px; }
.seg { display: flex; gap: .5rem; }
.seg__opt { flex: 1; }
.seg__opt input { position: absolute; opacity: 0; pointer-events: none; }
.seg__opt span { display: block; text-align: center; padding: .7rem .5rem; border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--muted); cursor: pointer; transition: all .15s; }
.seg__opt input:checked + span { background: #EAF4F3; border-color: var(--teal); color: var(--teal-dd); }
.seg__opt input:focus-visible + span { box-shadow: 0 0 0 3px rgba(79,176,171,.16); }
.contato-form > .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.contato-info { align-self: stretch; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.4rem, 2.6vw, 2rem); }
.cinfo-block { padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.cinfo-block:first-child { padding-top: 0; }
.cinfo-block:last-child { padding-bottom: 0; border-bottom: 0; }
.cinfo-label { display: block; font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--peach-dd); margin-bottom: .7rem; }
.cinfo-link { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; font-size: .95rem; color: var(--ink-soft); padding: .28rem 0; }
.cinfo-link b { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.cinfo-link:hover b { color: var(--teal-dd); }
.cinfo-link--start { align-items: center; justify-content: flex-start; gap: .5rem; color: var(--ink); }
.cinfo-link--start svg { width: 18px; height: 18px; color: var(--teal-dd); flex: none; }
.cinfo-link--start:hover { color: var(--teal-dd); }
.cinfo-text { font-size: .9rem; color: var(--muted); line-height: 1.5; margin: 0 0 .7rem; }
.cinfo-text:last-child { margin-bottom: 0; }
.cinfo-text b { display: block; color: var(--ink); font-weight: 600; font-family: var(--font-head); font-size: .92rem; }
.unidades-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.unidades-head .lead { margin-inline: auto; }
.page-hero__media { position: relative; aspect-ratio: 5/4; border-radius: var(--r-lg);
  background: linear-gradient(155deg, #EAF4F3, #FBEFE3); box-shadow: var(--shadow); display: grid; place-items: center; overflow: visible; }
.page-hero__media::before, .page-hero__media::after { content: ""; position: absolute; top: 50%; left: 50%; border-radius: 50%; border: 2px dashed rgba(79,176,171,.3); }
.page-hero__media::before { width: 64%; height: 64%; transform: translate(-50%,-50%); animation: spinSlow 38s linear infinite; }
.page-hero__media::after { width: 42%; height: 42%; transform: translate(-50%,-50%); border-color: rgba(234,168,126,.42); animation: spinSlow 26s linear infinite reverse; }
.page-hero__media .big-ic { position: relative; z-index: 2; width: clamp(90px,16vw,140px); height: clamp(90px,16vw,140px); border-radius: 32px; display: grid; place-items: center; color: #fff; background: var(--teal); box-shadow: var(--shadow-3d); animation: floaty 5s ease-in-out infinite; }
.page-hero__media .big-ic svg { width: 50%; height: 50%; }
.page-hero__media img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); }

/* ===================== Split & media ===================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.split > *, .page-hero__grid > * { min-width: 0; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.media-frame { position: relative; border-radius: var(--r-lg); background: linear-gradient(155deg, #EAF4F3, #FBEFE3);
  aspect-ratio: 4/3; display: grid; place-items: center; box-shadow: var(--shadow); overflow: hidden; }
.media-frame .big-ic { width: 120px; height: 120px; border-radius: 30px; display: grid; place-items: center; color: #fff; background: var(--peach); box-shadow: var(--shadow-3d); animation: floaty 5.5s ease-in-out infinite; }
.media-frame .big-ic svg { width: 54px; height: 54px; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== Bullets / pills ===================== */
.bullets { list-style: none; padding: 0; margin: 1.2rem 0; }
.bullets li { position: relative; padding-left: 2rem; margin-bottom: .8rem; color: var(--ink-soft); }
.bullets li svg { position: absolute; left: 0; top: .15rem; width: 22px; height: 22px; padding: 3px; color: #fff; background: var(--teal); border-radius: 50%; }
.bullets--2col { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.8rem; margin-top: 0; }
@media (max-width: 560px) { .bullets--2col { grid-template-columns: 1fr; } }
.pill-list { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin: 1rem 0 0; }
.pill-list li { background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: .5rem 1.1rem; font-size: .92rem; font-weight: 600; color: var(--ink-soft); box-shadow: var(--shadow-sm); }

/* ===================== Footer ===================== */
.site-footer { background: #3a3631; color: #C9C2B8; padding-block: clamp(50px, 7vw, 76px) 2rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-head); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.3fr; gap: 2rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.site-footer a { color: #C9C2B8; transition: color .15s; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; font-size: .95rem; display: flex; align-items: flex-start; gap: .5rem; }
.site-footer li svg { width: 16px; height: 16px; color: var(--peach); flex: none; margin-top: 3px; }
.footer__logo { height: 56px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .92; }
.footer__brand p { color: #A89F94; font-size: .92rem; max-width: 32ch; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #E7E1D8; transition: background .18s, color .18s, transform .18s; }
.footer__social a svg { width: 20px; height: 20px; }
.footer__social a:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.6rem; padding-top: 1.4rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; font-size: .84rem; color: #8E867C; }
.footer__credit { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); text-align: center; }
.footer__credit a { display: inline-flex; align-items: center; gap: .5rem; color: #8E867C; font-size: .8rem; }
.footer__credit a:hover { color: #fff; }
.footer__credit a:hover img { opacity: 1; }
.footer__credit img { height: 18px; width: auto; opacity: .75; transition: opacity .2s; }

/* ===================== Floating WhatsApp ===================== */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .2s; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.2s infinite; }

/* ===================== Marquee ===================== */
.marquee { position: relative; z-index: 3; background: var(--teal); color: #fff; overflow: hidden; white-space: nowrap; padding: .85rem 0; transform: rotate(-1.2deg); margin-block: -23px; box-shadow: 0 10px 26px rgba(46,114,110,.22); }
.marquee__track { display: inline-flex; gap: 2.5rem; align-items: center; animation: marquee 30s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; font-style: italic; display: inline-flex; gap: 2.5rem; align-items: center; }
.marquee__track span::after { content: "•"; opacity: .6; font-style: normal; font-size: 1rem; }

/* ===================== Animations ===================== */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes spinSlow { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes gradientShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__panel { transform: none; }
}

/* ===================== Personalidade / doodles (vibe das referências) ===================== */
/* sublinhado desenhado à mão sob títulos */
.doodle-uline { display: block; width: 105%; max-width: 320px; height: 13px; color: var(--peach); margin-top: 4px; }
.s-head.center .doodle-uline { margin-inline: auto; }
/* estrelinhas que piscam */
.spark { position: absolute; color: var(--peach); pointer-events: none; animation: twinkle 3.2s ease-in-out infinite; }
.spark svg { width: 100%; height: 100%; display: block; }
.spark--teal { color: var(--teal); }
@keyframes twinkle { 0%,100% { transform: scale(1) rotate(0); opacity: .95; } 50% { transform: scale(1.3) rotate(18deg); opacity: .45; } }
/* seta desenhada à mão */
.doodle-arrow { color: var(--peach-d); width: 64px; height: 64px; }
/* tag/sticker rotacionada */
.sticker { display: inline-flex; align-items: center; gap: .4rem; background: var(--peach); color: #4a3422; font-family: var(--font-head);
  font-weight: 700; font-size: .8rem; padding: .45rem 1rem; border-radius: 14px 14px 14px 4px; box-shadow: var(--shadow);
  transform: rotate(-4deg); }
.sticker--teal { background: var(--teal); color: #fff; }
.sticker svg { width: 15px; height: 15px; }

/* foto em blob orgânico com forma colorida atrás */
.blob-photo { position: relative; }
.blob-photo__img { position: relative; z-index: 2; overflow: hidden; aspect-ratio: 1/1;
  border-radius: 59% 41% 47% 53% / 56% 49% 51% 44%; box-shadow: var(--shadow-lg); }
.blob-photo__img img { width: 100%; height: 100%; object-fit: cover; }
.blob-photo::before { content: ""; position: absolute; z-index: 1; inset: 16px -18px -20px 12px;
  border-radius: 50% 50% 46% 54% / 54% 46% 56% 44%; background: var(--peach); opacity: .92; }
.blob-photo--teal::before { background: var(--teal); }
.blob-photo--cream::before { background: var(--cream-2); }
/* aro tracejado decorativo */
.blob-photo .ring-doodle { position: absolute; z-index: 0; width: 70px; height: 70px; border: 2px dashed var(--peach); border-radius: 50%; opacity: .5; }
.blob-photo .spark { position: absolute; z-index: 5; }
.blob-photo .spark.s-x { top: -10px; right: 6%; width: 28px; height: 28px; }

/* heading com ênfase manuscrita */
.hl { position: relative; display: inline-block; }
.hl .doodle-uline { position: absolute; left: 0; bottom: -10px; width: 100%; max-width: none; }

/* ===================== Utilities ===================== */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-muted { color: var(--muted); }
.maxw-760 { max-width: 760px; margin-inline: auto; }

/* ===================== Cookie banner (LGPD) ===================== */
.cookie-banner { position: fixed; z-index: 95; left: 50%; bottom: clamp(12px, 3vw, 24px); transform: translateX(-50%);
  width: min(680px, calc(100% - 24px)); display: flex; align-items: center; gap: 1rem 1.2rem; flex-wrap: wrap;
  background: rgba(255,255,255,.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 16px; padding: 1rem 1.2rem; box-shadow: 0 16px 40px rgba(70,64,59,.2); }
.cookie-banner[hidden] { display: none; }
.cookie-banner__txt { flex: 1 1 300px; font-size: .84rem; color: var(--ink-soft); margin: 0; line-height: 1.45; }
.cookie-banner__txt a { color: var(--teal-dd); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .5rem; flex: none; }
.cookie-banner__actions .btn { padding: .55em 1.15em; font-size: .9rem; }
@media (max-width: 540px) { .cookie-banner__actions { width: 100%; } .cookie-banner__actions .btn { flex: 1; justify-content: center; } }

/* ===================== Página legal / conteúdo simples ===================== */
.legal { max-width: 760px; margin-inline: auto; }
.legal h2 { font-size: 1.35rem; margin: 2rem 0 .6rem; }
.legal h2:first-of-type { margin-top: .5rem; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.7; font-size: .98rem; }
.legal ul { padding-left: 1.2rem; margin: .4rem 0 1rem; }
.legal li { margin-bottom: .4rem; }
.legal a { color: var(--teal-dd); text-decoration: underline; }
.legal__updated { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }

/* =====================================================================
   Refino mobile-first — depoimentos, centralização de títulos e CTAs
   ===================================================================== */

/* ---- Depoimentos: cabeçalho não quebra feio no mobile ---- */
@media (max-width: 600px) {
  .reviews-list .review { padding: 1.5rem 1.4rem; }
  .review__head { position: relative; flex-wrap: wrap; padding-right: 32px; row-gap: .35rem; }
  .review__head .review__id { flex: 1 1 auto; }
  .review__head .stars { margin-left: 0; order: 3; flex-basis: 100%; margin-top: .1rem; }
  .review__head .stars svg { width: 18px; height: 18px; }
  .reviews-list .review .gmark { position: absolute; top: 0; right: 0; margin: 0; width: 22px; height: 22px; }
}

/* ---- Hero da home: textos e CTAs centralizados quando empilha ---- */
@media (max-width: 900px) {
  .hero__grid > div:first-child { text-align: center; }
  .hero__grid > div:first-child .hero__actions { justify-content: center; }
  .hero__grid > div:first-child .hero__trust { justify-content: center; }
  .hero__grid > div:first-child .doodle-uline { margin-inline: auto; }
}

/* ---- Page-hero (páginas internas): idem quando empilha ---- */
@media (max-width: 860px) {
  .page-hero__grid > div:first-child { text-align: center; }
  .page-hero__grid > div:first-child .breadcrumb { justify-content: center; }
  .page-hero__grid > div:first-child .hero__actions { justify-content: center; }
}

/* ---- Títulos de seção e CTAs centralizados no mobile ---- */
@media (max-width: 768px) {
  .s-head { text-align: center; margin-inline: auto; }
  .s-head .doodle-uline { margin-inline: auto; }
  .hero__actions { justify-content: center; }
}

/* ---- Cobertura de convênio por cidade ---- */
.conv-cov { height: 100%; }
.conv-cov__city { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-head);
  font-weight: 700; font-size: 1.02rem; color: var(--teal-dd); margin-bottom: 1rem; }
.conv-cov__city svg { width: 20px; height: 20px; color: var(--teal-dd); }
.conv-cov .bullets a { color: var(--ink); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .15s, color .15s; }
.conv-cov .bullets a:hover { color: var(--teal-dd); border-color: var(--teal); }
.conv-tile__tag { display: inline-flex; align-items: center; gap: .3rem; margin-top: .5rem;
  font-family: var(--font-head); font-size: .74rem; font-weight: 600; color: var(--muted); }
.conv-tile__tag svg { width: 13px; height: 13px; color: var(--teal); }
