/* === Jéssica Moreira · Jornada da Leveza ===================================
   Design tokens lifted directly from design system v1.0
   ========================================================================== */

:root {
  /* Palette */
  --espresso: #3A3532;
  --espresso-80: #3A3532cc;
  --espresso-60: #3A35329e;
  --espresso-40: #3A353266;
  --espresso-15: #3A353226;
  --espresso-08: #3A353214;
  --terracota: #A86E5A;
  --terracota-soft: #c79e8e;
  --salvia: #8A9A86;
  --salvia-soft: #a8b6a4;
  --areia: #DDCBB6;
  --areia-soft: #E8DCC9;
  --creme: #F7F4EF;
  --creme-deep: #F1ECE3;

  --accent: var(--terracota);

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 48px;
  --space-2xl: 80px;
  --space-3xl: 128px;

  --radius-none: 0;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --ease-soft: cubic-bezier(0.25, 0, 0, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 600ms;

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --measure: 720px;
  --measure-wide: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ---- Acessibilidade ---- */
/* Skip link: oculto até receber foco via Tab. Permite usuário de teclado
   pular direto pro conteúdo principal sem tabular pela nav inteira. */
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--espresso);
  color: var(--creme);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 14px;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform var(--dur-fast) var(--ease-soft);
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--terracota); outline-offset: 2px; }

/* Focus visível, padronizado: aro terracota com offset.
   Usa :focus-visible pra não disparar em clique de mouse. */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--terracota);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Respeita preferência de reduzir animações (motion-sickness, vestibular). */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--espresso);
  background: var(--creme);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Type ---- */
.h-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.h-display em { font-style: italic; font-weight: 500; }

.h-section {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0;
}
.h-section em { font-style: italic; font-weight: 500; }

.h-sub { font-family: var(--sans); font-weight: 500; font-size: 16px; letter-spacing: 0.02em; margin: 0; }

.label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracota);
}

.body-lg { font-family: var(--sans); font-weight: 300; font-size: 18px; line-height: 1.7; }

p { margin: 0 0 1em; text-wrap: pretty; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-soft);
  white-space: nowrap;
}
.btn-primary { background: var(--espresso); color: var(--creme); }
.btn-primary:hover { background: var(--terracota); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--espresso); border-color: var(--espresso-40); }
.btn-outline:hover { border-color: var(--espresso); background: var(--espresso-08); }
.btn-ghost { background: var(--areia); color: var(--espresso); }
.btn-ghost:hover { background: var(--areia-soft); }
.btn .ic { width: 16px; height: 16px; stroke-width: 1.25; }

/* ---- Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  background: transparent;
  color: var(--espresso-80);
  border: 1px solid var(--espresso-15);
}
.badge.b-areia { background: var(--areia); border-color: transparent; }
.badge.b-salvia { background: color-mix(in oklab, var(--salvia) 30%, var(--creme)); border-color: transparent; }
.badge.b-terracota { color: var(--terracota); border-color: var(--terracota); }
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--salvia);
  box-shadow: 0 0 0 0 var(--salvia);
  animation: pulse 2.4s var(--ease-soft) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in oklab, var(--salvia) 60%, transparent); }
  70%  { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ---- Layout ---- */
.shell { padding-left: 56px; padding-right: 56px; }
.measure { max-width: var(--measure); margin: 0 auto; }
.measure-wide { max-width: var(--measure-wide); margin: 0 auto; }
/* IMPORTANTE: usar longhand (padding-top/bottom) em vez do shorthand "padding".
   Shorthand sobrescreve os 4 lados e, como section.section tem mais especificidade
   que .shell, zerava o padding lateral em <section class="section shell">. Resultado:
   conteúdo colado nas bordas no mobile (onde .measure ocupa 100%). */
