/* ==========================================================================
   Robena Molinari — Nutrição Funcional
   Sistema de design. Paleta derivada da marca original (losangos do logotipo).
   ========================================================================== */

:root {
  /* Marca Primária & Nutrição Funcional */
  --plum:        #80367D;
  --plum-700:    #5C2159;
  --plum-900:    #2A122C;
  --rose:        #FF2865;   /* decorativo */
  --rose-cta:    #D81B50;   /* texto/botão — contraste AA sobre branco */
  --pink:        #FF6DA2;
  --peach:       #FF8A69;
  --cyan:        #00C9E6;

  /* Cores Orgânicas & Nutrição */
  --sage:        #2E6F40;   /* Verde Nutrição Funcional */
  --sage-dark:   #1E4A2A;
  --sage-light:  #EEF6F0;
  --terracotta:  #E07A5F;

  /* Neutros quentes */
  --cream:       #FFFBF7;
  --sand:        #F5EDE6;
  --sand-200:    #EADBCE;
  --ink:         #241A25;
  --muted:       #635567;
  --white:       #FFFFFF;

  --wa:          #128C7E;   /* Verde WhatsApp oficial ajustado */

  /* Tipografia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-brand:   "Poiret One", "Fraunces", serif;

  /* Escala fluida */
  --step--1: clamp(.82rem, .79rem + .13vw, .89rem);
  --step-0:  clamp(1rem, .96rem + .18vw, 1.09rem);
  --step-1:  clamp(1.16rem, 1.08rem + .35vw, 1.38rem);
  --step-2:  clamp(1.38rem, 1.22rem + .68vw, 1.85rem);
  --step-3:  clamp(1.65rem, 1.36rem + 1.2vw, 2.5rem);
  --step-4:  clamp(1.95rem, 1.45rem + 2.1vw, 3.4rem);

  /* Espaço e forma */
  --gutter:  clamp(1.25rem, 4vw, 2rem);
  --section: clamp(3.5rem, 8vw, 6.5rem);
  --radius:  20px;
  --radius-sm: 12px;
  --maxw:    1200px;

  --shadow-sm: 0 2px 8px rgba(36,26,37,.04), 0 6px 20px rgba(36,26,37,.04);
  --shadow-md: 0 4px 12px rgba(36,26,37,.06), 0 16px 36px -12px rgba(92,33,89,.22);
  --shadow-lg: 0 24px 60px -20px rgba(42,18,44,.35);
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.015em;
  color: var(--plum-900);
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 20, "WONK" 0;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p  { margin: 0 0 1em; }
a  { color: var(--rose-cta); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--plum); }
ul, ol { margin: 0 0 1em; padding-left: 1.15em; }
li { margin-bottom: .4em; }
strong { font-weight: 600; color: var(--plum-900); }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--pink); color: #fff; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 200; background: var(--plum-900); color: #fff; padding: .7rem 1.2rem;
  border-radius: 0 0 10px 10px; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 0; color: #fff; }

