/* ==========================================================================
   Dra. Camila Laranja · Base
   Tokens, fontes, reset e tipografia. Detalhes das escolhas em DESIGN.md
   ========================================================================== */

@font-face { font-family: 'Gambetta'; src: url('/assets/fonts/gambetta-300.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gambetta'; src: url('/assets/fonts/gambetta-300-italic.woff2') format('woff2'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Gambetta'; src: url('/assets/fonts/gambetta-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gambetta'; src: url('/assets/fonts/gambetta-400-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Gambetta'; src: url('/assets/fonts/gambetta-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Supreme'; src: url('/assets/fonts/supreme-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Supreme'; src: url('/assets/fonts/supreme-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Supreme'; src: url('/assets/fonts/supreme-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  /* Cor */
  --color-bg: #F5EEE6;
  --color-surface: #FBF7F2;
  --color-sand: #E9DACA;
  --color-sand-strong: #D9C4AF;
  --color-ink: #2A1E1A;
  --color-ink-muted: #6A5850;
  --color-action: #A9542B;
  --color-action-hover: #8C4220;
  --color-accent-text: #8C4220;
  --color-deep: #34202A;
  --color-deep-2: #452C38;
  --color-on-deep: #F5EEE6;
  --color-on-deep-muted: #CDB9B0;
  --color-brand-mark: #D9955A;
  --color-focus: #A9542B;

  /* Tipografia */
  --font-display: 'Gambetta', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --font-text: 'Supreme', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --fs-display: clamp(2.6rem, 1.45rem + 5vw, 6rem);
  --fs-h2: clamp(2rem, 1.3rem + 2.8vw, 3.75rem);
  --fs-h3: clamp(1.35rem, 1.1rem + 0.9vw, 1.75rem);
  --fs-lead: clamp(1.125rem, 1.05rem + 0.35vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-label: 0.75rem;

  /* Espaço */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-5: 24px;
  --space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 96px; --space-10: 128px;
  --section-y: clamp(72px, 10vw, 168px);
  --gutter: clamp(20px, 4vw, 48px);
  --container: 1320px;

  /* Forma */
  --radius-card: 20px;
  --radius-field: 12px;
  --radius-pill: 999px;
  --line: 1px solid var(--color-sand);

  /* Movimento */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --dur-fast: .25s;
  --dur: .5s;

  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-text);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, picture { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--color-action); color: var(--color-surface); }

/* Tipografia */
.display, .h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-display);
  line-height: .98;
  letter-spacing: -0.03em;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.display em, .h1 em, .h2 em, .h3 em {
  font-style: italic;
  color: var(--color-accent-text);
}
.on-deep .display em, .on-deep .h1 em, .on-deep .h2 em, .on-deep .h3 em { color: var(--color-brand-mark); }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--color-ink-muted); max-width: 58ch; }
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-text); font-weight: 500;
  font-size: var(--fs-label); letter-spacing: .22em; text-transform: uppercase;
  color: var(--color-ink-muted);
}
.label::before { content: ''; width: 22px; height: 1px; background: currentColor; opacity: .6; }
.label--plain::before { display: none; }
.muted { color: var(--color-ink-muted); }
.small { font-size: var(--fs-small); }

/* Estrutura */
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: calc(820px + var(--gutter) * 2); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 104px); }
.on-deep { background: var(--color-deep); color: var(--color-on-deep); }
.on-deep .muted, .on-deep .lead, .on-deep .label { color: var(--color-on-deep-muted); }
.on-surface { background: var(--color-surface); }
.section-head { display: grid; gap: var(--space-5); margin-bottom: clamp(40px, 6vw, 88px); max-width: 860px; }
.section-head--split { max-width: none; grid-template-columns: 1fr; align-items: end; }
@media (min-width: 900px) { .section-head--split { grid-template-columns: 1.2fr .8fr; gap: var(--space-8); } }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -100px; z-index: 1000; background: var(--color-ink); color: var(--color-surface); padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

/* Grão fotográfico: SVG feTurbulence como imagem de fundo (nunca filter direto) */
.grain { position: relative; isolation: isolate; }
.grain::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .35 0 0 0 0 .25 0 0 0 0 .2 0 0 0 .09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.on-deep.grain::after { mix-blend-mode: screen; opacity: .35; }

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

/* ==========================================================================
   Componentes globais: botões, links, cabeçalho, menu, rodapé, avisos
   ========================================================================== */

/* Botões: o fundo preenche da esquerda e a seta desliza. Pressionar reduz 3%. */
.btn {
  --btn-bg: var(--color-action);
  --btn-fill: var(--color-action-hover);
  --btn-fg: var(--color-surface);
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 28px;
  border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-text); font-weight: 500; font-size: 1rem; letter-spacing: .01em;
  text-decoration: none; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur) var(--ease-out), color var(--dur-fast);
  -webkit-tap-highlight-color: transparent;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--btn-fill);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .55s var(--ease-out);
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { box-shadow: 0 14px 30px -14px rgba(140, 66, 32, .55); }
.btn:active { transform: scale(.97); }
.btn .btn__icon { width: 18px; height: 18px; flex: none; transition: transform .45s var(--ease-out); }
.btn:hover .btn__icon { transform: translateX(4px); }
.btn--ghost { --btn-bg: transparent; --btn-fill: var(--color-ink); --btn-fg: var(--color-ink); box-shadow: inset 0 0 0 1px var(--color-sand-strong); }
.btn--ghost:hover { --btn-fg: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-ink); }
.btn--light { --btn-bg: var(--color-on-deep); --btn-fill: var(--color-brand-mark); --btn-fg: var(--color-deep); }
.btn--light:hover { box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); }
.btn--ghost-light { --btn-bg: transparent; --btn-fill: var(--color-on-deep); --btn-fg: var(--color-on-deep); box-shadow: inset 0 0 0 1px rgba(245,238,230,.35); }
.btn--ghost-light:hover { --btn-fg: var(--color-deep); }
.btn--sm { min-height: 44px; padding: 0 20px; font-size: .94rem; }
.btn--block { width: 100%; }
@media (max-width: 520px) { .btn { white-space: normal; text-align: center; line-height: 1.25; padding-block: 12px; } }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; text-decoration: none; color: var(--color-accent-text);
  background: linear-gradient(currentColor, currentColor) left bottom / 0 1px no-repeat;
  padding-bottom: 3px; transition: background-size .5s var(--ease-out);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .4s var(--ease-out); }
.link-arrow:hover { background-size: 100% 1px; }
.link-arrow:hover svg { transform: translateX(4px); }
.on-deep .link-arrow { color: var(--color-brand-mark); }

