/* =========================================================
   AULA FORA DO SCRIPT — STYLE.CSS (v2 — refino premium)
   Mobile-first, dark editorial, gradient brand
   ========================================================= */

:root {
  /* Cores */
  --bg: #08080F;
  --bg-2: #0B0B14;
  --bg-3: #0E0E18;
  --bg-card: #15151F;
  --bg-card-2: #1A1A26;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-grad: rgba(236, 72, 153, 0.22);
  --text: #FAFAFA;
  --text-2: #B4B4BE;
  --text-3: #71717A;
  --text-muted: #52525B;
  --green: #10B981;
  --red: rgba(239, 68, 68, 0.65);
  --amber: #F59E0B;

  /* Gradiente da marca */
  --grad: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F59E0B 100%);
  --grad-r: linear-gradient(135deg, #A78BFA 0%, #F472B6 50%, #FBBF24 100%);
  --grad-soft: linear-gradient(135deg, rgba(139, 92, 246, 0.16) 0%, rgba(236, 72, 153, 0.16) 50%, rgba(245, 158, 11, 0.16) 100%);
  --grad-ghost: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, rgba(236, 72, 153, 0.06) 50%, rgba(245, 158, 11, 0.06) 100%);

  /* Espaços */
  --container: 1140px;
  --pad-x: 22px;
  --pad-section: 96px;

  /* Radius */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Sombras */
  --sh-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -30px rgba(0,0,0,0.5);
  --sh-card-hover: 0 1px 0 rgba(255,255,255,0.06) inset, 0 30px 60px -20px rgba(139, 92, 246, 0.18), 0 0 0 1px rgba(236, 72, 153, 0.18);
  --sh-btn: 0 14px 40px -10px rgba(236, 72, 153, 0.55), 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 0 0 1px rgba(255,255,255,0.05) inset;
  --sh-btn-hover: 0 22px 60px -12px rgba(236, 72, 153, 0.75), 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 1px rgba(255,255,255,0.08) inset;

  /* Tipografia */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;

  /* Easings */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.36, 0.64, 1);
}

@media (min-width: 768px)  { :root { --pad-x: 28px; --pad-section: 112px; } }
@media (min-width: 1024px) { :root { --pad-x: 32px; --pad-section: 128px; } }

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 76px; /* sticky bottom bar mobile */
  position: relative;
}
@media (min-width: 768px) {
  body { font-size: 18px; padding-bottom: 0; }
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: rgba(236, 72, 153, 0.4); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  position: relative;
  z-index: 2;
}

/* =========================================================
   ATMOSFERA GLOBAL — grão + halo ambient
   ========================================================= */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.ambient-glow {
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 80%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 15%, rgba(139, 92, 246, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 10%, rgba(236, 72, 153, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  filter: blur(8px);
}

/* GRADIENTE EM TEXTO */
.grad-text {
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* TAG */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--text-2);
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 26px;
  text-transform: uppercase;
}

/* BOTÃO */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: var(--grad);
  background-size: 200% 100%;
  background-position: 0% 0%;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: var(--sh-btn);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), background-position 500ms ease;
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  letter-spacing: 0.005em;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 700ms var(--ease-out);
  z-index: 1;
}
.btn > * { position: relative; z-index: 2; }
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-btn-hover);
  background-position: 100% 0%;
}
.btn:hover::before { transform: translateX(100%); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid rgba(236, 72, 153, 0.6); outline-offset: 4px; }