section.section { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); position: relative; }
section.section.tight { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur-slow) var(--ease-soft), transform var(--dur-slow) var(--ease-soft); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--creme) 92%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-soft);
}
.nav.scrolled { border-bottom-color: var(--espresso-15); }
.nav-inner {
  max-width: var(--measure-wide);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 13px; font-weight: 400;
  color: var(--espresso-80);
}
.nav-links a {
  color: inherit; text-decoration: none;
  transition: color var(--dur-fast) var(--ease-soft);
}
.nav-links a:hover { color: var(--terracota); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ---- Hero ---- */
.hero {
  padding-top: 96px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow .line { width: 32px; height: 1px; background: var(--terracota); }
.hero-headline { margin-bottom: 28px; }
.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: var(--espresso-80);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Hero visual — mark with floating decoration */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: grid;
  place-items: center;
}
.hero-visual .stage {
  position: relative;
  width: 100%; height: 100%;
  display: grid; place-items: center;
}
.hero-visual .ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--espresso-15);
  opacity: 0;
  animation: heroRing 6s var(--ease-soft) infinite;
}
.hero-visual .ring:nth-child(2) { animation-delay: 1.5s; }
.hero-visual .ring:nth-child(3) { animation-delay: 3s; }
@keyframes heroRing {
  0%   { transform: scale(0.6); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: scale(1.05); opacity: 0; }
}
.hero-visual .mark-img {
  position: relative;
  width: 62%; max-width: 320px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px color-mix(in oklab, var(--salvia) 26%, transparent));
  animation: breathe 7s var(--ease-soft) infinite;
}
@keyframes breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-4px) scale(1.02); }
}
/* Soft circular backdrop — replaces the blurred blobs */
.hero-visual .backdrop {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: var(--hero-bg, var(--creme-deep));
  z-index: 0;
  transition: background var(--dur-base) var(--ease-soft);
}
.hero-visual .badge-floating {
  position: absolute;
  top: 8%; left: 4%;
  background: var(--creme);
  box-shadow: 0 4px 16px color-mix(in oklab, var(--espresso) 12%, transparent);
  z-index: 2;
  animation: badgeFloat 9s ease-in-out infinite;
}
.hero-visual .badge-quote {
  position: absolute;
  bottom: 6%; right: 0;
  background: var(--creme);
  box-shadow: 0 4px 16px color-mix(in oklab, var(--espresso) 12%, transparent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  padding: 8px 16px;
  z-index: 2;
  animation: badgeFloat 11s ease-in-out infinite reverse;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ---- Opening section ---- */
.opening-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--espresso-80);
  border-left: 2px solid var(--terracota);
  padding-left: 28px;
  margin-top: 32px;
}

/* ---- Pain section ---- */
.pain-list {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.pain-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--espresso-15);
  font-size: 17px;
  line-height: 1.55;
  color: var(--espresso);
}
.pain-list li:last-child { border-bottom: 1px solid var(--espresso-15); }
.pain-list li .star {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--terracota);
  line-height: 1;
  margin-top: 2px;
}
.pain-foot {
  margin-top: 36px;
  font-size: 17px;
  color: var(--espresso-80);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 300;
}

/* ---- Solution ---- */
.solution-block {
  padding: 56px;
  background: var(--creme-deep);
  border-radius: var(--radius-md);
}
/* Nota: margin-top do bloco é controlado pelo .solution-grid (mais abaixo).
   Antes havia 48px aqui que somava com o margin do grid e desalinhava o bloco
   em relação ao topo da foto. */
.solution-block p { font-size: 17px; line-height: 1.75; color: var(--espresso-80); }
.solution-block p:last-child { margin-bottom: 0; }
.solution-block .signature {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--espresso-15);
  display: flex; align-items: center; gap: 20px;
}
.signature-mono {
  width: 88px; height: 88px;
  border-radius: 0;
  background: transparent;
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: visible;
  padding: 0;
}
.signature-mono img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.signature-text {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--espresso-80);
  line-height: 1.7;
}
.signature-text strong { font-weight: 500; color: var(--espresso); }

@media (max-width: 700px) {
  .solution-block { padding: 36px 28px; }
}

/* ---- Benefits ---- */
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--espresso-15);
}
@media (max-width: 720px) { .benefits { grid-template-columns: 1fr; } }
.benefit {
  padding: 40px 0;
  border-bottom: 1px solid var(--espresso-15);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}