/* Cabeçalho */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  transition: background-color .4s, box-shadow .4s, transform .5s var(--ease-out), height .4s var(--ease-out);
}
.site-header.is-scrolled { background: rgba(245, 238, 230, .9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--color-sand); --header-h: 70px; }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); }
.brand { display: block; flex: none; text-decoration: none; }
.brand img { height: 52px; width: auto; transition: height .4s var(--ease-out); }
.is-scrolled .brand img { height: 42px; }
@media (max-width: 480px) { .brand img { height: 42px; } .is-scrolled .brand img { height: 38px; } }

.nav { display: none; }
.nav__list { list-style: none; display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 6px; height: 44px;
  font-size: .95rem; font-weight: 500; text-decoration: none; color: var(--color-ink);
}
.nav__link::after { content: ''; position: absolute; left: 0; right: 0; bottom: 8px; height: 1px; background: var(--color-action); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after, .nav__item.is-open .nav__link::after { transform: scaleX(1); transform-origin: left; }
.nav__link svg { width: 14px; height: 14px; transition: transform .35s var(--ease-out); }
.nav__item.is-open .nav__link svg { transform: rotate(180deg); }

.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--color-surface); box-shadow: 0 30px 60px -30px rgba(42, 30, 26, .35), 0 1px 0 var(--color-sand) inset;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s, transform .45s var(--ease-out), visibility 0s .3s;
}
.nav__item.is-open .mega { opacity: 1; visibility: visible; transform: none; transition: opacity .3s, transform .45s var(--ease-out); }
.mega__inner { display: grid; grid-template-columns: 1.1fr repeat(4, 1fr); gap: var(--space-7); padding-block: var(--space-7); }
.mega__intro p { color: var(--color-ink-muted); font-size: var(--fs-small); margin-top: var(--space-3); max-width: 30ch; }
.mega__group h3 { font-size: var(--fs-label); letter-spacing: .22em; text-transform: uppercase; color: var(--color-ink-muted); font-weight: 500; font-family: var(--font-text); margin-bottom: var(--space-4); }
.mega__group ul { list-style: none; display: grid; gap: 4px; }
.mega__group a { display: inline-block; padding: 6px 0; font-family: var(--font-display); font-size: 1.28rem; line-height: 1.2; text-decoration: none; transition: color .25s, transform .4s var(--ease-out); }
.mega__group a:hover { color: var(--color-accent-text); transform: translateX(4px); }

.header-cta { display: none; }
.menu-toggle {
  display: inline-flex; align-items: center; gap: 10px; height: 44px; padding: 0 4px 0 14px;
  font-size: .9rem; font-weight: 500; letter-spacing: .04em;
}
.menu-toggle__bars { position: relative; width: 26px; height: 12px; }
.menu-toggle__bars::before, .menu-toggle__bars::after { content: ''; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; transition: transform .45s var(--ease-out), top .45s var(--ease-out); }
.menu-toggle__bars::before { top: 0; }
.menu-toggle__bars::after { top: 10px; }
.menu-open .menu-toggle__bars::before { top: 5px; transform: rotate(45deg); }
.menu-open .menu-toggle__bars::after { top: 5px; transform: rotate(-45deg); }

@media (min-width: 1080px) {
  .nav { display: block; position: static; }
  .nav__item { position: static; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Menu mobile */
.drawer {
  position: fixed; inset: 0; z-index: 90; background: var(--color-bg);
  padding: calc(var(--header-h) + 16px) var(--gutter) 32px;
  display: flex; flex-direction: column; gap: var(--space-6);
  overflow-y: auto; overscroll-behavior: contain;
  clip-path: inset(0 0 100% 0); visibility: hidden;
  transition: clip-path .7s var(--ease-out), visibility 0s .7s;
}
.menu-open .drawer { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path .7s var(--ease-out); }
.drawer__primary { list-style: none; display: grid; }
.drawer__primary a { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: var(--line); font-family: var(--font-display); font-size: 2rem; line-height: 1.1; text-decoration: none; }
.drawer__primary a span { font-family: var(--font-text); font-size: var(--fs-label); letter-spacing: .2em; color: var(--color-ink-muted); }
.drawer details { border-bottom: var(--line); }
.drawer summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 14px 0; font-family: var(--font-display); font-size: 2rem; line-height: 1.1; cursor: pointer; }
.drawer summary::-webkit-details-marker { display: none; }
.drawer summary svg { width: 22px; height: 22px; transition: transform .4s var(--ease-out); }
.drawer details[open] summary svg { transform: rotate(45deg); }
.drawer details ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px; padding-bottom: 18px; }
.drawer details a { display: block; padding: 8px 0; font-size: 1rem; text-decoration: none; color: var(--color-ink-muted); }
.drawer__foot { margin-top: auto; display: grid; gap: var(--space-4); }
.drawer__foot p { margin: 0; font-size: var(--fs-small); color: var(--color-ink-muted); }

/* Símbolo do logo (pétalas) usado como ornamento */
.mark { width: 64px; height: 64px; color: var(--color-action); }
.mark path, .mark rect { vector-effect: non-scaling-stroke; }
.mark--watermark { position: absolute; pointer-events: none; color: var(--color-sand); opacity: .7; }

/* Rodapé */
.site-footer { background: var(--color-deep); color: var(--color-on-deep); padding-top: clamp(72px, 9vw, 128px); position: relative; overflow: hidden; }
.footer-cta { display: grid; gap: var(--space-6); padding-bottom: clamp(56px, 8vw, 104px); border-bottom: 1px solid rgba(245, 238, 230, .14); }
@media (min-width: 900px) { .footer-cta { grid-template-columns: 1.4fr .6fr; align-items: end; } .footer-cta__actions { justify-self: end; } }
.footer-cta__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.footer-grid { display: grid; gap: var(--space-7); padding-block: clamp(48px, 6vw, 80px); grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand img { height: 48px; width: auto; margin-bottom: var(--space-5); }
.footer-brand p { color: var(--color-on-deep-muted); font-size: var(--fs-small); max-width: 36ch; }
.footer-col h2 { font-family: var(--font-text); font-size: var(--fs-label); letter-spacing: .22em; text-transform: uppercase; font-weight: 500; color: var(--color-on-deep-muted); margin-bottom: var(--space-4); }
.footer-col ul { list-style: none; display: grid; gap: 2px; }
.footer-col a { display: inline-block; padding: 5px 0; color: var(--color-on-deep); text-decoration: none; font-size: .98rem; transition: color .25s, transform .4s var(--ease-out); }
.footer-col a:hover { color: var(--color-brand-mark); transform: translateX(3px); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4); padding-block: var(--space-6); border-top: 1px solid rgba(245, 238, 230, .14); font-size: .85rem; color: var(--color-on-deep-muted); }
.footer-legal a { color: inherit; }
.footer-legal nav { display: flex; flex-wrap: wrap; gap: var(--space-5); }
.footer-disclaimer { font-size: .8rem; color: var(--color-on-deep-muted); max-width: 90ch; padding-bottom: var(--space-6); margin: 0; opacity: .85; }