.btn--lg { padding: 20px 32px; font-size: 17px; }
.btn--xl { padding: 22px 36px; font-size: 18px; letter-spacing: 0.01em; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }
.btn__arrow { transition: transform 240ms var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* SECTION HELPERS */
.section-headline {
  font-size: clamp(28px, 4.6vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.section-headline--serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.section-sub {
  color: var(--text-2);
  font-size: clamp(16px, 1.8vw, 19px);
  margin: 0 0 48px;
  max-width: 720px;
  line-height: 1.55;
}

.prose p { margin: 0 0 18px; color: var(--text); }
.prose--center { text-align: center; color: var(--text-2); }

.dor .prose p {
  line-height: 1.78;
  margin-bottom: 22px;
}
.dor .prose p:nth-child(2) {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.005em;
}

.prose__callout {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.prose__callout strong {
  font-weight: 900;
}
.prose .prose__callout {
  margin: 40px 0;
}

/* REVEAL ANIMATION (com stagger via inline --d) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn::before, .btn { transition: none !important; }
}

/* DIVIDERS de seção (sutis) */
.section-divider {
  height: 1px;
  width: min(80%, 760px);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  opacity: 0.5;
}

/* =========================================================
   FAIXA MARQUEE — topo da página
   ========================================================= */
.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(139, 92, 246, 0.13) 0%,
      rgba(236, 72, 153, 0.11) 50%,
      rgba(139, 92, 246, 0.13) 100%),
    linear-gradient(180deg, #0D0D1A 0%, var(--bg-3) 100%);
  box-shadow:
    0 6px 32px -6px rgba(139, 92, 246, 0.22),
    0 1px 0 rgba(236, 72, 153, 0.10) inset;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.marquee::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(139, 92, 246, 0.65) 20%,
    rgba(236, 72, 153, 0.85) 50%,
    rgba(245, 158, 11, 0.70) 80%,
    transparent 100%
  );
  pointer-events: none;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 95s linear infinite;
}
.marquee__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 16px 0;
  gap: 36px;
  flex-shrink: 0;
  min-height: 46px;
}
.marquee__list > li { margin: 0; line-height: 1.2; }
.marquee__phrase {
  font-size: 11.5px;
  letter-spacing: 0.28em;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(250, 250, 250, 0.92);
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(139, 92, 246, 0.28), 0 1px 0 rgba(0, 0, 0, 0.5);
}
.marquee__bullet {
  font-size: 16px;
  line-height: 1.2;
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (min-width: 768px) {
  .marquee__list {
    padding: 18px 0;
    gap: 48px;
    min-height: 52px;
  }
  .marquee__phrase { font-size: 12.5px; letter-spacing: 0.30em; }
  .marquee__bullet { font-size: 17px; }
  .marquee__track { animation-duration: 80s; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    transform: none;
  }
}

/* =========================================================
   STICKY HEADER
   ========================================================= */
.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(8, 8, 15, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
  z-index: 50;
  transform: translateY(-100%);
  transition: transform 320ms var(--ease-out);
}
.sticky-header.is-visible { transform: translateY(0); }
.sticky-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.sticky-header__label {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 600;
  letter-spacing: 0.01em;
}
@media (max-width: 520px) { .sticky-header__label { font-size: 13px; } }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 112px 0 var(--pad-section);
  overflow: hidden;
  isolation: isolate;
}
.hero__glow {
  position: absolute;
  inset: -30% -20% 0 -20%;
  height: 90%;
  background:
    radial-gradient(circle at 22% 28%, rgba(139, 92, 246, 0.55) 0%, transparent 42%),
    radial-gradient(circle at 78% 18%, rgba(236, 72, 153, 0.38) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(245, 158, 11, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.18) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: heroDrift 20s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: translate(-1.5%, -1%) scale(1); }
  to   { transform: translate(2%, 1.5%) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__glow { animation: none; }
}

/* ================================================
   Hero visual-noise — símbolos ghost premium
   ================================================ */
.hero__visual-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Camada de partículas — grid de pontos sutis */
.hero__visual-noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(139, 92, 246, 0.55) 1px, transparent 1px),
    radial-gradient(circle, rgba(236, 72, 153, 0.40) 1px, transparent 1px);
  background-size: 68px 68px, 102px 102px;
  background-position: 0 0, 34px 34px;
  opacity: 0.20;
}
.hnoise {
  position: absolute;
  display: block;
}

/* Play grande — canto direito, contorno quase transparente */
.hnoise--play-lg {
  width: 200px;
  top: 3%;
  right: -6%;
  color: #EC4899;
  opacity: 0.16;
}
/* Balão de chat — canto inferior esquerdo, inclinado */
.hnoise--chat {
  width: 170px;
  bottom: 8%;
  left: -3%;
  color: #8B5CF6;
  opacity: 0.22;
  transform: rotate(-9deg);
}
/* Nota musical — lateral esquerda, terço médio */
.hnoise--note {
  width: 42px;
  top: 30%;
  left: 4%;
  color: #F59E0B;
  opacity: 0.24;
  transform: rotate(5deg);
}
/* Livro aberto — lateral esquerda, terço inferior */
.hnoise--book {
  width: 64px;
  bottom: 26%;
  left: 1.5%;
  color: #8B5CF6;
  opacity: 0.18;
  transform: rotate(-5deg);
}
/* Raio — lateral direita inferior */
.hnoise--bolt {
  width: 28px;
  bottom: 18%;
  right: 5.5%;
  color: #F59E0B;
  opacity: 0.26;
  transform: rotate(4deg);
}
/* Grid de pontos — canto esquerdo superior */
.hnoise--dots {
  width: 76px;
  top: 16%;
  left: 0.5%;
  color: #ffffff;
  opacity: 0.14;
}
/* Ondas — lateral direita */
.hnoise--wave {
  width: 240px;
  bottom: 20%;
  right: -2%;
  color: #8B5CF6;
  opacity: 0.16;
}
/* Cursor de IA — lateral direita, centro */
.hnoise--cursor {
  width: 22px;
  top: 44%;
  right: 7%;
  color: #EC4899;
  opacity: 0.24;
}
/* Lápis — canto superior direito */
.hnoise--pencil {
  width: 36px;
  top: 14%;
  right: 11%;
  color: #F59E0B;
  opacity: 0.20;
  transform: rotate(-20deg);
}

