/* =====================================================
   JULIANA MARQUES — NUTRICIONISTA
   Editorial / magazine style
   Paleta: marrom · terracota · verde escuro · creme
   ===================================================== */

:root {
  --bg:        #F7F0E4;
  --bg-soft:   #ECE0CC;
  --bg-deep:   #E5D6BD;
  --ink:       #2C1F18;
  --ink-soft:  #5A453A;
  --muted:     #8E7563;
  --line:      #DCC9B0;

  --primary:        #2D4A3E;
  --primary-dark:   #1E342B;
  --primary-soft:   #B5C4B8;
  --primary-glow:   rgba(45,74,62,.18);

  --accent:         #B85940;
  --accent-dark:    #963F2A;
  --accent-soft:    #E8C5B0;

  --brown:          #3E2A1F;
  --brown-soft:     #6B4A38;

  --white: #FFFFFF;
  --black: #1A0F08;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --container-wide: 1320px;
  --radius:   16px;
  --radius-lg: 28px;
  --shadow:   0 6px 30px rgba(43,55,49,.08);
  --shadow-lg:0 20px 60px rgba(43,55,49,.12);
  --shadow-xl:0 30px 80px rgba(43,55,49,.18);

  --section-y: clamp(64px, 9vw, 120px);
  --ease: cubic-bezier(.7,.05,.25,1);
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
html.lenis { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto !important; }
html.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
html.lenis.lenis-stopped { overflow: hidden; }
html.lenis.lenis-smooth iframe { pointer-events: none; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;

  /* Textura sutil de papel */
  background-image:
    radial-gradient(circle at 25% 20%, rgba(184,89,64,.03), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(45,74,62,.03), transparent 40%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--black); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; }

h2 em, h1 em { font-style: italic; color: var(--accent); font-weight: 500; }

p { color: var(--ink-soft); }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--primary);
  vertical-align: middle;
  margin-right: 12px;
}