/* WhatsApp fixo: discreto, sem pulsar */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 18px 0 16px; border-radius: var(--radius-pill);
  background: var(--color-ink); color: var(--color-surface); text-decoration: none; font-weight: 500; font-size: .95rem;
  box-shadow: 0 18px 40px -18px rgba(42, 30, 26, .6);
  transform: translateY(140%); transition: transform .6s var(--ease-out), background-color .3s;
}
.wa-float.is-visible { transform: none; }
.wa-float:hover { background: var(--color-action); }
.wa-float:active { transform: scale(.96); }
.wa-float svg { width: 22px; height: 22px; }
.wa-float__text { display: none; }
@media (min-width: 700px) { .wa-float__text { display: inline; } }
@media (max-width: 699px) { .wa-float { width: 56px; padding: 0; justify-content: center; } }

/* Consentimento de cookies (LGPD) */
.consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120; max-width: 520px;
  background: var(--color-surface); border: var(--line); border-radius: var(--radius-card);
  padding: 20px 22px; box-shadow: 0 30px 60px -30px rgba(42,30,26,.45);
  display: grid; gap: 14px; font-size: .92rem;
}
.consent[hidden] { display: none; }
.consent p { margin: 0; color: var(--color-ink-muted); }
.consent__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Breadcrumb */
.crumbs { font-size: .85rem; color: var(--color-ink-muted); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs li + li::before { content: '/'; margin-right: 8px; opacity: .5; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--color-accent-text); }

/* FAQ */
.faq { border-top: var(--line); }
.faq details { border-bottom: var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr 28px; gap: var(--space-5); align-items: center;
  padding: 26px 0; font-family: var(--font-display); font-size: clamp(1.2rem, 1.05rem + .6vw, 1.55rem); line-height: 1.25;
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--color-accent-text); }
.faq__icon { position: relative; width: 28px; height: 28px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--color-sand-strong); transition: background-color .3s, transform .5s var(--ease-out); }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 11px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); transition: transform .45s var(--ease-out); }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] .faq__icon { background: var(--color-ink); color: var(--color-surface); transform: rotate(180deg); }
.faq details[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__answer { padding: 0 48px 28px 0; color: var(--color-ink-muted); max-width: 70ch; }
.faq__answer p:last-child { margin-bottom: 0; }

/* Chips */
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--radius-pill); background: var(--color-sand); font-size: .88rem; line-height: 1.2; text-decoration: none; }
a.chip { transition: background-color .25s, color .25s; }
a.chip:hover { background: var(--color-ink); color: var(--color-surface); }
a.chip[aria-current="page"] { background: var(--color-ink); color: var(--color-surface); }

/* Imagem em arco de pétala */
.petal { clip-path: url(#clip-petala); }
.photo-frame { position: relative; }
.photo-frame img, .about__photo picture, .story__photos picture, .insta__card picture { width: 100%; height: 100%; object-fit: cover; }

/* Revelações (estado inicial só quando JS ativo) */
.js [data-reveal] { opacity: 0; }
.js [data-reveal="clip"] { opacity: 1; clip-path: inset(100% 0 0 0); }
.no-motion [data-reveal] { opacity: 1 !important; clip-path: none !important; transform: none !important; }

/* ==========================================================================
   Home
   ========================================================================== */

/* Hero */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(20px, 3vw, 40px)); padding-bottom: clamp(56px, 7vw, 104px); overflow: hidden; }
.hero__grid { display: grid; gap: clamp(40px, 6vw, 88px); align-items: center; }
@media (min-width: 960px) { .hero__grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); } }
.hero__eyebrow { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; margin-bottom: clamp(20px, 2.4vw, 30px); }
.hero__crn { font-size: .85rem; color: var(--color-ink-muted); padding: 6px 12px; border-radius: var(--radius-pill); box-shadow: inset 0 0 0 1px var(--color-sand-strong); }
.hero h1 { max-width: 15ch; font-size: clamp(2.6rem, 1.3rem + 4.3vw, 5.25rem); }
.hero__lead { margin-top: clamp(22px, 3vw, 34px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(28px, 4vw, 44px); }
.hero__proof { list-style: none; display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 0; margin-top: clamp(40px, 6vw, 72px); border-top: var(--line); padding-top: 22px; }
.hero__proof li { padding-right: clamp(16px, 3vw, 40px); margin-right: clamp(16px, 3vw, 40px); border-right: var(--line); }
.hero__proof li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__proof strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.3rem); line-height: 1; letter-spacing: -.02em; }
.hero__proof span { display: block; margin-top: 6px; font-size: .82rem; line-height: 1.35; color: var(--color-ink-muted); max-width: 16ch; }
@media (max-width: 520px) {
  .hero__proof { grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .hero__proof li:nth-child(2) { border-right: 0; margin-right: 0; }
  .hero__proof li:nth-child(3) { grid-column: 1 / -1; }
}

.hero__media { position: relative; justify-self: center; width: min(100%, 440px); }
@media (min-width: 960px) { .hero__media { justify-self: end; } }
.hero__photo { aspect-ratio: 4 / 5; background: var(--color-sand); }
.hero__photo-inner { width: 100%; height: 100%; overflow: hidden; }
.hero__photo picture { width: 100%; height: 100%; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; transform: scale(1.08); }
.hero__mark rect { display: none; }
@media (max-width: 959px) { .hero__mark { display: none; } }
.hero__mark { width: 128%; height: auto; left: -14%; top: -6%; z-index: -1; color: var(--color-sand-strong); opacity: .55; }
.hero__note {
  position: absolute; left: clamp(-36px, -3vw, -12px); bottom: 12%;
  display: flex; align-items: center; gap: 12px; max-width: 250px;
  padding: 14px 18px; border-radius: 16px; background: var(--color-surface);
  box-shadow: 0 24px 50px -26px rgba(42, 30, 26, .45); font-size: .88rem; line-height: 1.35;
}
.hero__note svg { width: 34px; height: 34px; flex: none; color: var(--color-action); }
@media (max-width: 959px) { .hero__note { left: 12px; } }

/* Leitura funcional interativa */
.reading { background: var(--color-surface); }
.reading__shell { display: grid; gap: clamp(32px, 5vw, 72px); }
@media (min-width: 1024px) { .reading__shell { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: start; } .reading__aside { position: sticky; top: calc(var(--header-h) + 32px); } }
.reading__aside .h2 { max-width: 12ch; }
.reading__aside .lead { margin-top: var(--space-5); }
.reading__progress { margin-top: clamp(28px, 4vw, 48px); display: grid; gap: 14px; }
.reading__steps { list-style: none; display: grid; gap: 2px; counter-reset: step; }
.reading__steps li { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 12px; padding: 10px 0; color: var(--color-ink-muted); transition: color .3s; }
.reading__steps li::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--color-sand-strong); font-size: .85rem; transition: background-color .35s, color .35s, box-shadow .35s; }
.reading__steps li.is-current { color: var(--color-ink); }
.reading__steps li.is-current::before { background: var(--color-action); color: var(--color-surface); box-shadow: none; }
.reading__steps li.is-done::before { background: var(--color-ink); color: var(--color-surface); box-shadow: none; content: '✓'; }
.reading__disclaimer { font-size: .82rem; color: var(--color-ink-muted); margin-top: var(--space-5); max-width: 42ch; }