.benefits .benefit:nth-child(odd)  { padding-right: 48px; }
.benefits .benefit:nth-child(even) { padding-left: 48px; border-left: 1px solid var(--espresso-15); }
@media (max-width: 720px) {
  .benefits .benefit:nth-child(odd)  { padding-right: 0; }
  .benefits .benefit:nth-child(even) { padding-left: 0; border-left: none; }
}
.benefit .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  color: var(--terracota);
  line-height: 1;
}
.benefit-text { font-size: 16px; line-height: 1.7; color: var(--espresso); }
.benefit-text strong { font-weight: 500; display: block; margin-bottom: 4px; }
.benefit-text .tail { color: var(--espresso-80); }

/* ---- Offer card ---- */
.offer-wrap {
  background: var(--espresso);
  color: var(--creme);
  border-radius: var(--radius-md);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.offer-wrap > * { position: relative; }
.offer-wrap .label { color: var(--terracota-soft); display: inline-block; }
.offer-wrap h2 { color: var(--creme); margin-top: 12px; margin-bottom: 16px; }
.offer-wrap .lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: color-mix(in oklab, var(--creme) 80%, transparent);
  max-width: 520px;
  margin: 0 auto 40px;
}
.offer-includes {
  list-style: none;
  margin: 0 auto 40px;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 520px;
  text-align: left;
}
.offer-includes li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15.5px;
  color: color-mix(in oklab, var(--creme) 92%, transparent);
}
.offer-includes li svg {
  width: 18px; height: 18px;
  stroke: var(--terracota-soft);
  stroke-width: 1.25;
  margin-top: 5px;
}
.offer-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid color-mix(in oklab, var(--creme) 18%, transparent);
  margin: 0 auto 40px;
  max-width: 640px;
  text-align: left;
}
@media (max-width: 720px) {
  .offer-meta { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .offer-wrap { padding: 56px 24px; }
}
.offer-meta dt {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracota-soft);
  margin-bottom: 6px;
}
.offer-meta dd { margin: 0; font-size: 15px; color: var(--creme); }

/* ---- Objections ---- */
.obj-list { margin-top: 48px; border-top: 1px solid var(--espresso-15); }
.obj { border-bottom: 1px solid var(--espresso-15); }
.obj-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 28px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: var(--espresso);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.005em;
}
.obj-q em { font-style: italic; }
.obj-q .toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--espresso-40);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all var(--dur-fast) var(--ease-soft);
  position: relative;
}
.obj-q .toggle::before,
.obj-q .toggle::after {
  content: "";
  position: absolute;
  width: 10px; height: 1px;
  background: var(--espresso);
  transition: transform var(--dur-base) var(--ease-soft);
}
.obj-q .toggle::after { transform: rotate(90deg); }
.obj.open .toggle { border-color: var(--terracota); background: var(--terracota); }
.obj.open .toggle::before, .obj.open .toggle::after { background: var(--creme); }
.obj.open .toggle::after { transform: rotate(0deg); }
.obj-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-soft); }
.obj-a-inner {
  padding: 0 0 28px 0;
  max-width: 600px;
  font-size: 16px;
  color: var(--espresso-80);
  line-height: 1.7;
}
.obj.open .obj-a { max-height: 360px; }

/* ---- Testimonial carousel ---- */
.testi-carousel {
  margin-top: 56px;
  position: relative;
}
.testi-track-wrap { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 600ms var(--ease-soft);
  will-change: transform;
}
.testi-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--areia);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
}
@media (max-width: 920px) {
  .testi-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  .testi-card { flex: 0 0 100%; }
}
.testi-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.45;
  color: var(--espresso);
}
.testi-card blockquote::before {
  content: "“";
  display: block;
  font-size: 56px;
  line-height: 0.6;
  color: var(--terracota);
  margin-bottom: 6px;
}
.testi-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in oklab, var(--espresso) 12%, transparent);
}
.testi-mono {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--creme);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--espresso);
}
.testi-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--espresso);
}
.testi-role {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--espresso-80);
}
.testi-pending {
  background: transparent;
  border: 1px dashed var(--espresso-15);
}
.testi-pending blockquote { color: var(--espresso-40); }
.testi-pending blockquote::before { color: var(--espresso-15); }

