/* =================================================================
   DR VS DIGITAL — Fisioterapia Estética e Integrativa
   Estética wellness elegante:
   creme + sage + dourado · Cormorant Garamond + Raleway · blobs orgânicos
   Botões premium e animações.
   Autoria: VS Digital Services.
   ================================================================= */

/* ---------- Fontes self-hospedadas (sem CDN) ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-garamond.woff2") format("woff2");
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../assets/fonts/raleway.woff2") format("woff2");
  font-weight: 300 700; font-style: normal; font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  /* base — creme quente */
  --bg:            #fbf7f0;
  --bg-2:          #f3ece0;
  --surface:       #ffffff;
  --surface-2:     #fbf8f2;
  --stroke:        rgba(44, 58, 40, .12);
  --stroke-strong: rgba(106, 130, 98, .42);

  /* texto */
  --text:    #2c3a28;
  --muted:   #6c7a63;
  --faint:   #9aa491;

  /* marca (sage → dourado) */
  --sage:       #6a8262;
  --sage-light: #8fa882;
  --gold:       #c9a85c;
  --gold-deep:  #b2803e;
  --olive:      #2c3a28;
  --accent:     #6a8262;

  --grad:      linear-gradient(135deg, #6a8262, #8fa882, #c9a85c);
  --grad-warm: linear-gradient(135deg, #8fa882, #c9a85c);
  --grad-soft: linear-gradient(135deg, rgba(106,130,98,.16), rgba(201,168,92,.14));
  --glow: 0 18px 50px -16px rgba(106,130,98,.45);

  /* layout */
  --container: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --gutter: clamp(1.1rem, 4vw, 2rem);

  /* type */
  --font:         "Raleway", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;

  /* blob orgânico — assinatura da marca */
  --blob-1: 60% 40% 30% 70% / 60% 30% 70% 40%;
  --blob-2: 30% 70% 70% 30% / 53% 39% 61% 47%;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  letter-spacing: .005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
::selection { background: rgba(201,168,92,.3); color: var(--olive); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; font-weight: 600; letter-spacing: 0; color: var(--olive); }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
h3 { font-size: 1.42rem; font-weight: 600; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }

/* ---------- Acessibilidade ---------- */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: var(--sage); color: #fff; padding: .7rem 1.1rem;
  border-radius: 10px; font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 6px; }

/* ===============================================================
   Fundo decorativo (aurora suave creme/sage/dourado)
   =============================================================== */
.bg-aurora {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background:
    radial-gradient(1500px 300px at 50% -4%, rgba(244, 206, 199, .4), transparent 70%),
    radial-gradient(1100px 650px at 80% -8%, rgba(201,168,92,.12), transparent 60%),
    radial-gradient(900px 600px at 8% 10%, rgba(106,130,98,.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(44,58,40,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,58,40,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .45;
  animation: drift 24s var(--ease) infinite alternate;
}
.orb--1 { width: 460px; height: 460px; top: -110px; right: -70px; background: radial-gradient(circle, rgba(201,168,92,.4), transparent 70%); }
.orb--2 { width: 420px; height: 420px; top: 40%; left: -150px; background: radial-gradient(circle, rgba(106,130,98,.38), transparent 70%); animation-delay: -8s; }
.orb--3 { width: 340px; height: 340px; bottom: -90px; right: 24%; background: radial-gradient(circle, rgba(143,168,130,.32), transparent 70%); animation-delay: -15s; }
@keyframes drift { to { transform: translate3d(40px, 50px, 0) scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .orb { animation: none; } }

/* ===============================================================
   Botões — PREMIUM (mantidos), recoloridos para a paleta
   =============================================================== */
.btn {
  --btn-bg: var(--surface);
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem; padding: .9rem 1.6rem; border: 1px solid var(--stroke);
  border-radius: 100px; font-weight: 650; font-size: .98rem; letter-spacing: .02em;
  background: var(--btn-bg); color: var(--text);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s;
  overflow: hidden; isolation: isolate; will-change: transform;
}
.btn .ic { transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn:hover .ic { transform: translateX(3px); }

.btn--primary {
  background: var(--grad); color: #fff; border-color: transparent; font-weight: 700;
  box-shadow: 0 12px 28px -10px rgba(106,130,98,.65), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(135deg, #7b9472, #d4b56a);
  opacity: 0; transition: opacity .3s;
}
.btn--primary:hover { box-shadow: 0 18px 42px -10px rgba(178,128,62,.7); }
.btn--primary:hover::before { opacity: 1; }

.btn--ghost { background: transparent; border-color: var(--stroke-strong); color: var(--sage); }
.btn--ghost:hover { border-color: var(--sage); background: rgba(106,130,98,.07); }

.btn--sm { padding: .62rem 1.15rem; font-size: .9rem; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* Ripple */
.ripple {
  position: absolute; border-radius: 50%; transform: scale(0); pointer-events: none;
  background: rgba(255,255,255,.5); animation: ripple .6s var(--ease) forwards; z-index: 0;
}
@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }

/* Estado loading/sucesso do form */
.btn__spinner, .btn__done { display: none; }
.btn__spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; animation: spin .7s linear infinite;
}
.btn__done { align-items: center; gap: .4rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn.is-loading .btn__label { display: none; }
.btn.is-loading .btn__spinner { display: inline-block; }
.btn.is-done .btn__label, .btn.is-done .btn__spinner { display: none; }
.btn.is-done .btn__done { display: inline-flex; }
.btn.is-done { background: linear-gradient(135deg, #6a8262, #8fa882); }

/* ===============================================================
   Header
   =============================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  /* leve tom de rosa (blush) */
  background: linear-gradient(180deg, #fbede8 0%, #fbeae2 100%);
  border-bottom: 1px solid rgba(214, 178, 168, .28);
  transition: background .35s, border-color .35s, box-shadow .35s, backdrop-filter .35s;
}
.site-header.is-stuck {
  background: rgba(251, 235, 229, .88);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(214, 178, 168, .4);
  box-shadow: 0 8px 30px -18px rgba(120, 70, 60, .25);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark { display: grid; place-items: center; width: 52px; height: 52px; flex: none; }
.brand__mark img { width: 100%; height: 100%; }
.brand__text { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; letter-spacing: .05em; line-height: 1.02; text-transform: uppercase; display: flex; flex-direction: column; gap: 1px; color: var(--olive); }
.brand__text small { font-family: var(--font); font-size: .62rem; font-weight: 500; letter-spacing: .01em; text-transform: none; color: var(--sage); }

.nav { display: flex; gap: .25rem; }
.nav a {
  padding: .5rem .85rem; border-radius: 100px; font-size: .94rem; color: var(--muted);
  font-weight: 550; transition: color .25s, background .25s; position: relative;
}
.nav a:hover, .nav a.is-active { color: var(--sage); background: rgba(106,130,98,.09); }

.header__actions { display: flex; align-items: center; gap: .6rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  border: 1px solid var(--stroke); border-radius: 12px; background: var(--surface); align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--olive); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===============================================================
   Hero
   =============================================================== */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 5.5rem) clamp(4rem, 8vw, 6rem); }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .9rem;
  border: 1px solid var(--stroke); border-radius: 100px; background: var(--surface);
  font-size: .82rem; color: var(--muted); font-weight: 600; margin-bottom: 1.4rem;
  box-shadow: 0 6px 18px -10px rgba(44,58,40,.25);
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 0 rgba(106,130,98,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(106,130,98,0); } 100% { box-shadow: 0 0 0 0 rgba(106,130,98,0); } }

.hero__title { font-size: clamp(2.9rem, 6.4vw, 5rem); letter-spacing: 0; line-height: 1.04; color: var(--olive); margin-bottom: 1.4rem; }
.grad-text {
  display: inline-block; font-style: italic;
  background: linear-gradient(120deg, var(--sage), var(--gold-deep) 60%, var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); font-weight: 300; color: var(--muted); max-width: 40ch; margin-bottom: 1.8rem; }

.hero__bullets { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 2rem; }
.hero__bullets li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--text);
  padding: .85rem 1rem; border-radius: 14px; background: var(--surface); border: 1px solid var(--stroke);
  box-shadow: 0 10px 26px -18px rgba(44,58,40,.4); }
.ic-check { width: 22px; height: 22px; flex: none; padding: 4px; border-radius: 50%; background: var(--grad-soft); fill: none; stroke: var(--sage); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.4rem; }

.hero__trust { display: flex; gap: clamp(1.2rem, 3vw, 2.4rem); flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 700; letter-spacing: 0; color: var(--gold-deep); }
.stat span { font-size: .82rem; color: var(--faint); }

/* Hero visual — foto em blob orgânico */
.hero__visual { position: relative; display: grid; place-items: center; min-height: 520px; }
.photo-blob {
  position: relative; width: min(100%, 540px); aspect-ratio: 1 / 1.06; overflow: hidden;
  margin-inline: auto;
  border-radius: 48% 52% 46% 54% / 55% 44% 56% 45%;
  border: none;
  box-shadow: 0 0 0 11px var(--bg), 0 0 0 12.5px var(--gold), 0 44px 100px -34px rgba(44,58,40,.45);
  animation: heroBlob 20s ease-in-out infinite;
  transition: transform .45s var(--ease); transform-style: preserve-3d;
}
/* blob equilibrado/arredondado (morph suave, mantém alinhado) */
@keyframes heroBlob {
  0%,100% { border-radius: 48% 52% 46% 54% / 55% 44% 56% 45%; }
  50%     { border-radius: 53% 47% 52% 48% / 47% 55% 45% 53%; }
}
.photo-blob img { width: 100%; height: 100%; object-fit: cover; }

/* Parallax: imagem ampliada desliza dentro da moldura conforme a rolagem */
.photo-blob[data-parallax] img,
.feature-photo[data-parallax] img,
.about__photo-blob[data-parallax] img {
  transform: scale(1.18) translate3d(0, var(--py, 0px), 0);
  will-change: transform;
}
.tech__panel-media[data-parallax] img {
  transform: scale(1.14) translate3d(0, var(--py, 0px), 0);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) { .tech__panel-media[data-parallax] img { transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .photo-blob[data-parallax] img, .feature-photo[data-parallax] img, .about__photo-blob[data-parallax] img { transform: scale(1.05); }
}
.photo-blob::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(44,58,40,.22)); }
@keyframes blobMorph {
  0%,100% { border-radius: var(--blob-1); }
  50%     { border-radius: var(--blob-2); }
}
@media (prefers-reduced-motion: reduce) { .photo-blob, .feature-photo, .about__photo-blob { animation: none !important; } }

/* folhas botânicas flutuantes */
.blob-leaf { position: absolute; width: 28px; height: 28px; opacity: .85; z-index: 3;
  background: var(--grad); border-radius: 0 100% 0 100%; filter: drop-shadow(0 8px 16px rgba(106,130,98,.4)); }
.blob-leaf--1 { top: 4%; right: 12%; animation: float 7s var(--ease) infinite; }
.blob-leaf--2 { bottom: 14%; left: 4%; width: 20px; height: 20px; animation: float 7s var(--ease) infinite 2.5s; }

.glass-chip {
  position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: .45rem;
  padding: .6rem .9rem; border-radius: 100px; font-size: .8rem; font-weight: 600; color: var(--text);
  background: rgba(255,255,255,.92); border: 1px solid var(--stroke); backdrop-filter: blur(8px);
  box-shadow: 0 14px 32px -14px rgba(44,58,40,.45);
}
.glass-chip svg { width: 16px; height: 16px; color: var(--sage); }
.chip--a { top: 10%; left: -5%; animation: float 6s var(--ease) infinite; }
.chip--b { bottom: 16%; right: -4%; animation: float 6s var(--ease) infinite 3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__rating {
  position: absolute; z-index: 4; bottom: 3%; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: .7rem; padding: .7rem 1.1rem; white-space: nowrap;
  border-radius: 100px; background: rgba(255,255,255,.94); border: 1px solid var(--stroke);
  box-shadow: 0 14px 32px -14px rgba(44,58,40,.45); animation: float 6s var(--ease) infinite 1s;
}
.hero__rating-stars { color: var(--gold); letter-spacing: 1px; font-size: .9rem; }
.hero__rating-text { font-size: .82rem; color: var(--muted); }
.hero__rating-text strong { color: var(--olive); font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .glass-chip, .blob-leaf, .hero__rating { animation: none; } }

.scroll-cue { position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%); width: 26px; height: 42px;
  border: 2px solid var(--stroke-strong); border-radius: 100px; display: grid; place-items: start center; padding-top: 7px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--sage); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } }

/* ===============================================================
   Card base (cartão claro elegante)
   =============================================================== */
.glass-card {
  position: relative; background: var(--surface); border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -36px rgba(44,58,40,.35);
}

/* ===============================================================
   Marquee
   =============================================================== */
.marquee { border-block: 1px solid var(--stroke); background: rgba(106,130,98,.05); overflow: hidden; padding-block: 1rem; }
.marquee__track { display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap; animation: marquee 32s linear infinite; }
.marquee__track span { color: var(--muted); font-weight: 600; font-size: .92rem; letter-spacing: .02em; }
.marquee__track i { color: var(--gold); font-style: normal; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===============================================================
   Eyebrow / Section head
   =============================================================== */
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: .8rem; }
.section__head { max-width: 60ch; margin: 0 auto clamp(2.4rem, 5vw, 3.4rem); text-align: center; }
.section__sub { color: var(--muted); margin-top: 1rem; font-size: 1.1rem; font-weight: 300; }

/* ===============================================================
   Split sections
   =============================================================== */
.split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media { position: relative; }
.split--reverse .split__media { order: 2; }
.disclaimer { display: block; margin-top: 1rem; font-size: .74rem; color: var(--faint); }
.split__content h2 { margin-bottom: 1.1rem; }
.split__content > p { color: var(--muted); margin-bottom: 1rem; }
.split__content .btn { margin-top: 1.4rem; }
.pull { border-left: 2px solid var(--gold); padding: .3rem 0 .3rem 1.3rem; margin: 1.6rem 0;
  font-family: var(--font-display); font-size: 1.6rem; line-height: 1.3;
  color: var(--sage); font-style: italic; font-weight: 500; }

/* Foto em blob nas seções */
.feature-photo {
  position: relative; width: min(100%, 480px); margin-inline: auto; aspect-ratio: 1 / 1.05; overflow: hidden;
  border-radius: var(--blob-1); border: none;
  box-shadow: 0 0 0 10px var(--bg), 0 0 0 11.5px var(--gold), 0 36px 80px -34px rgba(44,58,40,.4);
  animation: blobMorph 18s ease-in-out infinite;
}
.feature-photo--alt { animation-direction: reverse; animation-duration: 20s; }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-photo__badge {
  position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%); white-space: nowrap;
  display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: 100px;
  background: rgba(255,255,255,.94); border: 1px solid var(--stroke); font-size: .82rem; font-weight: 600; color: var(--olive);
  box-shadow: 0 14px 30px -14px rgba(44,58,40,.4);
}
.feature-photo__badge svg { width: 16px; height: 16px; stroke: var(--sage); fill: none; stroke-width: 2; }

.stat-float {
  position: absolute; top: 7%; right: -3%; padding: 1rem 1.2rem; border-radius: 18px; text-align: center;
  background: rgba(255,255,255,.95); border: 1px solid var(--stroke); box-shadow: 0 18px 40px -18px rgba(44,58,40,.45);
  animation: float 6s var(--ease) infinite;
}
.stat-float strong { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--gold-deep); line-height: 1; }
.stat-float span { font-size: .72rem; color: var(--muted); }