.reading__stage { position: relative; min-height: 520px; border-radius: 28px; background: var(--color-bg); padding: clamp(22px, 4vw, 48px); box-shadow: 0 1px 0 var(--color-sand) inset; }
.reading__panel[hidden] { display: none; }
.reading__count { font-size: var(--fs-label); letter-spacing: .22em; text-transform: uppercase; color: var(--color-ink-muted); }
.reading__q { font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); line-height: 1.1; letter-spacing: -.015em; margin: 10px 0 clamp(20px, 3vw, 32px); }
.reading__q em { font-style: italic; color: var(--color-accent-text); }

.phase-grid { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .phase-grid { grid-template-columns: 1fr 1fr; } }
.phase-btn {
  position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; text-align: left;
  width: 100%; min-height: 84px; padding: 16px 18px; border-radius: 18px; background: var(--color-surface);
  box-shadow: inset 0 0 0 1px var(--color-sand); overflow: hidden; isolation: isolate;
  transition: box-shadow .35s, transform .35s var(--ease-out), color .35s;
}
.phase-btn::before { content: ''; position: absolute; inset: 0; z-index: -1; background: var(--color-deep); transform: translateY(101%); transition: transform .55s var(--ease-out); }
.phase-btn:hover { box-shadow: inset 0 0 0 1px var(--color-ink); }
.phase-btn:hover, .phase-btn[aria-pressed="true"] { color: var(--color-on-deep); }
.phase-btn:hover::before, .phase-btn[aria-pressed="true"]::before { transform: none; }
.phase-btn:active { transform: scale(.98); }
.phase-btn__num { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; box-shadow: inset 0 0 0 1px currentColor; font-size: .78rem; letter-spacing: .04em; opacity: .7; flex: none; }
.phase-btn__text { min-width: 0; }
.phase-btn__label { display: block; font-family: var(--font-display); font-size: 1.28rem; line-height: 1.15; overflow-wrap: break-word; }
.phase-btn__detail { display: block; margin-top: 4px; font-size: .84rem; line-height: 1.35; opacity: .75; }
.phase-btn__go svg { width: 20px; height: 20px; opacity: .45; transition: opacity .3s, transform .45s var(--ease-out); }
.phase-btn:hover .phase-btn__go svg { opacity: 1; transform: translateX(3px); }
@media (min-width: 600px) {
  .phase-btn { grid-template-columns: 1fr auto; grid-template-rows: auto 1fr; align-items: start; min-height: 128px; padding: 18px 20px; }
  .phase-btn__num { grid-column: 1; grid-row: 1; width: 32px; height: 32px; }
  .phase-btn__go { grid-column: 2; grid-row: 1; }
  .phase-btn__text { grid-column: 1 / -1; grid-row: 2; align-self: end; }
}

.signal-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.signal {
  display: inline-flex; align-items: center; gap: 10px; text-align: left;
  min-height: 48px; padding: 10px 18px 10px 12px; border-radius: var(--radius-pill);
  background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-sand);
  font-size: .98rem; line-height: 1.3; transition: background-color .3s, color .3s, box-shadow .3s, transform .3s var(--ease-out);
}
.signal__box { position: relative; flex: none; width: 24px; height: 24px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--color-sand-strong); transition: background-color .3s, box-shadow .3s; }
.signal__box::after { content: ''; position: absolute; left: 8px; top: 5px; width: 6px; height: 11px; border: solid var(--color-surface); border-width: 0 2px 2px 0; transform: rotate(45deg) scale(0); transition: transform .35s var(--ease-out); }
.signal:hover { box-shadow: inset 0 0 0 1px var(--color-ink); }
.signal:active { transform: scale(.97); }
.signal[aria-pressed="true"] { background: var(--color-ink); color: var(--color-surface); box-shadow: none; }
.signal[aria-pressed="true"] .signal__box { background: var(--color-action); box-shadow: none; }
.signal[aria-pressed="true"] .signal__box::after { transform: rotate(45deg) scale(1); }

.reading__nav { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; margin-top: clamp(24px, 4vw, 40px); padding-top: 22px; border-top: var(--line); }
.reading__back { display: inline-flex; align-items: center; gap: 8px; height: 44px; font-weight: 500; color: var(--color-ink-muted); transition: color .25s; }
.reading__back:hover { color: var(--color-ink); }
.reading__back svg { width: 16px; height: 16px; }
.reading__hint { font-size: .85rem; color: var(--color-ink-muted); }
.btn[disabled] { opacity: .45; pointer-events: none; }