/* ------------------------------------------------------------ estrutura -- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section   { padding-block: var(--section); }
.section--sand  { background: var(--sand); }
.section--plum  { background: var(--plum-900); color: #F2E7EF; }
.section--plum h2, .section--plum h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--step--1); font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--plum); margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--rose), var(--peach));
}
.section--plum .eyebrow { color: var(--pink); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: var(--step-1); line-height: 1.55; margin-bottom: 0; }
.section--plum .section-head p { color: #D8C6D6; }

.lead { font-size: var(--step-1); line-height: 1.55; color: var(--muted); }

/* -------------------------------------------------------------- botões -- */
.btn {
  --btn-bg: var(--rose-cta); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; line-height: 1;
  padding: 1rem 1.6rem; border: 1.5px solid var(--btn-bd); border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg); text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  box-shadow: 0 8px 22px -10px rgba(224,26,84,.55);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(224,26,84,.6); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--plum-700); --btn-bd: rgba(128,54,125,.32);
  box-shadow: none;
}
.btn--ghost:hover { --btn-bg: rgba(128,54,125,.07); --btn-fg: var(--plum-700); box-shadow: none; }
.btn--wa { --btn-bg: var(--wa); box-shadow: 0 8px 22px -10px rgba(17,128,74,.55); }
.btn--wa:hover { --btn-bg: #0D6B3D; box-shadow: 0 14px 30px -12px rgba(17,128,74,.6); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--plum-900); box-shadow: var(--shadow-md); }
.btn--light:hover { --btn-fg: var(--plum-900); }
.btn--sm { padding: .7rem 1.15rem; font-size: .92rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; text-decoration: none; color: var(--rose-cta);
}
.link-arrow::after { content: "→"; transition: transform .2s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------- marca -- */
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand__mark { width: auto; height: 46px; flex: none; }
.brand__name {
  display: block; font-family: var(--font-brand); font-size: 1.5rem; line-height: 1;
  color: var(--rose); letter-spacing: .01em; white-space: nowrap;
}
.brand__tag {
  display: block; font-size: .58rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--muted); margin-top: .3rem; white-space: nowrap;
}
.brand--light .brand__name { color: var(--pink); }
.brand--light .brand__tag  { color: #B9A6BA; }

/* ------------------------------------------------------------ cabeçalho -- */
.topbar {
  background: var(--plum-900); color: #D9C8D8;
  font-size: .82rem; letter-spacing: .01em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 44px; }
/* padding generoso nos links: no celular o alvo de toque precisa de pelo menos
   24x24px, e os ícones sozinhos têm 17px */
.topbar a { display: inline-flex; align-items: center; color: #EBDDE9; text-decoration: none; padding-block: .6rem; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__info { display: flex; align-items: center; gap: 1.25rem; }
.topbar__social { display: flex; align-items: center; gap: .45rem; }
.topbar__social a { padding-inline: .45rem; }
.topbar__social svg { width: 17px; height: 17px; fill: currentColor; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,250,247,.92);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--sand-200); box-shadow: 0 6px 24px -18px rgba(46,18,48,.5); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }

.nav { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.6rem); }
.nav__list { display: flex; align-items: center; gap: clamp(.4rem, 1.4vw, 1.4rem); list-style: none; margin: 0; padding: 0; }
.nav__list a {
  display: block; padding: .5rem .1rem; font-size: .95rem; font-weight: 500;
  color: var(--ink); text-decoration: none; position: relative;
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: .25rem; height: 2px;
  border-radius: 2px; background: var(--rose); transition: right .22s ease;
}
.nav__list a:hover, .nav__list a[aria-current="page"] { color: var(--plum-700); }
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { right: 0; }