/* Mobile — visível nas bordas, opacidade maior que desktop */
@media (max-width: 959px) {
  /* Partículas mais discretas no mobile */
  .hero__visual-noise::before { opacity: 0.12; }

  /* Esconde livro e lápis (tamanho médio, risco de atrapalhar) */
  .hnoise--book,
  .hnoise--pencil { display: none; }

  /* Play — espreita pelo canto superior direito */
  .hnoise--play-lg {
    width: 140px;
    top: 1%;
    right: -9%;
    opacity: 0.14;
  }
  /* Chat — espreita pelo canto inferior esquerdo */
  .hnoise--chat {
    width: 120px;
    bottom: 8%;
    left: -8%;
    opacity: 0.14;
  }
  /* Nota — borda esquerda, acima do texto */
  .hnoise--note {
    width: 36px;
    top: 7%;
    left: 2%;
    opacity: 0.18;
    transform: rotate(5deg);
  }
  /* Raio — borda direita, área do mockup */
  .hnoise--bolt {
    width: 22px;
    bottom: 22%;
    right: 2%;
    opacity: 0.20;
  }
  /* Dots — canto esquerdo superior, parcialmente fora */
  .hnoise--dots {
    width: 60px;
    top: 10%;
    left: -2%;
    opacity: 0.12;
  }
  /* Ondas — borda direita inferior */
  .hnoise--wave {
    width: 170px;
    bottom: 14%;
    right: -4%;
    opacity: 0.13;
  }
  /* Cursor — borda direita, visível no mobile */
  .hnoise--cursor {
    width: 18px;
    top: 38%;
    right: 2%;
    opacity: 0.18;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 70px;
}
@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 80px;
  }
}
.hero__headline {
  font-size: clamp(36px, 6.4vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero__sub {
  font-size: clamp(17px, 1.9vw, 21px);
  color: var(--text-2);
  margin: 0 0 36px;
  max-width: 620px;
  line-height: 1.55;
}
.micro-validations {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--text-2);
  font-size: 14px;
}
.micro-validations li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
}

/* Phone mockup — refinado */
.hero__visual { display: flex; justify-content: center; }
.phone-mockup {
  width: 290px;
  max-width: 100%;
  background: linear-gradient(180deg, #050509 0%, #0A0A12 100%);
  border: 1px solid var(--border-strong);
  border-radius: 40px;
  padding: 14px 12px 18px;
  box-shadow:
    0 50px 100px -30px rgba(139, 92, 246, 0.55),
    0 30px 60px -25px rgba(236, 72, 153, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  transform: rotate(-1.2deg);
  transition: transform 600ms var(--ease-out);
}
.phone-mockup:hover { transform: rotate(0deg) translateY(-4px); }
.phone-mockup::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 42px;
  background: var(--grad);
  opacity: 0.4;
  filter: blur(20px);
  z-index: -1;
}
.phone-mockup__badge {
  position: absolute;
  top: 18px;
  right: -10px;
  z-index: 4;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 800;
  padding: 5px 10px;
  background: var(--grad);
  color: #fff;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 24px -6px rgba(236, 72, 153, 0.6);
  transform: rotate(8deg);
}
.phone-mockup__notch {
  width: 90px;
  height: 18px;
  background: #050509;
  border-radius: 0 0 14px 14px;
  margin: -14px auto 14px;
}
.phone-mockup__screen {
  background: linear-gradient(180deg, #121220 0%, #181828 100%);
  border-radius: 24px;
  padding: 20px 14px 24px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.chat-bubble {
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.55;
}
.chat-bubble__label {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--text-3);
}
.chat-bubble--user {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  max-width: 100%;
  color: var(--text);
}
.chat-bubble--user .chat-bubble__label { color: rgba(255, 255, 255, 0.4); }
.chat-bubble--assistant {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 50%, rgba(245, 158, 11, 0.12) 100%);
  border: 1px solid rgba(139, 92, 246, 0.32);
  max-width: 100%;
  box-shadow: 0 8px 24px -10px rgba(139, 92, 246, 0.4);
}
.chat-bubble--assistant .chat-bubble__label {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.chat-bubble--assistant strong { display: block; margin-bottom: 4px; color: var(--text); }

.chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.chat-header__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}
.chat-header__name {
  flex: 1;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}
.chat-header__status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.55);
}
.chat-cursor {
  display: inline-block;
  width: 2px;
  height: 12px;
  background: rgba(236, 72, 153, 0.85);
  border-radius: 1px;
  margin-left: 2px;
  vertical-align: middle;
  animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .chat-cursor { animation: none; opacity: 1; }
}