/* ============= LOADER ============= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--brown);
  display: grid;
  place-items: center;
  transition: opacity .6s ease, visibility .6s;
}
.loader.is-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--bg);
}
.loader__mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-soft);
  animation: loaderPulse 2s ease-in-out infinite;
}
.loader__mark img { width: 100%; height: 100%; object-fit: cover; }
.loader__brand {
  text-align: center;
  letter-spacing: .04em;
}
.loader__brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: .04em;
  color: var(--bg);
}
.loader__brand-sub {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--accent-soft);
  margin-top: 6px;
}
.loader__bar {
  margin-top: 14px;
  width: 140px; height: 1px;
  background: rgba(232,197,176,.22);
  overflow: hidden;
}
.loader__bar span {
  display: block;
  width: 30%;
  height: 100%;
  background: var(--accent-soft);
  animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes loaderSlide {
  0%   { transform: translateX(-110%); }
  60%  { transform: translateX(440%); }
  100% { transform: translateX(440%); }
}

/* ============= CUSTOM CURSOR ============= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 250;
  mix-blend-mode: normal;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body.has-cursor { cursor: none; }
  body.has-cursor a, body.has-cursor button, body.has-cursor [role="button"], body.has-cursor input, body.has-cursor select, body.has-cursor textarea, body.has-cursor summary { cursor: none; }
}
.cursor__dot,
.cursor__ring {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .2s, border-color .2s, opacity .2s;
}
.cursor__dot {
  width: 6px; height: 6px;
  background: var(--primary);
}
.cursor__ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--primary);
  background: transparent;
}
.cursor.is-link .cursor__dot { width: 0; height: 0; }
.cursor.is-link .cursor__ring { width: 56px; height: 56px; background: rgba(45,74,62,.15); border-color: var(--primary); }
.cursor.is-image .cursor__dot { width: 0; height: 0; }
.cursor.is-image .cursor__ring {
  width: 88px; height: 88px;
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.cursor.is-image .cursor__ring::before {
  content: 'Ver';
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .82rem;
  color: var(--white);
}
.cursor.is-card .cursor__ring { width: 64px; height: 64px; border-color: var(--accent); background: rgba(184,89,64,.10); }
.cursor.is-drag .cursor__ring { width: 80px; height: 80px; background: var(--accent); border-color: var(--accent); }
.cursor.is-drag .cursor__ring::before {
  content: '↔';
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}
.cursor.is-text .cursor__dot { width: 0; }
.cursor.is-text .cursor__ring { width: 2px; height: 22px; border-radius: 0; background: var(--ink); border: 0; }
.cursor.is-out { opacity: 0; }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: all .25s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
  position: relative;
}
.btn i, .btn svg:not(.ico-wpp) { width: 18px; height: 18px; flex-shrink: 0; }
.btn .ico-wpp { width: 18px; height: 18px; flex-shrink: 0; }
.ico-wpp { width: 18px; height: 18px; flex-shrink: 0; }
.channel .ico-wpp { width: 24px; height: 24px; }
.float-wpp .ico-wpp { width: 26px; height: 26px; }
.footer__social .ico-wpp { width: 18px; height: 18px; }
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px var(--primary-glow);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--primary-glow);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--white);
}
.btn--sm { padding: 10px 20px; font-size: .88rem; }
.btn--block { width: 100%; justify-content: center; }

/* ============= HEADER ============= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(247, 240, 228, .85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: box-shadow .3s, padding .3s;
}
.header.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(43,55,49,.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  display: block;
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-soft);
  border: 2px solid var(--primary);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.logo:hover .logo__mark { transform: rotate(-6deg) scale(1.05); }
.logo__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer .logo__mark { border-color: rgba(255,255,255,.18); }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__text strong { font-family: var(--font-serif); font-size: 1.05rem; color: var(--black); }
.logo__text small { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__list a {
  position: relative;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s;
}
.nav__list a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width .25s;
}
.nav__list a:not(.btn):hover { color: var(--primary); }
.nav__list a:not(.btn):hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 60;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay do menu mobile */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,15,8,.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 45;
}
.nav__overlay.is-visible { opacity: 1; visibility: visible; }

/* ============= HERO MAGAZINE ============= */
.hero {
  position: relative;
  padding: 140px 0 var(--section-y);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 20%, var(--primary-glow), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(184,89,64,.10), transparent 55%),
    var(--bg);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero__title {
  margin: 18px 0 28px;
  letter-spacing: -.02em;
  line-height: 1.04;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero__lead {
  font-size: 1.12rem;
  max-width: 540px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin: 36px 0 40px;
}
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  font-size: .88rem;
  color: var(--ink-soft);
}
.hero__badges li {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__badges i { width: 16px; height: 16px; color: var(--primary); }

.hero__visual {
  position: relative;
}
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-left: auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(45,74,62,.15));
  z-index: 1;
  pointer-events: none;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(247,240,228,.5);
  z-index: 2;
  pointer-events: none;
}
.hero__caption {
  position: absolute;
  bottom: 22px; left: 22px;
  z-index: 3;
  color: var(--white);
  font-size: .76rem;
  letter-spacing: .04em;
}
.hero__caption em {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0;
  margin-bottom: 2px;
}
.hero__caption small {
  font-size: .68rem;
  opacity: .85;
}