/* submenu de serviços */
.has-sub { position: relative; }
.has-sub > button {
  display: flex; align-items: center; gap: .3rem; padding: .5rem .1rem;
  font: inherit; font-size: .95rem; font-weight: 500; color: var(--ink);
  background: none; border: 0; cursor: pointer;
}
.has-sub > button svg { width: 12px; height: 12px; transition: transform .2s ease; }
.has-sub[data-open="true"] > button svg { transform: rotate(180deg); }
.subnav {
  position: absolute; top: calc(100% + .5rem); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 265px; padding: .5rem; margin: 0; list-style: none;
  background: #fff; border: 1px solid var(--sand-200); border-radius: 14px;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: all .18s ease;
}
.has-sub[data-open="true"] .subnav { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.subnav li { margin: 0; }
.subnav a { display: block; padding: .6rem .8rem; border-radius: 9px; font-size: .93rem; }
.subnav a::after { display: none; }
.subnav a:hover { background: var(--sand); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; padding: 0; border: 1.5px solid var(--sand-200);
  border-radius: 12px; background: #fff; cursor: pointer; color: var(--plum-900);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }

/* ---------------------------------------------------------------- hero -- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem); }
.hero::before {
  content: ""; position: absolute; inset: auto -20% 0 35%; height: 120%;
  background: radial-gradient(55% 55% at 50% 45%, rgba(255,109,162,.18), rgba(46,111,64,.08) 50%, transparent 80%);
  pointer-events: none;
}
.hero__grid {
  position: relative; display: grid; gap: clamp(2.25rem, 5vw, 4rem);
  grid-template-columns: 1fr; align-items: center;
}
.hero__title { margin-bottom: .75rem; letter-spacing: -.02em; }
.hero__title em { font-style: normal; color: var(--plum); position: relative; }
.hero__title em::after {
  content: ""; position: absolute; left: 0; bottom: 2px; width: 100%; height: 6px;
  background: rgba(255,109,162,.25); border-radius: 3px; z-index: -1;
}
.hero__text > p { max-width: 36rem; font-size: var(--step-1); line-height: 1.6; }
.hero .btn-row { margin-top: 2rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 2.2rem; padding: 0; list-style: none; }
.hero__badges li {
  display: flex; align-items: center; gap: .5rem; margin: 0;
  font-size: .9rem; font-weight: 500; color: var(--muted);
  background: rgba(255,255,255,.6); backdrop-filter: blur(8px);
  padding: .35rem .8rem; border-radius: 99px; border: 1px solid var(--sand-200);
}
.hero__badges svg { width: 18px; height: 18px; flex: none; color: var(--sage); }

.hero__media { position: relative; }
.hero__photo {
  position: relative; z-index: 1; width: 100%; border-radius: 220px 220px var(--radius) var(--radius);
  box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4 / 5; background: var(--sand);
  border: 4px solid #fff;
}
.hero__blob {
  position: absolute; z-index: 0; inset: -6% -6% 8% 6%;
  background: linear-gradient(140deg, var(--pink), var(--peach) 40%, var(--sage));
  border-radius: 220px 220px var(--radius) var(--radius);
  opacity: .25; filter: blur(4px);
}
.hero__quote {
  position: absolute; z-index: 2; left: -1.2rem; bottom: 2rem; max-width: 16rem;
  padding: 1.1rem 1.25rem; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-radius: 16px;
  box-shadow: var(--shadow-md); font-family: var(--font-display); font-size: .98rem;
  line-height: 1.4; color: var(--plum-900); border: 1px solid rgba(255,255,255,.8);
}
.hero__quote span { display: block; margin-top: .4rem; font-family: var(--font-body); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); font-weight: 600; }

.hero__floating-stat {
  position: absolute; z-index: 2; right: -1rem; top: 3rem;
  display: flex; align-items: center; gap: .75rem; padding: .85rem 1.15rem;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-radius: 16px; box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,.8);
}
.hero__floating-stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--plum); line-height: 1; }
.hero__floating-stat-lbl { font-size: .78rem; font-weight: 600; color: var(--muted); line-height: 1.2; text-transform: uppercase; letter-spacing: .05em; }

/* ------------------------------------------------------------- números -- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--sand-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.stats > div { background: var(--cream); padding: 1.75rem 1.25rem; text-align: center; transition: background-color .2s ease; }
.stats > div:hover { background: #fff; }
.stats dt { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 600; color: var(--plum); line-height: 1; }
.stats dd { margin: .5rem 0 0; font-size: .9rem; font-weight: 500; color: var(--muted); line-height: 1.4; }

/* --------------------------------------------------------------- cards -- */
.grid { display: grid; gap: clamp(1.2rem, 2.4vw, 1.8rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

.card {
  display: flex; flex-direction: column; height: 100%; position: relative; overflow: hidden;
  padding: clamp(1.5rem, 2.8vw, 2.2rem);
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
a.card, .card--link { text-decoration: none; color: inherit; }
a.card:hover, .card--link:hover { transform: translateY(-6px); border-color: rgba(128,54,125,.3); box-shadow: var(--shadow-md); color: inherit; }
.card h3 { margin-bottom: .6rem; transition: color .2s ease; }
a.card:hover h3 { color: var(--plum); }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 1.15rem; line-height: 1.6; }
.card p:last-of-type { margin-bottom: 0; }
.card .link-arrow { margin-top: auto; padding-top: 1.15rem; font-weight: 600; }

.card__icon {
  display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 1.25rem;
  border-radius: 16px; background: linear-gradient(140deg, rgba(255,40,101,.08), rgba(46,111,64,.12));
  color: var(--plum); transition: transform .2s ease;
}
a.card:hover .card__icon { transform: scale(1.08); background: linear-gradient(140deg, var(--plum), var(--sage)); color: #fff; }
.card__icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* lista de sintomas / "para quem é" */
.checks { display: grid; gap: .85rem 1.75rem; margin: 0; padding: 0; list-style: none; grid-template-columns: 1fr; }
.checks li { position: relative; margin: 0; padding-left: 1.9rem; line-height: 1.5; }
.checks svg { position: absolute; left: 0; top: .17em; width: 21px; height: 21px; color: var(--rose); }
.section--plum .checks svg { color: var(--pink); }

/* ---------------------------------------------------------------- sobre -- */
.about { display: grid; gap: clamp(2rem, 5vw, 3.75rem); grid-template-columns: 1fr; align-items: start; }
.about__media { position: relative; }
/* Retrato circular: a foto de origem já vem mascarada em disco, com os cantos
   preenchidos na cor da seção. O border-radius garante o acabamento. */
.about__photo {
  width: 100%; max-width: 26rem; margin-inline: auto;
  border-radius: 50%; aspect-ratio: 1; object-fit: cover; background: var(--sand);
  box-shadow: 0 24px 50px -26px rgba(92,33,89,.45);
}
.about__creds { margin: 1.5rem 0 0; padding: 0; list-style: none; display: grid; gap: .7rem; }
.about__creds li { position: relative; margin: 0; padding-left: 1.75rem; font-size: .95rem; line-height: 1.5; }
.about__creds svg { position: absolute; left: 0; top: .22em; width: 19px; height: 19px; color: var(--plum); }
.about__signature { font-family: var(--font-brand); font-size: 1.9rem; color: var(--rose); margin-top: 1.5rem; }

/* --------------------------------------------------------------- passos -- */
.steps { counter-reset: step; display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); grid-template-columns: 1fr; }
.steps > li { list-style: none; margin: 0; position: relative; padding: 1.6rem 1.4rem 1.5rem; background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius); }
.steps > li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 600;
  color: var(--pink); line-height: 1; margin-bottom: .7rem;
}
.steps h3 { font-size: var(--step-0); font-weight: 600; margin-bottom: .35rem; }
.steps p { color: var(--muted); font-size: .93rem; margin: 0; }

/* -------------------------------------------------- mosaico de comida -- */
.mosaico { display: grid; gap: clamp(.7rem, 1.6vw, 1.1rem); grid-template-columns: repeat(2, 1fr); }
.mosaico figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--sand); }
.mosaico img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform .5s ease; }
.mosaico figure:hover img { transform: scale(1.05); }
/* O gradiente precisa ficar denso (>=.88) em toda a faixa ocupada pelo texto:
   sobre as áreas claras das fotos, um véu mais leve derrubaria o contraste
   abaixo do mínimo legível. */