.mockup-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
}
.mockup-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent);
}
.mockup-divider__arrow {
  color: var(--amber);
  font-size: 14px;
  font-weight: 700;
}

.placeholder-tag {
  margin-top: auto;
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  padding: 8px;
  border: 1px dashed var(--border);
  border-radius: var(--r-sm);
  text-transform: uppercase;
}
.placeholder-tag--sm { font-size: 9.5px; padding: 6px; margin-top: 14px; }

/* Hero — centralização e refinamento mobile */
@media (max-width: 959px) {
  .hero {
    padding-bottom: calc(var(--pad-section) + 16px);
  }
  .hero__content {
    text-align: center;
  }
  .tag {
    margin-bottom: 32px;
  }
  .hero__headline {
    margin-bottom: 28px;
  }
  .hero__sub {
    margin-inline: auto;
    max-width: 480px;
  }
  .phone-mockup {
    width: 260px;
  }
  .phone-mockup__screen {
    padding: 18px 12px;
  }
}

/* =========================================================
   SEÇÃO 2 — DOR
   ========================================================= */
.dor {
  padding: var(--pad-section) 0;
  background:
    linear-gradient(180deg, transparent 0%, var(--bg-2) 12%, var(--bg-2) 88%, transparent 100%);
  position: relative;
}
.dor::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 80%; max-width: 720px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.quote-cards {
  display: grid;
  gap: 18px;
  margin: 36px 0;
}
@media (min-width: 720px) { .quote-cards { grid-template-columns: 1fr 1fr; } }
.quote-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 28px;
  position: relative;
  box-shadow: var(--sh-card);
  overflow: hidden;
}
.quote-card::before {
  content: """;
  position: absolute;
  top: -10px; right: 14px;
  font-family: var(--font-serif);
  font-size: 88px;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}
.quote-card__label {
  display: block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-3);
  font-weight: 700;
  margin-bottom: 14px;
}
.quote-card__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 24px);
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.005em;
}
.quote-card--book { border-left: 3px solid rgba(255, 255, 255, 0.18); }
.quote-card--coord { border-left: 3px solid var(--red); }

/* Manifesto outdoor */
.manifesto {
  padding: 44px 0 8px;
  position: relative;
}
.manifesto .container {
  display: flex;
  gap: 28px;
  align-items: stretch;
  background:
    radial-gradient(ellipse 60% 90% at 18% 50%, rgba(139, 92, 246, 0.14) 0%, transparent 70%),
    linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(236,72,153,0.10) 50%, rgba(245,158,11,0.08) 100%);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 70px -20px rgba(139, 92, 246, 0.45),
    0 0 40px -15px rgba(236, 72, 153, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.manifesto .container::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(139,92,246,0.65), rgba(236,72,153,0.55), rgba(245,158,11,0.45));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.manifesto__bar {
  width: 4px;
  background: var(--grad);
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.55);
}
.manifesto__content {
  flex: 1;
  min-width: 0;
}
.manifesto__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.20em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.manifesto__quote-deco {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 220px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.026);
  bottom: -40px;
  right: 22px;
  pointer-events: none;
  user-select: none;
}
.manifesto__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.manifesto__text--small {
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 14px;
}

/* Compactar transição dor → solução */
@media (min-width: 768px) {
  .dor  { padding-bottom: 56px; }
  .solucao { padding-top: 56px; }
}

/* Dor/Solucao — respiro mobile */
@media (max-width: 767px) {
  .dor .prose p {
    margin-bottom: 26px;
  }
  .dor .prose .prose__callout {
    margin: 38px 0;
  }
  .dor .manifesto {
    padding-top: 26px;
    padding-bottom: 2px;
  }
  .manifesto .container {
    padding: 26px 18px;
    gap: 16px;
  }
  .manifesto__eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }
  .manifesto__quote-deco {
    font-size: 150px;
    bottom: -24px;
    right: 10px;
  }
  .dor .prose--center p { margin-bottom: 0; }
  .dor {
    padding-top: 56px;
    padding-bottom: 24px;
  }
  .solucao {
    padding-top: 24px;
    padding-bottom: 52px;
  }
  .solucao__product   { margin-bottom: 28px; }
  .not-list           { margin-bottom: 28px; }
  .solucao__definition { margin-bottom: 36px; }
  .solucao__footer    { margin-top: 28px; }
}

/* =========================================================
   SEÇÃO 3 — SOLUÇÃO
   ========================================================= */
.solucao { padding: var(--pad-section) 0; text-align: center; position: relative; }
.solucao__lede {
  color: var(--text-2);
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.solucao__product {
  font-size: clamp(38px, 7.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 44px;
  line-height: 1;
}
.not-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 44px;
}
@media (min-width: 720px) { .not-list { grid-template-columns: repeat(3, 1fr); } }
.not-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: border-color 250ms var(--ease-out), color 250ms var(--ease-out);
}
.not-card:hover { color: var(--text); border-color: var(--border-strong); }
.not-card__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-3);
  font-size: 11px;
}
.solucao__definition {
  max-width: 780px;
  margin: 0 auto 56px;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.005em;
}

/* Fluxo Inputs → Outputs */
.flow {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 28px;
  max-width: 900px;
  margin: 0 auto 30px;
  position: relative;
  box-shadow: var(--sh-card);
}
.flow::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(236,72,153,0.2), transparent 40%, transparent 60%, rgba(139,92,246,0.2));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.flow__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-3);
  margin: 0 0 18px;
  font-weight: 700;
}
.flow__inputs { display: grid; gap: 10px; }
@media (min-width: 600px) { .flow__inputs { grid-template-columns: repeat(3, 1fr); } }
.flow__input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 18px;
  font-weight: 600;
  font-size: 15px;
}
.flow__arrow {
  font-size: 28px;
  color: var(--text-3);
  margin: 26px 0;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.flow__outputs { display: grid; gap: 10px; }
@media (min-width: 600px) { .flow__outputs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .flow__outputs { grid-template-columns: repeat(3, 1fr); } }
.flow__output {
  background: var(--grad-soft);
  border: 1px solid rgba(236, 72, 153, 0.18);
  border-radius: var(--r-sm);
  padding: 16px;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 250ms var(--ease-out), border-color 250ms var(--ease-out);
}
.flow__output:hover { transform: translateY(-2px); border-color: rgba(236, 72, 153, 0.35); }
.flow__output::before {
  content: "✦";
  color: var(--amber);
  font-size: 14px;
  flex-shrink: 0;
}
.solucao__footer {
  max-width: 720px;
  margin: 44px auto 0;
  color: var(--text-2);
  font-size: 17px;
}

/* =========================================================
   SEÇÃO 4 — VEJA NA PRÁTICA
   ========================================================= */
.pratica {
  padding: var(--pad-section) 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-2) 8%, var(--bg-2) 92%, transparent 100%);
  position: relative;
}

.example-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  margin-bottom: 28px;
  position: relative;
  box-shadow: var(--sh-card);
  transition: transform 350ms var(--ease-out), box-shadow 350ms var(--ease-out);
}
.example-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 40px 80px -30px rgba(139, 92, 246, 0.25);
}
.example-card--featured {
  background:
    linear-gradient(180deg, var(--bg-card) 0%, rgba(139, 92, 246, 0.04) 100%);
  position: relative;
}
.example-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(236,72,153,0.4), rgba(139,92,246,0.2), rgba(245,158,11,0.3));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.example-card__header {
  margin-bottom: 26px;
}
.example-card__tema {
  display: inline-block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-3);
  font-weight: 700;
  margin-bottom: 8px;
}
.example-card__title {
  font-size: clamp(26px, 4vw, 36px);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.example-card__grid { display: grid; gap: 14px; }
@media (min-width: 900px) {
  .example-card__grid { grid-template-columns: 1fr 1fr 1.4fr; }
}
.block {
  padding: 22px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.block p { margin: 0; font-size: 15.5px; line-height: 1.55; }
.block__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 15px;
}
.block__label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-3);
  font-weight: 800;
}
.block--book {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.block--book .block__icon { background: rgba(255, 255, 255, 0.06); }
.block--coord {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.block--coord .block__icon { background: rgba(239, 68, 68, 0.2); color: #FCA5A5; }
.block--solution {
  background: var(--grad-soft);
  border: 1px solid rgba(236, 72, 153, 0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.block--solution .block__icon { background: rgba(245, 158, 11, 0.22); color: #FCD34D; }
.block--solution .block__label {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.example-card__result {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
  font-size: 16px;
}
.example-card__result-label {
  font-weight: 700;
  margin-right: 6px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.example-card__result em { font-style: italic; color: var(--text); }

/* Game mockup */
.game-mockup {
  margin-top: 26px;
  padding: 26px;
  background: #07070D;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: relative;
}
.game-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(236,72,153,0.18), transparent 50%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.game-mockup__scenario { margin-bottom: 20px; }
.game-mockup__badge {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  padding: 5px 11px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
  box-shadow: 0 6px 20px -4px rgba(236, 72, 153, 0.5);
}
.game-mockup__scenario p { margin: 0; font-size: 16.5px; line-height: 1.5; }
.game-mockup__choices { display: grid; gap: 10px; }
.choice {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: var(--text);
  cursor: default;
  transition: background 250ms var(--ease-out), border-color 250ms var(--ease-out);
}
.choice:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(236, 72, 153, 0.25); }
.choice__letter {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid rgba(236, 72, 153, 0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.choice__text { font-size: 14.5px; line-height: 1.45; }

.example-card__extra { margin-top: 22px; color: var(--text-2); }
.example-card__extra p { margin: 0 0 14px; }

.pratica .section-headline {
  letter-spacing: -0.03em;
  margin-bottom: 36px;
}
.pratica__footer {
  text-align: center;
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--text);
  max-width: 780px;
  margin: 48px auto 32px;
  line-height: 1.6;
}
.pratica__footer strong {
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cta-row { display: flex; justify-content: center; margin-top: 10px; }

/* pratica → prova — respiro mobile */
@media (max-width: 767px) {
  .pratica         { padding-top: 52px; padding-bottom: 52px; }
  .prova           { padding-top: 52px; padding-bottom: 52px; }
  .pratica__footer { margin: 28px auto 18px; }
  .prova__closing  { margin-top: 28px; }
  .section-sub     { margin-bottom: 28px; }
}

/* =========================================================
   SEÇÃO 5 — PROVA SOCIAL
   ========================================================= */
.prova { padding: var(--pad-section) 0; }

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 40px 0;
}
@media (min-width: 768px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
  background: linear-gradient(150deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 0 0 1px rgba(139,92,246,0.07), 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(236,72,153,0.22);
  box-shadow: 0 0 0 1px rgba(236,72,153,0.15), 0 20px 48px rgba(139,92,246,0.22);
}

.testimonial__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(236,72,153,0.45);
}
.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testimonial__name {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.testimonial__badge {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.testimonial__quote {
  margin: 0;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text);
  line-height: 1.55;
}
.testimonial__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  margin-top: 4px;
}

.prova__closing {
  text-align: center;
  max-width: 820px;
  margin: 48px auto 0;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-2);
  line-height: 1.55;
}

/* =========================================================
   SEÇÃO 5 — DEPOIMENTOS (depo-*)
   ========================================================= */
.depo-section { padding: var(--pad-section) 0; }

.depo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 640px) {
  .depo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .depo-grid { grid-template-columns: repeat(3, 1fr); }
}

.depo-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.depo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.depo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.depo-name {
  margin: 0 0 3px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.depo-badge {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}
.depo-quote {
  margin: 0 0 16px;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.depo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   SEÇÃO 6 — OFERTA
   ========================================================= */
.oferta {
  padding: var(--pad-section) 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-2) 8%, var(--bg-3) 92%, transparent 100%);
  position: relative;
}
.oferta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.bonus-grid {
  display: grid;
  gap: 20px;
  margin: 44px 0 30px;
}
@media (min-width: 720px)  { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .bonus-grid { grid-template-columns: repeat(4, 1fr); } }

.bonus-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 320ms var(--ease-out);
  box-shadow: var(--sh-card);
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 30px 60px -20px rgba(236, 72, 153, 0.4);
  border-color: rgba(236, 72, 153, 0.32);
}
.bonus-card--main {
  background: linear-gradient(180deg, rgba(139,92,246,0.08) 0%, var(--bg-card-2) 100%);
  position: relative;
}
.bonus-card--main::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(236,72,153,0.5), rgba(139,92,246,0.3), rgba(245,158,11,0.4));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.bonus-card__badge {
  position: absolute;
  top: -11px;
  left: 22px;
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  font-weight: 800;
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  color: var(--text-2);
}
.bonus-card__badge--main {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px -6px rgba(236, 72, 153, 0.6);
}
.bonus-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--grad-soft);
  border: 1px solid rgba(236, 72, 153, 0.18);
  border-radius: var(--r-md);
  overflow: hidden;
  padding: 6px;
}
.bonus-card__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.bonus-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.bonus-card__desc {
  font-size: 14.5px;
  color: var(--text-2);
  margin: 0;
  flex-grow: 1;
  line-height: 1.55;
}
.bonus-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.bonus-card__value {
  text-decoration: line-through;
  color: var(--text-3);
  font-size: 14.5px;
  letter-spacing: 0.01em;
}
.bonus-card__included {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 11px;
  background: rgba(16, 185, 129, 0.14);
  color: var(--green);
  border-radius: var(--r-pill);
  border: 1px solid rgba(16, 185, 129, 0.32);
}

.updates-row {
  text-align: center;
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0 0 44px;
  padding: 14px;
  border: 1px dashed var(--border);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.02);
  letter-spacing: 0.005em;
}
.updates-row span { margin-right: 8px; color: var(--amber); font-size: 16px; }

.price-box {
  max-width: 660px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139,92,246,0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border-radius: var(--r-xl);
  padding: 44px 28px 36px;
  text-align: center;
  position: relative;
  box-shadow:
    0 40px 100px -30px rgba(236, 72, 153, 0.45),
    0 20px 60px -20px rgba(139, 92, 246, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.price-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.7), rgba(139, 92, 246, 0.5), rgba(245, 158, 11, 0.55));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.price-box__before { color: var(--text-2); margin: 0 0 6px; font-size: 15px; letter-spacing: 0.01em; }
.price-box__anchor { display: none; margin: 0; }
.price-box__anchor-old { display: none; }
.price-box__strike {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  color: var(--text-3);
}
.price-box__after { margin: 0 0 4px; font-size: 17px; color: var(--text-2); display: flex; flex-direction: column; gap: 4px; align-items: center; }
.price-box__amount {
  font-size: clamp(64px, 13vw, 104px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 40px rgba(236, 72, 153, 0.25);
}
.price-box__installments { display: none; margin: 0; }
.price-box__line {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-2);
  margin: 0 0 32px;
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.trust-row {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  font-size: 12.5px;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

/* =========================================================
   SEÇÃO 7 — GARANTIA
   ========================================================= */
.garantia { padding: var(--pad-section) 0; }
.garantia__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 800px) {
  .garantia__inner {
    grid-template-columns: 280px 1fr;
    gap: 64px;
  }
}
.guarantee-seal {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
  flex-shrink: 0;
  filter: drop-shadow(0 16px 40px rgba(245, 158, 11, 0.35));
}
.garantia__content p {
  font-size: 17px;
  color: var(--text-2);
  margin: 0 0 18px;
  line-height: 1.6;
}
.garantia__highlight {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 24px) !important;
  color: var(--text) !important;
  margin-top: 24px !important;
  letter-spacing: -0.005em;
}

/* =========================================================
   SEÇÃO 8 — PARA QUEM É
   ========================================================= */
.audience {
  padding: var(--pad-section) 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-2) 12%, var(--bg-2) 88%, transparent 100%);
}
.audience__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 780px) { .audience__grid { grid-template-columns: 1fr 1fr; } }
.audience-col {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border-radius: var(--r-xl);
  padding: 34px 28px;
  box-shadow: var(--sh-card);
}
.audience-col--yes {
  border: 1px solid rgba(16, 185, 129, 0.32);
  background:
    radial-gradient(ellipse 100% 40% at 50% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
}
.audience-col--no { border: 1px solid var(--border); }
.audience-col__title {
  font-size: 22px;
  margin: 0 0 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.audience-col ul { list-style: none; padding: 0; margin: 0; }
.audience-col li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  font-size: 15.5px;
  color: var(--text);
  border-top: 1px dashed var(--border);
  line-height: 1.55;
}
.audience-col li:first-child { border-top: none; padding-top: 0; }
.audience-col__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}
.audience-col--yes .audience-col__icon {
  background: rgba(16, 185, 129, 0.2);
  color: var(--green);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.3);
}
.audience-col--no .audience-col__icon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-3);
}

/* =========================================================
   SEÇÃO 9 — FAQ
   ========================================================= */
.faq { padding: var(--pad-section) 0; }
.accordion {
  max-width: 800px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accordion__item {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 280ms var(--ease-out), background 280ms var(--ease-out);
}
.accordion__item:hover { border-color: var(--border-strong); }
.accordion__item[open] {
  border-color: rgba(236, 72, 153, 0.3);
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(139, 92, 246, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
}
.accordion__q {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.005em;
  transition: color 200ms var(--ease-out);
}
.accordion__item:hover .accordion__q { color: var(--text); }
.accordion__q::-webkit-details-marker { display: none; }
.accordion__icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid rgba(236, 72, 153, 0.22);
  position: relative;
  transition: transform 320ms var(--ease-spring), background 320ms var(--ease-out);
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 320ms var(--ease-out);
  border-radius: 2px;
}
.accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__item[open] .accordion__icon {
  transform: rotate(135deg);
  background: var(--grad);
}
.accordion__item[open] .accordion__icon::before,
.accordion__item[open] .accordion__icon::after { background: #fff; }
.accordion__a {
  padding: 0 24px 24px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.65;
  animation: slideDown 320ms var(--ease-out);
}
.accordion__a p { margin: 0; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   SEÇÃO 10 — CTA FINAL + PS
   ========================================================= */
.cta-final {
  position: relative;
  padding: var(--pad-section) 0;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.32) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.28) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(245, 158, 11, 0.18) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-final__lede {
  color: var(--text-2);
  font-size: clamp(17px, 2.2vw, 21px);
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-style: italic;
}
.cta-final__headline {
  font-size: clamp(30px, 5.8vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 30px;
  max-width: 940px;
  margin-inline: auto;
  text-wrap: balance;
}
.cta-final__terms {
  color: var(--text-2);
  font-size: 15.5px;
  margin: 0 0 34px;
  letter-spacing: 0.005em;
}

.ps-cards {
  display: grid;
  gap: 20px;
  margin-top: 72px;
  text-align: left;
  max-width: 900px;
  margin-inline: auto;
}
@media (min-width: 800px) {
  .ps-cards { grid-template-columns: 1.25fr 1fr; }
}
.ps-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow: var(--sh-card);
  position: relative;
}
.ps-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.ps-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(236, 72, 153, 0.4);
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  padding: 6px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.ps-card__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.ps-card__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 800;
  padding: 6px 13px;
  background: var(--grad);
  color: #fff;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 24px -6px rgba(236, 72, 153, 0.55);
}
.ps-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  font-size: 15.5px;
}
.ps-blockquote {
  margin: 0;
  padding: 24px 24px 24px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  background: transparent;
  border: none;
}
.ps-blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 99px;
  background: var(--grad);
}
.ps-blockquote__deco {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 1;
  color: var(--pink);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.ps-card__sub {
  color: var(--text-2) !important;
  font-size: 14.5px;
  line-height: 1.6;
}

/* Espaçamento vertical mobile — oferta ao CTA final */
@media (max-width: 767px) {
  .oferta          { padding-top: 52px; padding-bottom: 52px; }
  .garantia        { padding-top: 52px; padding-bottom: 52px; }
  .audience        { padding-top: 52px; padding-bottom: 52px; }
  .faq             { padding-top: 52px; padding-bottom: 52px; }
  .cta-final       { padding-top: 52px; padding-bottom: 52px; }
  .bonus-grid      { margin-top: 28px; margin-bottom: 20px; }
  .garantia__inner { gap: 32px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}

/* =========================================================
   STICKY BOTTOM (mobile)
   ========================================================= */
.sticky-bottom {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-top: 1px solid var(--border);
  z-index: 40;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
}
.sticky-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-inline: 16px;
  max-width: var(--container);
  margin-inline: auto;
}
.sticky-bottom__btn {
  width: 100%;
  max-width: 360px;
  padding: 14px 22px;
  font-size: 15px;
}

@media (min-width: 768px) { .sticky-bottom { display: none; } }

/* =========================================================
   RESPONSIVO — ≤ 767px — gaps e botões
   ========================================================= */
@media (max-width: 767px) {
  /* Botões full-width em todos os CTAs inline */
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-row .btn { width: 100%; }
  .hero .btn--lg { width: 100%; }
  .cta-final .btn--xl { width: 100%; }

  /* Produto — reduz mínimo do clamp no mobile */
  .solucao__product { font-size: clamp(34px, 9vw, 48px); }

  /* Garantia — centraliza selo quando empilhado */
  .guarantee-seal { margin-inline: auto; }

  /* PS blockquote — alivia padding esquerdo */
  .ps-blockquote { padding-inline: 16px; padding-left: 28px; }

  /* Overflow global — impede scroll horizontal */
  body { overflow-x: hidden; }
  .container { overflow-x: clip; }
}

/* =========================================================
   RESPONSIVO — ≤ 480px — telas pequenas
   ========================================================= */
@media (max-width: 480px) {
  /* --- Tipografia --- */
  .hero__headline {
    font-size: 30px;
    line-height: 1.1;
  }
  .solucao__product { font-size: 32px; }
  .cta-final__headline {
    font-size: 26px;
    line-height: 1.12;
  }
  .section-headline { font-size: 26px; }
  .section-sub { font-size: 15px; margin-bottom: 24px; }

  /* --- Hero --- */
  .hero__sub { font-size: 15px; margin-bottom: 28px; }
  .phone-mockup { width: 220px; }

  /* --- Cards — padding compacto --- */
  .example-card { padding: 22px 16px; }
  .bonus-card   { padding: 20px 16px; }
  .audience-col { padding: 22px 16px; }
  .quote-card   { padding: 18px 16px; }
  .ps-card      { padding: 20px 16px; }
  .ps-blockquote { padding: 16px 14px 16px 24px; }

  /* --- Price box --- */
  .price-box { padding: 30px 18px 24px; }
  .price-box__amount { font-size: 56px; }

  /* --- Imagens --- */
  .guarantee-seal { width: 170px; }
  .depo-img { border-radius: 10px; }

  /* --- Accordion FAQ --- */
  .accordion { margin-top: 20px; }

  /* --- Espaços gerais --- */
  .ps-cards { margin-top: 40px; }
  .bonus-grid { gap: 14px; }
  .depo-grid  { gap: 14px; }
}