.hero__vaga {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  z-index: 4;
}
.hero__vaga strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}
.hero__vaga span:not(.hero__vaga-pulse) {
  font-size: .72rem;
  color: var(--muted);
}
.hero__vaga-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #25D366;
  position: relative;
  flex-shrink: 0;
}
.hero__vaga-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.4);
  animation: pulseDot 1.6s ease-out infinite;
}
@keyframes pulseDot {
  0% { transform: scale(.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--muted);
  opacity: .8;
  transition: opacity .2s;
}
.hero__scroll:hover { opacity: 1; }
.hero__scroll svg { animation: bounce 2.2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Reveal lines for editorial title */
.reveal-lines .line {
  display: block;
  overflow: hidden;
}
.reveal-lines .line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}
.reveal-lines.is-visible .line > span { transform: translateY(0); }
.reveal-lines.is-visible .line:nth-child(2) > span { transition-delay: .12s; }
.reveal-lines.is-visible .line:nth-child(3) > span { transition-delay: .22s; }

/* ============= FEATURED IN ============= */
.featured {
  background: var(--brown);
  color: var(--bg);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.featured__label {
  text-align: center;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--accent-soft);
  margin-bottom: 22px;
}
.featured__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 56px;
  align-items: center;
}
.featured__list li {
  text-align: center;
  opacity: .65;
  transition: opacity .25s, transform .25s;
}
.featured__list li:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.featured__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: .02em;
}
.featured__sub {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--accent-soft);
  margin-top: 2px;
}

/* ============= PULL QUOTES ============= */
.pullquote {
  padding: clamp(60px, 10vw, 130px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pullquote::before,
.pullquote::after {
  content: '';
  position: absolute;
  width: 60px; height: 1px;
  top: 50%;
  background: currentColor;
  opacity: .3;
}
.pullquote::before { left: 8%; }
.pullquote::after { right: 8%; }
.pullquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.25;
  font-weight: 500;
  color: inherit;
  max-width: 900px;
  margin: 0 auto;
}
.pullquote p em {
  font-style: italic;
  color: var(--accent);
}
.pullquote--accent {
  background: var(--bg-deep);
  color: var(--ink);
}
.pullquote--accent p em { color: var(--accent-dark); }
.pullquote--dark {
  background: var(--brown);
  color: var(--bg);
}
.pullquote--dark p em { color: var(--accent-soft); font-style: italic; }
@media (max-width: 760px) {
  .pullquote::before, .pullquote::after { display: none; }
}

/* ============= STATS ============= */
.stats {
  background: var(--bg-soft);
  padding: 64px 0;
  position: relative;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}
.stat {
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px; top: 20%;
  width: 1px; height: 60%;
  background: var(--line);
}
.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1;
}
.stat span {
  font-size: .9rem;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

/* ============= SECTION GENERIC ============= */
.section { padding: var(--section-y) 0; }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section__head h2 { margin-bottom: 16px; }
.section__head p { font-size: 1.05rem; color: var(--ink-soft); }

.lead {
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 18px;
}

/* ============= ORNAMENT ============= */
.ornament {
  text-align: center;
  padding: 40px 0;
  color: var(--accent);
  opacity: .6;
}

/* ============= SOBRE ============= */
.sobre__grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 80px;
  align-items: start;
}
.sobre__visual {
  position: sticky;
  top: 100px;
}
.sobre__photo {
  margin-bottom: 56px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
  position: relative;
}
.sobre__photo img { width: 100%; height: 100%; object-fit: cover; }
.sobre__photo::after {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--accent);
  z-index: -1;
  transform: translate(-16px, 16px);
}
.sobre__facts {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
}
.sobre__facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  gap: 16px;
}
.sobre__facts span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}
.sobre__facts strong {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

.sobre__content h2 { margin-bottom: 28px; line-height: 1.1; }
.sobre__content p { margin-bottom: 18px; font-size: 1.02rem; line-height: 1.75; }

/* Drop cap */
.dropcap::first-letter {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: .9;
  float: left;
  padding: 8px 14px 0 0;
  color: var(--accent);
}

.sobre__pillars {
  display: grid;
  gap: 22px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.sobre__pillars li {
  display: flex; gap: 16px;
}
.sobre__pillars i {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--primary);
  margin-top: 4px;
}
.sobre__pillars strong {
  display: block;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 1rem;
}
.sobre__pillars span {
  font-size: .92rem;
  color: var(--ink-soft);
}

/* ============= QUIZ ============= */
.quiz { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.quiz__box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 44px 48px 40px;
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.quiz__progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bg-soft);
  overflow: hidden;
}
.quiz__progress span {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width .5s var(--ease);
}
.quiz__count {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 600;
}
.quiz__step {
  display: none;
  animation: stepFade .5s var(--ease);
}
.quiz__step.is-active { display: block; }
@keyframes stepFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.quiz__step h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.2;
  margin-bottom: 28px;
}
.quiz__step h3 em { font-style: italic; color: var(--accent); }
.quiz__opts { display: grid; gap: 12px; }
.quiz__opt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 18px 22px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition: all .2s var(--ease);
}
.quiz__opt strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.quiz__opt span {
  font-size: .85rem;
  color: var(--ink-soft);
}
.quiz__opt:hover {
  border-color: var(--primary);
  background: var(--white);
  transform: translateX(4px);
}
.quiz__opt.is-selected {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.quiz__result { text-align: center; }
.quiz__match {
  display: inline-block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 600;
}
.quiz__result h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 28px;
}
.quiz__pick {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.quiz__pick-label {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--accent-soft);
  margin-bottom: 10px;
  font-weight: 600;
}
.quiz__pick strong {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 500;
}
.quiz__pick p {
  font-size: .94rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}