.result__head { display: grid; gap: 8px; margin-bottom: clamp(20px, 3vw, 30px); }
.result__axes { list-style: none; counter-reset: axis; display: grid; }
.result__axes li { counter-increment: axis; display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; border-top: var(--line); }
.result__axes li::before { content: '0' counter(axis); font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--color-action); }
.result__axes h3 { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.2; margin-bottom: 6px; }
.result__axes p { margin: 0 0 8px; color: var(--color-ink-muted); font-size: .96rem; }
.result__axes a { font-size: .9rem; }
.result__alert { display: flex; gap: 12px; padding: 14px 16px; border-radius: 14px; background: #F3E1D3; color: var(--color-ink); font-size: .92rem; margin-top: 16px; }
.result__alert svg { width: 20px; height: 20px; flex: none; color: var(--color-action); margin-top: 2px; }
.result__bottom { display: grid; gap: 14px; margin-top: 22px; }
@media (min-width: 720px) { .result__bottom { grid-template-columns: 1.1fr .9fr; } }
.result__plan { border-radius: 20px; background: var(--color-deep); color: var(--color-on-deep); padding: 24px; display: grid; gap: 12px; align-content: start; }
.result__plan .label { color: var(--color-on-deep-muted); }
.result__plan-name { font-family: var(--font-display); font-size: 1.45rem; line-height: 1.15; }
.result__plan-price { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; }
.result__plan-price small { font-family: var(--font-text); font-size: .85rem; color: var(--color-on-deep-muted); margin-left: 6px; }
.result__quote { border-radius: 20px; background: var(--color-surface); padding: 24px; box-shadow: inset 0 0 0 1px var(--color-sand); margin: 0; display: grid; align-content: space-between; gap: 14px; }
.result__quote p { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; line-height: 1.45; margin: 0; }
.result__quote footer { font-size: .85rem; color: var(--color-ink-muted); }
.result__restart { margin-top: 18px; }

/* Comparativo */
.compare { display: grid; border-top: var(--line); }
.compare__row { display: grid; grid-template-columns: 1fr; gap: 8px 32px; padding: 24px 0; border-bottom: var(--line); }
@media (min-width: 820px) { .compare__row { grid-template-columns: .7fr 1fr 1.2fr; align-items: baseline; } }
.compare__row--head { padding: 0 0 16px; border-bottom: 0; }
.compare__row--head span { font-size: var(--fs-label); letter-spacing: .22em; text-transform: uppercase; color: var(--color-ink-muted); }
@media (max-width: 819px) { .compare__row--head { display: none; } }
.compare__topic { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.2; }
.compare__old { color: var(--color-ink-muted); text-decoration: line-through; text-decoration-color: rgba(106, 88, 80, .35); }
.compare__new { font-size: 1.08rem; }
.compare__new::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--color-action); margin-right: 12px; transform: translateY(-2px); }
@media (max-width: 819px) { .compare__old::before { content: 'Dieta genérica: '; text-decoration: none; display: inline; } }

/* Tratamentos: o que você quer resolver */
.care { display: grid; gap: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px); }
@media (min-width: 960px) { .care { grid-template-columns: 1fr 1fr; } }
.care__title { font-family: var(--font-text); font-size: var(--fs-label); letter-spacing: .22em; text-transform: uppercase; font-weight: 500; color: var(--color-brand-mark); margin-bottom: 8px; }
.care__list { list-style: none; border-top: 1px solid rgba(245, 238, 230, .16); }
.care__item {
  position: relative; display: grid; grid-template-columns: 1fr 40px; gap: 4px 16px; align-items: center;
  padding: 18px 8px 18px 0; border-bottom: 1px solid rgba(245, 238, 230, .16);
  color: var(--color-on-deep); text-decoration: none; transition: padding .45s var(--ease-out), background-color .35s;
}
.care__name { grid-column: 1; font-family: var(--font-display); font-size: clamp(1.35rem, 1.15rem + .7vw, 1.7rem); line-height: 1.15; transition: color .3s; }
.care__desc { grid-column: 1; font-size: .95rem; line-height: 1.45; color: var(--color-on-deep-muted); }
.care__arrow { grid-column: 2; grid-row: 1 / span 2; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(245, 238, 230, .28); transition: background-color .35s, box-shadow .35s, color .35s, transform .45s var(--ease-out); }
.care__arrow svg { width: 16px; height: 16px; }
.care__item:hover { padding-left: 12px; background: rgba(245, 238, 230, .04); }
.care__item:hover .care__name { color: var(--color-brand-mark); }
.care__item:hover .care__arrow { background: var(--color-brand-mark); color: var(--color-deep); box-shadow: none; transform: translateX(2px); }
.care__item:active { transform: scale(.99); }
.on-deep .lead .link-arrow { white-space: nowrap; }

/* Sobre na home */
.about { display: grid; gap: clamp(40px, 6vw, 96px); align-items: center; }
@media (min-width: 960px) { .about { grid-template-columns: .85fr 1.15fr; } }
.about__media { position: relative; }
.about__photo { aspect-ratio: 2 / 3; overflow: hidden; border-radius: 240px 240px 24px 24px; max-width: 520px; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__badge { position: absolute; right: clamp(0px, 2vw, 24px); top: 10%; width: 132px; height: 132px; border-radius: 50%; background: var(--color-deep); color: var(--color-on-deep); display: grid; place-items: center; text-align: center; font-size: .78rem; line-height: 1.3; padding: 18px; }
.about__badge strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; letter-spacing: .02em; }
.about__text .h2 { max-width: 16ch; }
.about__text > p { margin-top: var(--space-5); max-width: 58ch; }
.credentials { list-style: none; display: grid; margin-top: var(--space-6); border-top: var(--line); }
.credentials li { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 14px 0; border-bottom: var(--line); align-items: baseline; }
.credentials span { font-size: .85rem; color: var(--color-ink-muted); white-space: nowrap; }

/* Método */
.method { display: grid; gap: clamp(40px, 6vw, 96px); }
@media (min-width: 960px) { .method { grid-template-columns: .8fr 1.2fr; } .method__head { position: sticky; top: calc(var(--header-h) + 40px); align-self: start; } }
.method__steps { list-style: none; position: relative; display: grid; }
.method__line { position: absolute; left: 23px; top: 24px; bottom: 24px; width: 1px; background: var(--color-sand-strong); }
.method__line span { position: absolute; inset: 0 0 auto 0; height: 100%; background: var(--color-action); transform-origin: top; transform: scaleY(0); }
.method__step { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: clamp(18px, 3vw, 36px); padding-bottom: clamp(36px, 5vw, 64px); }
.method__step:last-child { padding-bottom: 0; }
.method__dot { position: relative; z-index: 1; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--color-bg); box-shadow: inset 0 0 0 1px var(--color-sand-strong); font-family: var(--font-display); font-size: 1.1rem; transition: background-color .4s, color .4s, box-shadow .4s; }
.method__step.is-active .method__dot { background: var(--color-action); color: var(--color-surface); box-shadow: none; }
.method__step h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); line-height: 1.1; margin: 8px 0 12px; }
.method__step p { color: var(--color-ink-muted); max-width: 54ch; margin: 0; }