/* ===============================================================
   Cards grid (benefícios / reviews)
   =============================================================== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }

.benefit { padding: 1.8rem; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.benefit:hover { transform: translateY(-6px); box-shadow: var(--glow); border-color: var(--stroke-strong); }
.benefit__ic { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; margin-bottom: 1.1rem;
  background: var(--grad-soft); border: 1px solid var(--stroke); }
.benefit__ic svg { width: 24px; height: 24px; fill: none; stroke: var(--sage); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit h3 { margin-bottom: .5rem; }
.benefit p { color: var(--muted); font-size: .95rem; }

/* ===============================================================
   Técnicas (tabs + foto)
   =============================================================== */
.tech { display: grid; grid-template-columns: 270px 1fr; gap: 1.4rem; align-items: stretch; }
.tech__tabs { display: flex; flex-direction: column; gap: .4rem; }
.tech__tab { text-align: left; padding: .9rem 1.1rem; border-radius: var(--radius-sm); border: 1px solid var(--stroke);
  background: var(--surface); color: var(--muted); font-weight: 600; transition: all .25s var(--ease); }
.tech__tab:hover { color: var(--sage); border-color: var(--stroke-strong); }
.tech__tab.is-active { color: #fff; background: var(--grad); border-color: transparent;
  box-shadow: 0 12px 26px -12px rgba(106,130,98,.6); }