.quiz__cta {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.quiz__cta .btn { flex: 1; min-width: 200px; justify-content: center; }

/* ============= PROTOCOLOS ============= */
.protocolos { background: var(--bg-soft); }
.protocolos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.protocolo {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px 26px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.protocolo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-soft);
}
.protocolo--featured {
  border-color: var(--primary);
  border-width: 2px;
  background: linear-gradient(180deg, var(--white) 60%, rgba(45,74,62,.04));
}
.protocolo--premium {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--white) 60%, rgba(184,89,64,.05));
}
.protocolo__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px var(--primary-glow);
}
.protocolo__badge--gold {
  background: var(--accent);
  box-shadow: 0 6px 16px rgba(184,89,64,.3);
}
.protocolo__head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.protocolo h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 6px;
  color: var(--black);
}
.protocolo__sub {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.4;
}
.protocolo__list {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.protocolo__list li {
  position: relative;
  padding-left: 22px;
  font-size: .86rem;
  color: var(--ink);
  line-height: 1.45;
}
.protocolo__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 14px; height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 13' fill='none' stroke='%232D4A3E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 6.5 6 11.5 17 1.5'/%3E%3C/svg%3E") no-repeat center / contain;
}
.protocolo__list .protocolo__bonus {
  margin-top: 6px;
  padding: 8px 12px;
  background: rgba(184,89,64,.10);
  border-radius: 8px;
  font-weight: 500;
  font-size: .82rem;
  color: var(--ink);
}
.protocolo__list .protocolo__bonus::before { display: none; }
.protocolo__pitch {
  font-size: .82rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  margin-top: auto;
  padding-top: 6px;
  line-height: 1.5;
}
.protocolo__pitch em {
  display: block;
  margin-top: 6px;
  font-style: italic;
  color: var(--primary-dark);
  font-weight: 500;
  font-size: .8rem;
}
.protocolo .btn {
  font-size: .85rem;
  padding: 12px 18px;
}
.protocolo .btn .ico-wpp { width: 16px; height: 16px; }