.testi-controls {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.testi-arrows { display: flex; gap: 10px; }
.testi-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--espresso-40);
  background: transparent;
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--espresso);
  transition: all var(--dur-fast) var(--ease-soft);
}
.testi-arrow:hover { border-color: var(--espresso); background: var(--espresso); color: var(--creme); }
.testi-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 24px; height: 2px;
  background: var(--espresso-15);
  border: 0;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-soft);
  padding: 0;
}
.testi-dot.active { background: var(--terracota); }

/* ---- FAQ ---- */
.faq-list { margin-top: 48px; border-top: 1px solid var(--espresso-15); }
.faq { border-bottom: 1px solid var(--espresso-15); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--espresso);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .ic {
  width: 14px; height: 14px;
  stroke: var(--espresso-60);
  stroke-width: 1.5;
  transition: transform var(--dur-base) var(--ease-soft);
}
.faq.open .faq-q .ic { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-soft); }
.faq.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 22px 0;
  max-width: 620px;
  font-size: 15px;
  color: var(--espresso-80);
  line-height: 1.7;
}

/* ---- Final CTA ---- */
.final {
  text-align: center;
  padding-top: 160px;
  padding-bottom: 140px;
  background: radial-gradient(ellipse at 50% 0%, color-mix(in oklab, var(--areia) 60%, var(--creme)) 0%, var(--creme) 60%);
  position: relative;
}
.final::after {
  content: "";
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  background: var(--espresso-15);
}
.final .h-display { margin-bottom: 32px; }
.final .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--espresso-80);
  max-width: 540px;
  margin: 0 auto 48px;
}
.final-meta {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--espresso-80);
}

/* ---- PS ---- */
.ps { padding-top: 80px; padding-bottom: 80px; border-top: 1px solid var(--espresso-15); }
.ps-content {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.55;
  color: var(--espresso-80);
}
.ps-content strong {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracota);
  display: inline-block;
  margin-right: 12px;
}

/* ---- Footer ---- */
.footer {
  padding-top: 72px;
  padding-bottom: 48px;
  border-top: 1px solid var(--espresso-15);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--espresso-80);
}
.footer-logo {
  display: block;
  height: 80px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 4px;
}
.footer-tagline {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso-80);
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--espresso-80);
}

/* ---- Centered section variants ----
   Centers headers and intro copy. Components inside cards/lists keep their own alignment.
*/
section.section.center > .measure > .reveal > .label,
section.section.center > .measure > .reveal > .h-section,
section.section.center > .measure > .reveal > .h-display,
section.section.center > .measure > .reveal > p,
section.section.center > .measure > .reveal > .body-lg,
section.section.center > .measure > .reveal > .pain-foot,
section.section.center > .measure > .reveal > .opening-quote,
section.section.center > .measure-wide > .measure > .reveal > .label,
section.section.center > .measure-wide > .measure > .reveal > .h-section,
section.section.center > .measure-wide > .measure > .reveal > .h-display,
section.section.center > .measure-wide > .measure > .reveal > p {
  text-align: center;
}
section.section.center .opening-quote {
  border-left: 0;
  border-top: 1px solid var(--terracota);
  padding: 28px 0 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
section.section.center .pain-foot {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Floating WhatsApp ---- */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--salvia);
  color: var(--creme);
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow:
    0 10px 28px color-mix(in oklab, var(--espresso) 26%, transparent),
    0 0 0 0 color-mix(in oklab, var(--salvia) 40%, transparent);
  opacity: 0;
  transform: translateY(80px) scale(0.85);
  pointer-events: none;
  transition:
    opacity var(--dur-base) var(--ease-soft),
    transform var(--dur-base) var(--ease-soft),
    background var(--dur-fast) var(--ease-soft),
    box-shadow var(--dur-fast) var(--ease-soft);
}
.fab-whatsapp.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: fab-pulse 2.6s var(--ease-soft) infinite;
}
.fab-whatsapp:hover {
  background: var(--espresso);
  transform: translateY(-2px) scale(1.04);
}
.fab-whatsapp svg {
  width: 30px;
  height: 30px;
  display: block;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 10px 28px color-mix(in oklab, var(--espresso) 26%, transparent), 0 0 0 0 color-mix(in oklab, var(--salvia) 50%, transparent); }
  50%      { box-shadow: 0 10px 28px color-mix(in oklab, var(--espresso) 26%, transparent), 0 0 0 12px color-mix(in oklab, var(--salvia) 0%, transparent); }
}
@media (max-width: 480px) {
  .fab-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
  .fab-whatsapp svg { width: 26px; height: 26px; }
}