.tech__panels { padding: 0; overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; min-height: 280px; }
.tech__panel { display: grid; grid-template-columns: subgrid; grid-column: 1 / -1; animation: fadeUp .5s var(--ease); }
.tech__panel[hidden] { display: none; }
.tech__panel-body { padding: clamp(1.6rem, 4vw, 2.6rem); align-self: center; }
.tech__panel-media { position: relative; overflow: hidden; min-height: 240px; }
.tech__panel-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.tech__num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; color: var(--gold); opacity: .55; }
.tech__panel h3 { font-size: 1.6rem; margin: .2rem 0 .7rem; }
.tech__panel p { color: var(--muted); max-width: 46ch; }
.tech__note { text-align: center; color: var(--faint); margin-top: 1.4rem; font-size: .92rem; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } }

/* ===============================================================
   Mini grid (pré-op / gestantes)
   =============================================================== */
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.4rem; }
.mini { display: flex; gap: .8rem; }
.mini__ic { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px;
  background: var(--grad-soft); border: 1px solid var(--stroke); }
.mini__ic svg { width: 20px; height: 20px; fill: none; stroke: var(--sage); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.mini strong { display: block; font-size: .98rem; margin-bottom: .15rem; color: var(--olive); }
.mini p { font-size: .86rem; color: var(--muted); }

/* ===============================================================
   Sobre
   =============================================================== */
.about { display: grid; grid-template-columns: 320px 1fr; gap: clamp(1.6rem, 4vw, 3.4rem); padding: clamp(2rem, 5vw, 3.4rem); align-items: center; }
.about__photo { position: relative; display: grid; place-items: center; }
.about__photo-blob { width: 260px; height: 280px; overflow: hidden; border-radius: var(--blob-1);
  border: none; box-shadow: 0 0 0 9px var(--surface), 0 0 0 10.5px var(--gold), 0 30px 70px -28px rgba(44,58,40,.45);
  animation: blobMorph 15s ease-in-out infinite; }
.about__photo-blob img { width: 100%; height: 100%; object-fit: cover; }
.about__crefito { position: absolute; bottom: -10px; padding: .5rem 1rem; border-radius: 100px; font-size: .76rem; font-weight: 700;
  background: #fff; border: 1px solid var(--stroke); color: var(--gold-deep); box-shadow: 0 12px 26px -12px rgba(44,58,40,.4); }
.about__content h2 { margin-bottom: 1rem; }
.about__content > p { color: var(--muted); margin-bottom: 1rem; }
.about__badges { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.2rem 0; }
.pill { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .9rem; border-radius: 100px;
  background: var(--grad-soft); border: 1px solid var(--stroke); font-size: .85rem; font-weight: 600; color: var(--olive); }
.pill svg { width: 16px; height: 16px; fill: none; stroke: var(--sage); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ===============================================================
   Reviews
   =============================================================== */
.review { padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; transition: transform .35s var(--ease), box-shadow .35s; }
.review:hover { transform: translateY(-5px); box-shadow: var(--glow); }
.review__stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.review p { color: var(--text); font-size: .97rem; }
.review__by { display: flex; align-items: center; gap: .7rem; margin-top: auto; border-top: 1px solid var(--stroke); padding-top: 1rem; }
.review__ava { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; font-weight: 800; color: #fff;
  background: var(--grad); }
.review__by strong { font-size: .92rem; color: var(--olive); }
.review__by small { color: var(--faint); font-size: .78rem; }

/* ===============================================================
   FAQ
   =============================================================== */
.faq-wrap { max-width: 820px; }
.faq { display: grid; gap: .8rem; }
.faq__item { border: 1px solid var(--stroke); border-radius: var(--radius-sm); background: var(--surface);
  overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq__item[open] { border-color: var(--stroke-strong); box-shadow: 0 16px 40px -24px rgba(44,58,40,.35); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-weight: 650; font-size: 1.02rem; color: var(--olive);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; flex: none; width: 20px; height: 20px; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--sage); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__plus::before { width: 14px; height: 2px; }
.faq__plus::after { width: 2px; height: 14px; }
.faq__item[open] .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq__body { padding: 0 1.3rem 1.2rem; }
.faq__body p { color: var(--muted); font-size: .96rem; }

/* ===============================================================
   Contato
   =============================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__info h2 { margin: .4rem 0 1rem; }
.contact__info > p { color: var(--muted); margin-bottom: 1.8rem; max-width: 42ch; }
.contact__list { list-style: none; display: grid; gap: 1.1rem; }
.contact__list li { display: flex; gap: .9rem; align-items: center; }
.contact__ic { flex: none; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad-soft); border: 1px solid var(--stroke); }
.contact__ic svg { width: 22px; height: 22px; fill: none; stroke: var(--sage); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact__list strong { display: block; font-size: .82rem; color: var(--faint); font-weight: 600; }
.contact__list a, .contact__list address, .contact__list span { color: var(--text); font-style: normal; font-weight: 600; }
.contact__list a:hover { color: var(--sage); }

.contact__form { padding: clamp(1.6rem, 4vw, 2.2rem); }
.contact__form h3 { font-size: 1.6rem; }
.contact__form-sub { color: var(--muted); font-size: .92rem; margin: .3rem 0 1.4rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: .4rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1px solid var(--stroke);
  background: var(--surface-2); color: var(--text); font: inherit; font-size: .95rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); background: #fff;
  box-shadow: 0 0 0 4px rgba(106,130,98,.14);
}
.field input.invalid { border-color: #d98b6a; box-shadow: 0 0 0 4px rgba(217,139,106,.14); }
.contact__form-note { font-size: .76rem; color: var(--faint); margin-top: .9rem; text-align: center; }

/* ===============================================================
   Footer
   =============================================================== */
.site-footer { border-top: 1px solid var(--stroke); margin-top: 2rem; background: rgba(106,130,98,.06); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.6rem; }
.footer__brand p { color: var(--muted); font-size: .92rem; margin-top: 1rem; max-width: 30ch; }
.footer__nav { display: flex; flex-direction: column; gap: .6rem; }
.footer__nav h4, .footer__cta h4 { font-family: var(--font); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .4rem; }
.footer__nav a { color: var(--muted); font-size: .94rem; transition: color .2s; }
.footer__nav a:hover { color: var(--sage); }
.footer__cta .btn { margin-top: .4rem; }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--stroke); padding-block: 1.4rem 2rem; }
.footer__bottom p { font-size: .82rem; color: var(--faint); }

/* ===============================================================
   WhatsApp float
   =============================================================== */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.8rem); z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 14px 34px -8px rgba(16,185,129,.6); transition: transform .3s var(--ease);
}
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(16,185,129,.55); animation: ring 2.2s var(--ease) infinite; }
.wa-float:hover { transform: scale(1.08); }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; } }