/* ============= JORNADA TIMELINE ============= */
.jornada {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.jornada__timeline {
  display: grid;
  gap: 32px;
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.jornada__timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 60px;
  bottom: 60px;
  width: 1px;
  background: var(--line);
}
.jornada__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
}
.jornada__day {
  text-align: center;
  position: relative;
  z-index: 1;
}
.jornada__day-num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--accent);
  font-weight: 500;
  line-height: 1;
}
.jornada__day-label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}
.jornada__day::before {
  content: '';
  position: absolute;
  left: 50%; bottom: -28px;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  z-index: 2;
  box-shadow: 0 0 0 2px var(--accent);
}
.jornada__card {
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.jornada__card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.jornada__card p {
  font-size: .96rem;
  margin-bottom: 14px;
  line-height: 1.65;
}
.jornada__card p em { color: var(--primary); font-style: italic; }
.jornada__card ul {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.jornada__card ul li {
  font-size: .88rem;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.jornada__card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 1px;
  background: var(--accent);
}
.jornada__card--final {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-color: var(--primary);
}
.jornada__card--final h3 { color: var(--white); }
.jornada__card--final p { color: rgba(255,255,255,.85); }
.jornada__card--final p em { color: var(--accent-soft); }
.jornada__card--final ul li { color: rgba(255,255,255,.8); }
.jornada__card--final ul li::before { background: var(--accent-soft); }
.jornada__card--final ul { border-top-color: rgba(255,255,255,.15); }

/* ============= DEPOIMENTOS ============= */
.depoimentos { background: var(--bg-soft); }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  padding: 36px 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .3s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); }
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 22px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
}
.testimonial blockquote {
  font-size: .98rem;
  color: var(--ink);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.55;
}
.testimonial figcaption strong {
  display: block;
  color: var(--primary-dark);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: .94rem;
}
.testimonial figcaption span {
  font-size: .76rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.testimonial__stars {
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: .14em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.depoimentos__cta {
  text-align: center;
  margin-top: 36px;
  font-weight: 500;
}
.depoimentos__cta a {
  color: var(--primary);
  border-bottom: 1px solid var(--primary-soft);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.depoimentos__cta a:hover {
  color: var(--primary-dark);
  border-color: var(--primary);
}

/* ============= FAQ ============= */
.faq__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.faq__head { position: sticky; top: 110px; }
.faq__list { display: grid; gap: 12px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color .2s;
}
.faq__item[open] { border-color: var(--primary-soft); }
.faq__item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-weight: 600;
  color: var(--black);
  font-size: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform .25s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  padding: 0 0 18px;
  font-size: .94rem;
}

/* ============= CONTATO ============= */
.contato { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contato__content h2 { margin: 14px 0 18px; }
.contato__channels {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}
.channel {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .2s, border-color .2s;
}
a.channel:hover {
  transform: translateX(4px);
  border-color: var(--primary-soft);
}
.channel i {
  width: 24px; height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}
.channel strong {
  display: block;
  color: var(--black);
  font-weight: 600;
  font-size: .92rem;
}
.channel span {
  font-size: .88rem;
  color: var(--ink-soft);
}
.contato__map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contato__map iframe { display: block; }

.form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.form h3 { margin-bottom: 6px; }
.form__lead {
  font-size: .92rem;
  margin-bottom: 24px;
}
.field { display: block; margin-bottom: 16px; }
.field span {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: .95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}
.form__hint {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: .8rem;
}

/* ============= FOOTER ============= */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 64px 0 0;
  position: relative;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand {
  display: flex; align-items: center; gap: 14px;
}
.footer__brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
}
.footer__brand small {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer__nav a:hover { color: var(--white); }
.footer__social {
  display: flex; gap: 12px;
  justify-content: flex-end;
}
.footer__social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--white);
  transition: background .2s, transform .2s;
}
.footer__social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}
.footer__social i { width: 18px; height: 18px; }
.footer__manifesto {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  color: var(--accent-soft);
  padding: 48px 16px;
  font-weight: 500;
  font-style: italic;
}
.footer__manifesto em { font-style: italic; }
.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom small {
  font-size: .76rem;
  color: rgba(255,255,255,.5);
}