/* Depoimentos */
.voices { overflow: hidden; }
.voices__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; }
.rating { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.rating__stars { display: inline-flex; gap: 2px; color: var(--color-action); }
.rating__stars svg { width: 16px; height: 16px; }
.rating strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; line-height: 1; }
.rating span { font-size: .88rem; color: var(--color-ink-muted); }
.rating:hover span { color: var(--color-accent-text); }
.voices__track { display: flex; gap: clamp(14px, 2vw, 24px); padding-inline: var(--gutter); padding-bottom: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; user-select: none; }
.voices__track::-webkit-scrollbar { display: none; }
.voices__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
@media (min-width: 1368px) { .voices__track { padding-inline: calc((100vw - var(--container)) / 2); } }
.voice { flex: none; scroll-snap-align: start; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; width: min(84vw, 360px); padding: clamp(24px, 3vw, 34px); border-radius: var(--radius-card); background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-sand); margin: 0; }
.voice--long { width: min(88vw, 500px); }
.voice--accent { background: var(--color-deep); color: var(--color-on-deep); box-shadow: none; }
.voice blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); line-height: 1.45; }
.voice blockquote::before { content: '“'; display: block; font-size: 3.2rem; line-height: .6; color: var(--color-action); margin-bottom: 10px; }
.voice--accent blockquote::before { color: var(--color-brand-mark); }
.voice figcaption { display: grid; gap: 2px; font-size: .9rem; }
.voice figcaption strong { font-weight: 500; }
.voice figcaption span { color: var(--color-ink-muted); font-size: .82rem; }
.voice--accent figcaption span { color: var(--color-on-deep-muted); }
.voices__controls { display: flex; gap: 10px; }
.icon-btn { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--color-sand-strong); transition: background-color .3s, color .3s, box-shadow .3s, transform .3s var(--ease-out); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: var(--color-ink); color: var(--color-surface); box-shadow: none; }
.icon-btn:active { transform: scale(.94); }

/* Planos */
.plans { display: grid; gap: clamp(14px, 2vw, 20px); grid-template-columns: minmax(0, 1fr); }
@media (min-width: 1024px) { .plans { grid-template-columns: 1.15fr .85fr; } }
.plan-feature { position: relative; overflow: hidden; border-radius: 28px; background: var(--color-deep); color: var(--color-on-deep); padding: clamp(28px, 4vw, 52px); display: grid; gap: var(--space-5); align-content: start; }
.plan-feature__tag { justify-self: start; padding: 6px 14px; border-radius: var(--radius-pill); background: var(--color-brand-mark); color: var(--color-deep); font-size: .8rem; font-weight: 500; letter-spacing: .04em; }
.plan-feature h3 { font-family: var(--font-display); font-weight: 300; font-size: clamp(2rem, 1.5rem + 1.8vw, 3.2rem); line-height: 1.02; letter-spacing: -.02em; max-width: 14ch; }
.plan-feature p { color: var(--color-on-deep-muted); max-width: 48ch; margin: 0; }
.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px; }
.price__value { font-family: var(--font-display); font-size: clamp(2.6rem, 2rem + 2.2vw, 4.2rem); line-height: 1; letter-spacing: -.02em; }
.price__value sup { font-size: .38em; vertical-align: top; position: relative; top: .5em; margin-right: 4px; letter-spacing: 0; }
.price__day { font-size: .92rem; color: var(--color-on-deep-muted); }
.includes { list-style: none; display: grid; gap: 10px; }
.includes li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; }
.includes svg { width: 18px; height: 18px; margin-top: 4px; color: var(--color-brand-mark); }
.plan-feature .mark--watermark { right: -120px; bottom: -120px; width: 420px; height: 420px; color: rgba(245, 238, 230, .06); opacity: 1; }
.plan-list { display: grid; gap: clamp(14px, 2vw, 20px); }
.plan-item { border-radius: 24px; background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-sand); padding: clamp(22px, 3vw, 32px); display: grid; gap: 14px; transition: box-shadow .35s, transform .45s var(--ease-out); }
.plan-item:hover { box-shadow: inset 0 0 0 1px var(--color-ink); transform: translateY(-3px); }
.plan-item__top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.plan-item h3 { font-family: var(--font-display); font-size: 1.45rem; line-height: 1.15; }
.plan-item .price__value { font-size: 2.1rem; }
.plan-item .price__day { color: var(--color-ink-muted); }
.plan-item p { margin: 0; color: var(--color-ink-muted); font-size: .96rem; }
.plan-item details summary { cursor: pointer; display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 500; color: var(--color-accent-text); list-style: none; }
.plan-item details summary::after { content: '+'; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; box-shadow: inset 0 0 0 1px currentColor; font-size: .9rem; line-height: 1; transition: transform .4s var(--ease-out); }
.plan-item details[open] summary::after { transform: rotate(45deg); }
.plan-item details summary::-webkit-details-marker { display: none; }
.plan-item details .includes { margin-top: 12px; font-size: .94rem; }
.plan-item details .includes svg { color: var(--color-action); }
.plans__note { margin-top: var(--space-5); font-size: .88rem; color: var(--color-ink-muted); }

/* Instagram */
.insta { display: grid; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (min-width: 960px) { .insta { grid-template-columns: 1fr 1fr; } }
.insta__handle { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.2rem, 1.2rem + 4vw, 4.6rem); line-height: 1; letter-spacing: -.03em; word-break: break-word; }
.insta__stats { display: flex; gap: clamp(24px, 4vw, 56px); margin: var(--space-6) 0; }
.insta__stats strong { display: block; font-family: var(--font-display); font-size: 2.2rem; line-height: 1; font-weight: 400; }
.insta__stats span { font-size: .85rem; color: var(--color-on-deep-muted); }
.insta__stack { position: relative; height: clamp(360px, 46vw, 560px); }
.insta__card { position: absolute; width: 58%; aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.insta__card img { width: 100%; height: 100%; object-fit: cover; }
.insta__card:nth-child(1) { left: 0; top: 8%; transform: rotate(-5deg); }
.insta__card:nth-child(2) { left: 22%; top: 0; z-index: 2; transform: rotate(2deg); }
.insta__card:nth-child(3) { right: 0; top: 18%; transform: rotate(6deg); }

/* Blog na home e listagens */
.posts { display: grid; gap: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px); }
@media (min-width: 760px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .posts { grid-template-columns: repeat(3, 1fr); } }
.posts--featured { grid-template-columns: 1fr; }
@media (min-width: 960px) { .posts--featured { grid-template-columns: 1.3fr 1fr; grid-template-rows: auto auto; } .posts--featured .post:first-child { grid-row: span 2; } .posts--featured .post:first-child .post__media { aspect-ratio: 4 / 3; } .posts--featured .post:first-child .post__title { font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem); } .posts--featured .post:not(:first-child) { grid-template-columns: .9fr 1.1fr; align-items: center; } .posts--featured .post:not(:first-child) .post__media { aspect-ratio: 1; } }
.post { display: grid; gap: 18px; align-content: start; text-decoration: none; }
.post__body { display: grid; gap: 10px; align-content: start; }
.post__meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--color-ink-muted); }
.post__title { font-family: var(--font-display); font-size: clamp(1.35rem, 1.2rem + .5vw, 1.65rem); line-height: 1.18; letter-spacing: -.01em; transition: color .3s; }
.post__excerpt { color: var(--color-ink-muted); font-size: .96rem; margin: 0; }
.post:hover .post__title { color: var(--color-accent-text); }