/* ===============================================================
   Reveal on scroll
   =============================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal="left"]  { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="zoom"]  { transform: scale(.9); }
[data-reveal].is-visible { opacity: 1; transform: none; }
/* no mobile, deslizes laterais viram verticais (evita rolagem horizontal) */
@media (max-width: 980px) { [data-reveal="left"], [data-reveal="right"] { transform: translateY(28px); } }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ===============================================================
   "Versão atualizada" — adições aditivas (v2)
   =============================================================== */

/* Barra de progresso de rolagem */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 130; pointer-events: none; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--grad);
  box-shadow: 0 0 12px rgba(201,168,92,.6); transition: width .08s linear; }

/* Aviso de nova versão */
.topbar { position: relative; z-index: 95; background: linear-gradient(120deg, #5d7456, #6a8262 45%, #b89a52);
  color: #fff; overflow: hidden; max-height: 70px; transition: max-height .45s var(--ease), opacity .35s, transform .45s var(--ease); }
.topbar::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.22) 50%, transparent 80%);
  background-size: 250% 100%; animation: shine 5s linear infinite; }
@keyframes shine { to { background-position: -250% 0; } }
.topbar.is-closed { max-height: 0; opacity: 0; transform: translateY(-100%); }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 1rem; min-height: 42px; position: relative; }
.topbar__msg { font-size: .86rem; font-weight: 500; letter-spacing: .01em; display: flex; align-items: center; gap: .6rem; text-align: center; }
.topbar__tag { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 100px; background: rgba(255,255,255,.92); color: #5b7253; }
.topbar__close { position: absolute; right: 0; width: 30px; height: 30px; border: none; background: rgba(255,255,255,.15);
  border-radius: 50%; color: #fff; font-size: 1.2rem; line-height: 1; display: grid; place-items: center; transition: background .25s; }
.topbar__close:hover { background: rgba(255,255,255,.3); }

/* Selo de versão no rodapé */
.ver-badge { display: inline-block; margin-left: .4rem; padding: .15rem .6rem; border-radius: 100px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--grad-soft); border: 1px solid var(--stroke); color: var(--gold-deep); vertical-align: middle; }

/* Botão voltar ao topo */
.to-top { position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: calc(clamp(1rem, 3vw, 1.8rem) + 70px);
  z-index: 90; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  color: var(--sage); background: rgba(255,255,255,.92); border: 1px solid var(--stroke);
  box-shadow: 0 12px 30px -12px rgba(44,58,40,.45); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(.9);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .25s, color .25s; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--grad); color: #fff; transform: translateY(-3px); }

/* ===============================================================
   Responsivo
   =============================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; min-height: 360px; }
  .split__grid, .contact__grid, .tech { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .tech__tabs { flex-direction: row; flex-wrap: wrap; }
  .tech__tab { flex: 1 1 auto; text-align: center; }
  .tech__panels { grid-template-columns: 1fr; }
  .tech__panel-media { min-height: 200px; order: -1; }
  .about { grid-template-columns: 1fr; text-align: center; }
  .about__photo { margin-bottom: 1.6rem; }
  .about__badges { justify-content: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cards-grid, .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav { position: fixed; inset: 76px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(251,247,240,.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--stroke);
    padding: 1rem var(--gutter) 1.4rem; transform: translateY(-130%); transition: transform .4s var(--ease); }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: .9rem 1rem; border-radius: 12px; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .cards-grid, .cards-grid--3 { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: .3rem; }
  .glass-chip { display: none; }
  .stat-float { right: 2%; }
  body { font-size: 16px; }
}