/* ---- Misc ---- */
.dot-divider {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--espresso-40);
  vertical-align: middle;
  margin: 0 12px;
}


/* === Stagger testimonials (clip-path bilhetes) ============================ */
.stg-stage {
  position: relative;
  width: 100%;
  margin: 64px auto 0;
  overflow: hidden;
  /* allow clipped/rotated cards to overflow vertically without horizontal scroll */
}
.stg-card {
  position: absolute;
  left: 50%; top: 50%;
  background: var(--creme);
  color: var(--espresso);
  border: 1.5px solid var(--espresso-15);
  padding: 32px;
  cursor: pointer;
  transition: transform 520ms var(--ease-soft),
              background 320ms var(--ease-soft),
              color 320ms var(--ease-soft),
              border-color 320ms var(--ease-soft),
              box-shadow 320ms var(--ease-soft);
  box-shadow: 0 0 0 0 transparent;
  /* envelope-style notch in top-left + bottom-right */
  clip-path: polygon(
    32px 0%,
    calc(100% - 32px) 0%,
    100% 32px,
    100% 100%,
    calc(100% - 32px) 100%,
    32px 100%,
    0 100%,
    0 0
  );
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stg-card:hover {
  border-color: var(--terracota);
}
.stg-card.is-center {
  background: var(--espresso);
  color: var(--creme);
  border-color: var(--espresso);
  box-shadow: 0 12px 0 0 var(--terracota);
  cursor: default;
}
.stg-card.is-center:hover { border-color: var(--espresso); }
.stg-card.is-pending {
  background: transparent;
  color: var(--espresso-40);
  border-style: dashed;
  border-color: var(--espresso-15);
  box-shadow: none;
}
.stg-card.is-pending.is-center {
  background: var(--creme-deep);
  color: var(--espresso-60);
  box-shadow: 0 12px 0 0 var(--espresso-15);
  border-color: var(--espresso-15);
}

/* the diagonal accent line going off the top-right notch */
.stg-card-corner {
  position: absolute;
  right: -2px; top: 32px;
  width: 90px; height: 1.5px;
  background: var(--espresso-15);
  transform: rotate(45deg);
  transform-origin: top right;
  pointer-events: none;
}
.stg-card.is-center .stg-card-corner { background: color-mix(in oklab, var(--creme) 30%, transparent); }

.stg-mono {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  background: var(--areia);
  color: var(--espresso);
  box-shadow: 3px 3px 0 var(--creme);
  flex-shrink: 0;
}
.stg-card.is-center .stg-mono {
  background: var(--terracota);
  color: var(--creme);
  box-shadow: 3px 3px 0 var(--espresso);
}
.stg-card.is-pending .stg-mono {
  background: transparent;
  color: var(--espresso-40);
  border: 1px dashed var(--espresso-15);
  box-shadow: none;
}

.stg-quote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  flex-grow: 1;
}
.stg-by {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--espresso-80);
}
.stg-card.is-center .stg-by { color: color-mix(in oklab, var(--creme) 70%, transparent); }
.stg-card.is-pending .stg-by { color: var(--espresso-40); }

@media (max-width: 760px) {
  .stg-card { padding: 24px; }
  .stg-quote { font-size: 18px; }
  .stg-mono { width: 38px; height: 38px; font-size: 15px; }
}