/* Foto dos artigos */
.post__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; border-radius: var(--radius-card); background: var(--color-sand); transition: box-shadow .5s var(--ease-out); }
.post__media picture, .post__media img { width: 100%; height: 100%; object-fit: cover; }
.post__media img { transition: transform 1.1s var(--ease-out); }
.post:hover .post__media img { transform: scale(1.05); }
.post:hover .post__media { box-shadow: 0 30px 50px -34px rgba(42,30,26,.55); }
.post__cat { position: absolute; left: 14px; top: 14px; padding: 6px 12px; border-radius: var(--radius-pill); background: rgba(251, 247, 242, .92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--color-ink); }

/* ==========================================================================
   Páginas internas: tratamentos, blog, artigo, sobre, como funciona, legais
   ========================================================================== */

.page-hero { padding-top: calc(var(--header-h) + clamp(32px, 5vw, 72px)); padding-bottom: clamp(48px, 7vw, 96px); position: relative; overflow: hidden; }
.page-hero .crumbs { margin-bottom: clamp(28px, 4vw, 48px); }
.page-hero__grid { display: grid; gap: clamp(32px, 5vw, 72px); align-items: end; }
@media (min-width: 960px) { .page-hero__grid { grid-template-columns: 1.3fr .7fr; } }
.page-hero h1 { max-width: 18ch; font-size: clamp(2.5rem, 1.4rem + 3.6vw, 4.75rem); }
.page-hero .lead { margin-top: var(--space-5); }
.page-hero__mark { right: -80px; top: 40px; width: 380px; height: 380px; }
@media (max-width: 700px) { .page-hero__mark { width: 240px; height: 240px; right: -90px; top: 70px; } }

/* Bloco de resposta direta (formato citado por Google e IAs) */
.answer { position: relative; border-radius: var(--radius-card); background: var(--color-surface); padding: clamp(22px, 3vw, 32px); box-shadow: inset 3px 0 0 var(--color-action), inset 0 0 0 1px var(--color-sand); }
.answer__label { font-size: var(--fs-label); letter-spacing: .22em; text-transform: uppercase; color: var(--color-accent-text); font-weight: 500; margin-bottom: 10px; display: block; }
.answer p { margin: 0; font-size: 1.08rem; line-height: 1.6; }

/* Tratamento */
.symptoms { list-style: none; display: grid; gap: 0 clamp(20px, 4vw, 48px); }
@media (min-width: 760px) { .symptoms { grid-template-columns: 1fr 1fr; } }
.symptoms li { display: grid; grid-template-columns: 26px 1fr; gap: 14px; padding: 18px 0; border-top: var(--line); font-family: var(--font-display); font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); line-height: 1.3; }
.symptoms li::before { content: '“'; font-size: 2rem; line-height: .8; color: var(--color-action); }

.split { display: grid; gap: clamp(32px, 5vw, 80px); }
@media (min-width: 960px) { .split { grid-template-columns: .75fr 1.25fr; } .split__sticky { position: sticky; top: calc(var(--header-h) + 40px); align-self: start; } }

.approach { list-style: none; counter-reset: ap; display: grid; gap: clamp(14px, 2vw, 20px); }
@media (min-width: 760px) { .approach { grid-template-columns: 1fr 1fr; } }
.approach li { counter-increment: ap; border-radius: var(--radius-card); background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-sand); padding: clamp(22px, 3vw, 30px); display: grid; gap: 10px; align-content: start; transition: box-shadow .35s, transform .45s var(--ease-out); }
.approach li:hover { box-shadow: inset 0 0 0 1px var(--color-ink); transform: translateY(-3px); }
.approach li::before { content: counter(ap, decimal-leading-zero); font-family: var(--font-display); color: var(--color-action); font-size: 1.1rem; }
.approach h3 { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.2; }
.approach p { margin: 0; color: var(--color-ink-muted); font-size: .98rem; }
@media (min-width: 760px) { .approach li:nth-child(3n+1) { grid-column: span 2; } .approach li:nth-child(3n+1) p { max-width: 70ch; } }

.exams { display: flex; flex-wrap: wrap; gap: 10px; }
.exams .chip { background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-sand); font-size: .92rem; }
.for-whom { list-style: none; display: grid; gap: 0; border-top: 1px solid rgba(245,238,230,.16); }
.for-whom li { display: grid; grid-template-columns: 22px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(245,238,230,.16); }
.for-whom svg { width: 18px; height: 18px; margin-top: 4px; color: var(--color-brand-mark); }

.plan-cta { display: grid; gap: clamp(24px, 4vw, 48px); border-radius: 28px; background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-sand); padding: clamp(26px, 4vw, 52px); }
@media (min-width: 900px) { .plan-cta { grid-template-columns: 1.1fr .9fr; align-items: center; } }
.plan-cta .price__value { color: var(--color-ink); }
.plan-cta .price__day { color: var(--color-ink-muted); }
.plan-cta .includes svg { color: var(--color-action); }
.plan-cta__actions { display: grid; gap: 12px; }

/* Prosa (artigos, tratamentos, legais) */
.prose { font-size: 1.1rem; line-height: 1.75; max-width: 70ch; }
.prose > * { margin-top: 0; margin-bottom: 0; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.7rem, 1.35rem + 1.2vw, 2.3rem); line-height: 1.12; letter-spacing: -.015em; margin-top: 2em; }
.prose h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.3rem, 1.15rem + .5vw, 1.55rem); line-height: 1.2; margin-top: 1.6em; }
.prose h2 + p, .prose h3 + p { margin-top: .6em; }
.prose ul, .prose ol { padding-left: 1.2em; display: grid; gap: .45em; }
.prose li::marker { color: var(--color-action); }
.prose a { color: var(--color-accent-text); text-decoration: underline; text-decoration-color: rgba(140, 66, 32, .35); transition: text-decoration-color .25s; }
.prose a:hover { text-decoration-color: currentColor; }
.prose strong { font-weight: 500; color: var(--color-ink); }
.prose blockquote { margin: 1.6em 0; padding: 4px 0 4px 24px; border-left: 2px solid var(--color-action); font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height: 1.45; }
.prose > h2:first-child { margin-top: 0; }