.mosaico figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.6rem .95rem .85rem;
  font-size: .84rem; font-weight: 500; color: #fff;
  background: linear-gradient(to top, rgba(46,18,48,.92) 0%, rgba(46,18,48,.88) 60%, rgba(46,18,48,0) 100%);
}
.mosaico__texto {
  display: flex; flex-direction: column; justify-content: center;
  grid-column: 1 / -1; padding: .5rem .25rem;
}
.mosaico__texto p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------- depoimentos -- */
.quotes {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(85%, 22rem);
  gap: 1.15rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-block: .25rem 1.5rem; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  scrollbar-width: thin; scrollbar-color: var(--sand-200) transparent;
}
.quotes > figure { scroll-snap-align: start; margin: 0; display: flex; flex-direction: column;
  padding: 1.6rem 1.5rem; background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.quotes blockquote { margin: 0 0 1.1rem; font-size: .97rem; line-height: 1.6; color: var(--ink); }
.quotes blockquote::before { content: "”"; display: block; font-family: var(--font-display); font-size: 3rem; line-height: .55; color: var(--pink); margin-bottom: .45rem; }
.quotes figcaption { margin-top: auto; font-weight: 600; font-size: .92rem; color: var(--plum-700); }

/* ------------------------------------------------------------------ CTA -- */
.cta-band { position: relative; overflow: hidden; background: var(--plum-900); color: #EFE2EE; border-radius: var(--radius); }
.cta-band__inner { position: relative; z-index: 1; display: grid; gap: 1.75rem; padding: clamp(2.25rem, 5vw, 3.5rem); align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: #D6C4D5; margin-bottom: 0; }
.cta-band__deco { position: absolute; inset: 0; z-index: 0; opacity: .17; pointer-events: none; }
.cta-band__deco svg { position: absolute; right: -3rem; top: 50%; transform: translateY(-50%) rotate(-8deg); height: 150%; width: auto; }

/* -------------------------------------------------------------- accordion -- */
.faq { display: grid; gap: .75rem; }
.faq details { background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-sm); overflow: hidden; }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.25rem; font-weight: 600; color: var(--plum-900); cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--rose); line-height: 1; flex: none; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 1.25rem 1.25rem; color: var(--muted); font-size: .96rem; }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------- contato -- */
.contact { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: start; }