.stg-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.stg-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--espresso-15);
  background: var(--creme);
  color: var(--espresso);
  cursor: pointer;
  display: grid; place-items: center;
  transition: all var(--dur-fast) var(--ease-soft);
}
.stg-btn:hover {
  background: var(--espresso);
  color: var(--creme);
  border-color: var(--espresso);
}
.stg-btn .ic.flip { transform: scaleX(-1); }
.stg-progress {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso-80);
  min-width: 90px;
  text-align: center;
}
.stg-progress em { font-style: normal; opacity: 0.5; margin: 0 4px; }


/* === Solution: 2-col with portrait =========================================== */
.solution-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
  text-align: left;
}
.solution-grid .solution-block {
  background: var(--creme-deep);
  border-radius: var(--radius-md);
  padding: 40px 40px;
  align-self: start;
}
.solution-portrait {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.solution-portrait .portrait-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--areia);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 48px -16px rgba(58,53,50,0.18);
}
.solution-portrait .portrait-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid color-mix(in oklab, var(--creme) 60%, transparent);
  border-radius: 6px;
  z-index: 2;
  pointer-events: none;
}
.solution-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.solution-portrait figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.solution-portrait .portrait-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--espresso);
}
.solution-portrait .portrait-role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso-80);
}

@media (max-width: 880px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .solution-portrait {
    position: static;
    align-items: center;
    text-align: center;
  }
  .solution-portrait .portrait-frame {
    max-width: 320px;
    width: 100%;
  }
  .solution-portrait figcaption { text-align: center; align-items: center; }
}

/* === Mobile pass — padding, sizing, hero reorder ============================= */
@media (max-width: 760px) {
  .shell {
    padding-left: 32px;
    padding-right: 32px;
  }
  section.section { padding-top: 64px; padding-bottom: 64px; }
  .hero { padding-top: 24px; padding-bottom: 64px; }

  .h-display { font-size: clamp(34px, 9vw, 44px); }
  .h-section { font-size: clamp(24px, 6.4vw, 32px); }

  /* Hero mobile reorder — eyebrow → headline → subhead → VISUAL → CTAs.
     Estratégia: display:contents no text-column "achata" a árvore — seus 4 Reveals
     (eyebrow, headline, subhead, CTA) viram irmãos do Reveal do visual no mesmo
     flex container. Aí o "order" funciona entre todos. Desktop não é afetado
     (este bloco só roda em ≤760px; no desktop o grid 2 colunas continua normal). */
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .hero-grid > div:first-child {
    display: contents;
  }
  /* Os 3 Reveals iniciais (eyebrow/headline/subhead) ficam com order: 0 (default)
     e mantêm a ordem natural do DOM. Só visual (4) e CTA (5) recebem order. */
  .hero-grid > .reveal:has(.hero-visual) {
    order: 4;
    margin: 0 auto;
  }
  .hero-grid > div:first-child > .reveal:has(.hero-cta-row) {
    order: 5;
  }
  .hero-visual {
    width: min(280px, 80vw);
    height: 280px;
    margin: 0 auto;
  }

  /* Centralização total no mobile — Hero + PS.
     As listas (pain, benefits, FAQ, etc.) NÃO são centralizadas porque
     bullet/número à esquerda + texto longo centralizado prejudica leitura. */
  .hero-eyebrow {
    justify-content: center;
    margin-bottom: 0;
  }
  .hero-headline {
    text-align: center;
    margin-bottom: 0;
  }
  .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .hero-cta-row { justify-content: center; }
  .ps-content { text-align: center; }
  /* Os margin-bottom acima são zerados porque, no flex column do mobile, eles
     somavam com o "gap: 20px" e dobravam o espaço entre headline/subhead/visual. */
}


/* === Mobile: extra breathing room ============================================ */
@media (max-width: 760px) {
  .nav.shell { padding-left: 20px; padding-right: 20px; }
  .offer-wrap { padding: 56px 24px; }
  .stg-stage { padding-left: 24px; padding-right: 24px; }
  .testi-card, .testi-track-wrap { padding-left: 0; padding-right: 0; }
  .footer.shell { padding-left: 28px; padding-right: 28px; }
  /* Solution mobile: card padding reduced */
  .solution-grid .solution-block { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .shell { padding-left: 24px; padding-right: 24px; }
  .nav.shell { padding-left: 20px; padding-right: 20px; }
}