/* Artigo */
.article-hero { padding-top: calc(var(--header-h) + clamp(28px, 4vw, 60px)); padding-bottom: clamp(32px, 4vw, 56px); }
.article-hero h1 { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.3rem, 1.5rem + 3.4vw, 4.4rem); line-height: 1.02; letter-spacing: -.025em; max-width: 20ch; margin-top: var(--space-5); }
.article-photo { margin: clamp(28px, 4vw, 48px) auto 0; }
.article-photo picture { display: block; overflow: hidden; border-radius: 24px; aspect-ratio: 16 / 9; background: var(--color-sand); }
.article-photo img { width: 100%; height: 100%; object-fit: cover; }
.article-photo figcaption { margin-top: 10px; font-size: .78rem; color: var(--color-ink-muted); }
@media (max-width: 600px) { .article-photo picture { aspect-ratio: 4 / 3; border-radius: 18px; } }
.article-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; margin-top: var(--space-6); font-size: .9rem; color: var(--color-ink-muted); }
.author-mini { display: inline-flex; align-items: center; gap: 12px; color: var(--color-ink); text-decoration: none; }
.author-mini img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; }
.author-mini small { display: block; color: var(--color-ink-muted); font-size: .8rem; }
.article-layout { display: grid; gap: clamp(40px, 6vw, 88px); padding-bottom: var(--section-y); }
@media (min-width: 1080px) { .article-layout { grid-template-columns: minmax(0, 1fr) 320px; } .article-aside { position: sticky; top: calc(var(--header-h) + 32px); align-self: start; } }
.article-body .answer { margin-bottom: clamp(32px, 4vw, 48px); max-width: 70ch; }
.article-aside { display: grid; gap: 18px; }
.aside-card { border-radius: var(--radius-card); background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-sand); padding: 24px; display: grid; gap: 12px; }
.aside-card--deep { background: var(--color-deep); color: var(--color-on-deep); box-shadow: none; }
.aside-card.aside-card--deep p { color: var(--color-on-deep-muted); }
.aside-card h2 { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.2; }
.aside-card p { margin: 0; font-size: .94rem; color: var(--color-ink-muted); }
.toc ol { list-style: none; display: grid; gap: 2px; counter-reset: toc; }
.toc a { display: grid; grid-template-columns: 26px 1fr; padding: 6px 0; font-size: .92rem; line-height: 1.35; text-decoration: none; color: var(--color-ink-muted); transition: color .25s; counter-increment: toc; }
.toc a::before { content: counter(toc, decimal-leading-zero); font-size: .75rem; padding-top: 2px; }
.toc a:hover, .toc a.is-active { color: var(--color-accent-text); }
.article-updated { font-size: .88rem; color: var(--color-ink-muted); margin-top: clamp(32px, 4vw, 48px); padding-top: 20px; border-top: var(--line); max-width: 70ch; }

.author-box { display: grid; gap: 20px; margin-top: clamp(40px, 5vw, 64px); padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-card); background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-sand); max-width: 70ch; }
@media (min-width: 640px) { .author-box { grid-template-columns: 96px 1fr; } }
.author-box img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: 50% 18%; }
.author-box h2 { font-family: var(--font-display); font-size: 1.4rem; }
.author-box p { margin: 6px 0 12px; color: var(--color-ink-muted); font-size: .96rem; }

.recipe { margin: 0 0 clamp(32px, 4vw, 48px); border-radius: 24px; background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-sand); padding: clamp(24px, 3vw, 40px); display: grid; gap: 24px; max-width: 70ch; }
.recipe__facts { display: flex; flex-wrap: wrap; gap: 10px; }
.recipe__cols { display: grid; gap: 28px; }
@media (min-width: 720px) { .recipe__cols { grid-template-columns: .9fr 1.1fr; } }
.recipe h2 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 12px; }
.recipe ul { list-style: none; display: grid; }
.recipe ul li { padding: 9px 0; border-bottom: var(--line); font-size: .98rem; }
.recipe ol { padding-left: 1.2em; display: grid; gap: 10px; font-size: .98rem; }
.recipe ol li::marker { color: var(--color-action); font-family: var(--font-display); }

/* Blog: filtros */
.filters { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 6px; margin-bottom: clamp(32px, 5vw, 56px); -webkit-mask-image: linear-gradient(90deg, #000 90%, transparent); mask-image: linear-gradient(90deg, #000 90%, transparent); }
.filters::-webkit-scrollbar { display: none; }
.filters .chip { flex: none; background: transparent; box-shadow: inset 0 0 0 1px var(--color-sand-strong); padding: 10px 16px; }
.filters .chip small { opacity: .6; }
.blog-search { position: relative; max-width: 420px; margin-top: var(--space-6); }
.blog-search input { width: 100%; height: 56px; padding: 0 20px 0 52px; border-radius: var(--radius-pill); border: 0; background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-sand-strong); transition: box-shadow .25s; }
.blog-search input:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--color-action); }
.blog-search svg { position: absolute; left: 20px; top: 50%; width: 18px; height: 18px; transform: translateY(-50%); color: var(--color-ink-muted); }
.blog-empty { padding: 40px 0; color: var(--color-ink-muted); }
.post[hidden] { display: none; }

/* Sobre */
.story { display: grid; gap: clamp(40px, 6vw, 96px); }
@media (min-width: 960px) { .story { grid-template-columns: 1fr 1fr; align-items: start; } }
.story__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.story__photos figure { margin: 0; border-radius: 20px; overflow: hidden; }
.story__photos figure:first-child { grid-row: span 2; border-radius: 200px 200px 20px 20px; }
.story__photos img { width: 100%; height: 100%; object-fit: cover; }
.values { display: grid; gap: 0; border-top: var(--line); }
.values > div { display: grid; gap: 8px 40px; padding: clamp(22px, 3vw, 32px) 0; border-bottom: var(--line); }
@media (min-width: 820px) { .values > div { grid-template-columns: .5fr 1fr; } }
.values h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 1.2rem + .8vw, 1.9rem); line-height: 1.15; }
.values p { margin: 0; color: var(--color-ink-muted); max-width: 60ch; }

/* Página legal */
.legal .prose { max-width: 76ch; }
.legal .prose h2 { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.8rem); }
.legal-meta { font-size: .9rem; color: var(--color-ink-muted); }

/* 404 */
.notfound { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 40px) var(--gutter) 80px; }
.notfound .mark { width: 120px; height: 120px; margin: 0 auto 28px; }
.notfound p { color: var(--color-ink-muted); margin: 20px auto 32px; max-width: 46ch; }
.notfound__links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Utilidades de seção */
.stack-lg > * + * { margin-top: clamp(32px, 5vw, 64px); }
.center { text-align: center; }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.actions-row { display: flex; flex-wrap: wrap; gap: 12px; }
.divider-mark { display: flex; align-items: center; gap: 18px; color: var(--color-sand-strong); }
.divider-mark::before, .divider-mark::after { content: ''; flex: 1; height: 1px; background: currentColor; }
.divider-mark svg { width: 28px; height: 28px; color: var(--color-action); }