.field { display: block; margin-bottom: 1.1rem; }
.field > span { display: block; font-size: .88rem; font-weight: 600; color: var(--plum-900); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--sand-200); border-radius: 12px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--plum); box-shadow: 0 0 0 4px rgba(128,54,125,.12);
}
.form-note { font-size: .84rem; color: var(--muted); margin-top: .9rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.places { display: grid; gap: 1rem; }
.place { padding: 1.4rem 1.5rem; background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius); }
.place h3 { font-size: var(--step-0); margin-bottom: .35rem; display: flex; align-items: center; gap: .5rem; }
.place h3 svg { width: 18px; height: 18px; color: var(--rose); flex: none; }
.place address { font-style: normal; color: var(--muted); font-size: .95rem; line-height: 1.55; }
.place a { color: var(--plum-700); text-decoration: none; font-weight: 500; }
.place a:hover { text-decoration: underline; }

/* --------------------------------------------------------------- rodapé -- */
.site-footer { background: var(--plum-900); color: #C9B6C9; padding-block: clamp(3rem, 6vw, 4.5rem) 0; font-size: .93rem; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #DCCBDB; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.footer__about p { max-width: 24rem; color: #B7A3B8; margin-top: 1.1rem; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer__social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.18); border-radius: 11px; }
.footer__social a:hover { background: rgba(255,255,255,.1); border-color: transparent; }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-block: 1.4rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .84rem; color: #A992AA;
}
.footer__crn { font-variant-numeric: tabular-nums; }

/* --------------------------------------------------- barra fixa mobile -- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; gap: .6rem; padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255,250,247,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--sand-200);
}
.mobile-cta .btn { flex: 1; padding-block: .85rem; font-size: .95rem; }

/* ---------------------------------------------------- páginas internas -- */
.page-hero { position: relative; padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem); background: var(--sand); }
.page-hero h1 { max-width: 20ch; }
.page-hero p { max-width: 46rem; color: var(--muted); font-size: var(--step-1); margin-bottom: 0; }
/* variante com foto ao lado do título */
.page-hero__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.page-hero__capa {
  width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md); background: var(--sand);
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: 0 0 1.1rem; padding: 0; font-size: .85rem; color: var(--muted); }
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: .45rem; color: var(--sand-200); color: #C3AFBC; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--plum); text-decoration: underline; }