/* ============= FLOATING WPP ============= */
.float-wpp {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 40;
  display: grid; place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(37,211,102,.4);
  transition: transform .25s var(--ease);
}
.float-wpp:hover { transform: scale(1.1); }
.float-wpp__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.4);
  z-index: -1;
  animation: pulseWpp 2s ease-out infinite;
}
@keyframes pulseWpp {
  0% { transform: scale(.85); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============= TOAST (Easter egg) ============= */
.toast {
  position: fixed;
  bottom: 110px;
  right: 24px;
  background: var(--brown);
  color: var(--bg);
  padding: 14px 22px;
  border-radius: 12px;
  font-size: .9rem;
  font-style: italic;
  font-family: var(--font-serif);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  z-index: 100;
  max-width: 320px;
}
.toast.is-visible {
  opacity: 1;
  transform: none;
}
.toast em {
  color: var(--accent-soft);
  font-style: italic;
}

/* ============= REVEAL ON SCROLL ============= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media print, (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-lines .line > span {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .loader { display: none !important; }
}

/* ============= RESPONSIVE ============= */
@media (max-width: 960px) {
  .hero__inner,
  .sobre__grid,
  .faq__grid,
  .contato__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .hero__photo { margin: 0 auto; }
  .hero__vaga { left: auto; right: 0; bottom: -16px; }
  .sobre__visual { position: static; }
  .faq__head { position: static; }

  .protocolos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .protocolo { padding: 32px 26px 28px; }
  .protocolo h3 { font-size: 1.35rem; }
  .protocolo__sub { font-size: .85rem; }
  .protocolo__list li { font-size: .92rem; padding-left: 26px; }
  .protocolo__list .protocolo__bonus { font-size: .88rem; }
  .protocolo__pitch { font-size: .9rem; }
  .protocolo .btn { font-size: .92rem; padding: 14px 22px; }

  .testimonials,
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:not(:last-child)::after { display: none; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand, .footer__social { justify-content: center; }

  .jornada__timeline::before { left: 30px; }
  .jornada__item { grid-template-columns: 60px 1fr; gap: 18px; }
  .jornada__day-num { font-size: 2rem; }
  .jornada__card { padding: 22px 24px; }

  .quiz__box { padding: 36px 28px 32px; }
}

@media (max-width: 640px) {
  :root { --section-y: 64px; }

  .nav__toggle { display: flex; }
  .nav__list {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    height: 100vh;
    height: 100dvh;
    width: 80%; max-width: 320px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 96px 28px 32px;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.18);
    overflow-y: auto;
  }
  .nav__list.is-open { transform: translateX(0); }
  .nav__list li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav__list li:last-child { border-bottom: 0; padding-top: 16px; }
  .nav__list a { display: block; padding: 16px 0; font-size: 1rem; }
  .nav__list .btn { width: 100%; justify-content: center; }

  .hero { padding-top: 110px; min-height: auto; }
  .hero__caption { left: 16px; bottom: 16px; }
  .hero__caption em { font-size: .92rem; }
  .hero__caption small { font-size: .6rem; }
  .hero__vaga { padding: 10px 16px; }
  .hero__scroll { display: none; }

  .featured__list { gap: 14px 28px; }
  .featured__name { font-size: 1.05rem; }
  .featured__sub { font-size: .6rem; letter-spacing: .18em; }

  .protocolos__grid,
  .stats__grid,
  .testimonials {
    grid-template-columns: 1fr;
  }
  .form { padding: 26px 22px; }
  .float-wpp { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .toast { bottom: 90px; left: 16px; right: 16px; }

  .logo__text small { display: none; }

  .quiz__box { padding: 28px 22px; min-height: 0; }
  .quiz__step h3 { font-size: 1.25rem; margin-bottom: 22px; }
  .quiz__opt { padding: 14px 18px; }
  .quiz__cta .btn { width: 100%; min-width: 0; }

  .jornada__item { grid-template-columns: 1fr; gap: 12px; }
  .jornada__timeline::before { display: none; }
  .jornada__day { display: flex; align-items: baseline; gap: 8px; text-align: left; }
  .jornada__day::before { display: none; }
  .jornada__day-num { font-size: 1.8rem; }
}