.prose { max-width: 44rem; }
.prose h2 { font-size: var(--step-2); margin-top: 2.25rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75rem; }
/* Marcador posicionado em vez de flex: num container flex cada <strong>, <em>
   ou <a> dentro do <li> viraria uma coluna separada, quebrando o texto. */
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 1.35rem; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px;
  border-radius: 2px; transform: rotate(45deg); background: var(--rose);
}
.sidebar { position: sticky; top: 100px; }
.sidebar .card { background: var(--plum-900); border-color: transparent; color: #E3D3E2; }
.sidebar .card h3 { color: #fff; }
.sidebar .card p { color: #C9B6C9; }

/* ----------------------------------------------------------- animações -- */
/* O estado inicial escondido só existe quando há JavaScript (a classe .js é
   posta no <html> por um script inline). Sem JS, o conteúdo aparece normal-
   mente em vez de ficar invisível para sempre. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ------------------------------------------------------------ breakpoints */
@media (min-width: 560px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .mosaico { grid-template-columns: repeat(4, 1fr); }
  .mosaico__texto { grid-column: span 1; padding-inline: .5rem; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .checks { grid-template-columns: repeat(2, 1fr); }
  .places { grid-template-columns: repeat(2, 1fr); }
  .steps  { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .steps   { grid-template-columns: repeat(4, 1fr); }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .about { grid-template-columns: .8fr 1.2fr; }
  .contact { grid-template-columns: 1.05fr .95fr; }
  .cta-band__inner { grid-template-columns: 1.4fr auto; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; }
  .page-hero__grid { grid-template-columns: 1.15fr .85fr; }
  .prose-layout { display: grid; grid-template-columns: 1fr 22rem; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
}

/* menu em gaveta no mobile */
@media (max-width: 859px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(23rem, 88vw); z-index: 110;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 5.5rem 1.5rem 2rem; background: var(--cream);
    box-shadow: -20px 0 60px -30px rgba(46,18,48,.6);
    transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; visibility: hidden;
  }
  .nav[data-open="true"] { transform: none; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li { border-bottom: 1px solid var(--sand-200); }
  .nav__list a, .has-sub > button { width: 100%; padding: .95rem .25rem; font-size: 1.05rem; }
  .nav__list a::after { display: none; }
  .has-sub > button { justify-content: space-between; }
  .subnav {
    position: static; transform: none; opacity: 1; visibility: visible; display: none;
    min-width: 0; border: 0; box-shadow: none; background: transparent;
    padding: 0 0 .6rem .5rem; border-left: 2px solid var(--sand-200); margin-left: .25rem;
  }
  .has-sub[data-open="true"] .subnav { display: block; }
  .subnav a { padding: .6rem .5rem; font-size: .98rem; }
  .nav .btn { margin-top: 1.5rem; }
  .nav-backdrop {
    position: fixed; inset: 0; z-index: 105; background: rgba(46,18,48,.45);
    opacity: 0; visibility: hidden; transition: opacity .3s ease;
  }
  .nav-backdrop[data-open="true"] { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }

  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
  .site-footer { padding-bottom: 1rem; }
  .topbar__info span.hide-sm { display: none; }
  .hero__quote { display: none; }
}

@media (max-width: 400px) {
  .brand__mark { height: 38px; }
  .brand__name { font-size: 1.25rem; }
  .brand__tag { font-size: .52rem; letter-spacing: .13em; }
}

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

@media print {
  .topbar, .site-header, .mobile-cta, .cta-band, .site-footer { display: none !important; }
  body { background: #fff; padding: 0; }
}
