/* ============================================
   Inari Ciccone — Imersão Landing Page
   Design System
   ============================================ */

/* --- TOKENS --- */
:root {
  /* Ink & paper */
  --ink: #0B1F3A;
  --ink-soft: #13284A;
  --ink-mid: #3B5374;
  --paper: #F2ECDF;
  --paper-warm: #EAE1CE;
  --paper-deep: #1A2B45;

  /* Signature accents */
  --sage: #3E7A5B;
  --sage-deep: #2C5A42;
  --sage-light: #B6CDB8;
  --gold: #B28D4A;
  --gold-soft: #D4B684;
  --madder: #B44A37;

  /* Legacy aliases — keep so existing rules don't break */
  --cor-base: var(--ink);
  --cor-escuro: var(--ink-soft);
  --cor-mid: var(--ink-mid);
  --cor-accent: var(--sage);
  --cor-accent-escuro: var(--sage-deep);
  --cor-accent-light: var(--sage-light);
  --branco: var(--paper);
  --cor-light-bg: var(--paper);
  --cor-light-text: var(--ink);
  --cor-light-muted: var(--ink-mid);
  --muted: var(--ink);
  --muted-fg: hsl(35, 18%, 72%);
  --glass-bg: hsla(215, 50%, 10%, 0.55);
  --glass-border: hsla(35, 30%, 92%, 0.1);
  --cor-success: var(--sage-light);
  --cor-danger: var(--madder);

  /* Typography */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-italic: "Instrument Serif", "Fraunces", serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;

  --f-display: clamp(2.5rem, 1rem + 6vw, 6rem);
  --f-h1: clamp(2rem, 1rem + 4vw, 4.5rem);
  --f-h2: clamp(1.75rem, 0.8rem + 3.5vw, 3.75rem);
  --f-h3: clamp(1.25rem, 0.6rem + 1.8vw, 1.875rem);
  --f-body: clamp(1rem, 0.85rem + 0.5vw, 1.15rem);
  --f-small: clamp(0.85rem, 0.75rem + 0.3vw, 0.95rem);
  --f-micro: 0.72rem;

  --pad-body: clamp(1.25rem, -1rem + 7vw, 3.5rem);
  --pad-section: clamp(5rem, 3rem + 6vw, 10rem);

  --tr-time: 600ms;
  --bezier: cubic-bezier(0.22, 0.61, 0.36, 1);
  --radius-btn: 0;
  --radius-card: 2px;
  --radius-lg: 4px;
  --radius-input: 2px;

  --rule: 1px solid hsla(35, 30%, 92%, 0.18);
  --rule-dark: 1px solid hsla(215, 40%, 20%, 0.15);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--f-body);
  font-weight: 400;
  color: var(--paper);
  background: var(--ink);
  line-height: 1.65;
  letter-spacing: 0.002em;
  font-feature-settings: "ss01", "ss02";
}

/* Subtle paper grain on light sections, ink grain on dark */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  background-image:
    radial-gradient(hsla(35, 40%, 90%, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input { font-family: inherit; }

h1, h2, h3, h4,
.section-title, .hero-title,
[class*="-close"],
[class*="-narrative"],
[class*="-reality"],
[class*="-anchor"] {
  text-wrap: balance;
}

p, .section-sub, .hero-subtitle {
  text-wrap: pretty;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-body);
}

/* --- TYPOGRAPHY --- */
.section-title {
  font-family: var(--font-display);
  font-size: var(--f-h2);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--paper);
}

.section-title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--sage-light);
  letter-spacing: -0.01em;
}

.section-overtitle {
  font-family: var(--font-body);
  font-size: var(--f-micro);
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-overtitle::before,
.section-overtitle::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-sub {
  font-size: var(--f-body);
  color: var(--muted-fg);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* Editorial numbered label — use as <span class="section-number">N° 04</span> */
.section-number {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-soft);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 1rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius-btn);
  transition: background var(--tr-time) var(--bezier),
              color var(--tr-time) var(--bezier),
              border-color var(--tr-time) var(--bezier),
              transform 300ms var(--bezier);
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  max-width: 100%;
  position: relative;
  border: 1px solid transparent;
}

.btn::after {
  content: "→";
  font-family: var(--font-italic);
  font-style: italic;
  text-transform: none;
  font-size: 1.1em;
  transform: translateX(0);
  transition: transform 400ms var(--bezier);
  letter-spacing: 0;
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn-accent {
  background: var(--sage);
  color: var(--paper);
  border-color: var(--sage);
}

.btn-accent:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
}

.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 1px solid currentColor;
}

.section-light .btn-outline {
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn-sm {
  font-size: var(--f-micro);
  padding: 0.7rem 1.4rem;
  letter-spacing: 0.15em;
}

.btn-lg {
  font-size: clamp(0.78rem, 0.6rem + 0.3vw, 0.9rem);
  padding: 1.15rem 2.5rem;
  letter-spacing: 0.18em;
}

.btn-full { width: 100%; }

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 400ms var(--bezier);
}

.site-header.scrolled {
  background: hsla(215, 55%, 5%, 0.9);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border-bottom: var(--rule);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem var(--pad-body);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: 0.01em;
  font-style: italic;
  position: relative;
  padding-left: 1.2rem;
}

.header-logo-text::before {
  content: "I·C";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  opacity: 0.9;
  display: none;
}

.header-ticker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--muted-fg);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
  animation: tickerBlink 2.4s ease-in-out infinite;
}

@keyframes tickerBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.ticker-text strong {
  color: var(--gold-soft);
  font-weight: 500;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem var(--pad-body) 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, hsla(35, 60%, 55%, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 90%, hsla(150, 45%, 25%, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #0A1A30 0%, var(--ink) 60%, #0A1A30 100%);
  border-bottom: var(--rule);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: var(--rule);
  pointer-events: none;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    hsla(150, 60%, 45%, 0.06) 0%,
    hsla(215, 40%, 20%, 0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite alternate;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 1px 1px, hsla(0, 0%, 100%, 0.5) 1px, transparent 0);
  background-size: 3px 3px;
  z-index: 1;
}

@keyframes glowPulse {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
  text-align: left;
}

.hero-overtitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}


.hero-title {
  font-family: var(--font-display);
  font-size: var(--f-h1);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: var(--paper);
}

.hero-word {
  display: block;
  padding: 0.02em 0;
}

.hero-word:first-child {
  font-style: normal;
}

.hero-word:last-child {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--sage-light);
  padding-left: 0.8em;
  letter-spacing: -0.015em;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.85rem + 0.4vw, 1.15rem);
  color: var(--paper);
  opacity: 0.82;
  margin-bottom: 1.5rem;
  line-height: 1.65;
  max-width: 520px;
  font-weight: 300;
}

.hero-micro {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--gold-soft);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 520px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 1.25rem;
  border-top: var(--rule);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero-cta { margin-top: 0.5rem; }

.hero-cta-micro {
  display: none;
}

/* --- HERO PORTRAIT --- */
.hero-portrait {
  position: relative;
  justify-self: center;
  width: min(100%, 440px);
  aspect-ratio: 3 / 4.2;
  animation: heroPortraitFade 1400ms var(--bezier) 200ms both;
}

.hero-portrait-halo {
  position: absolute;
  inset: -10% -15% -6% -15%;
  background:
    radial-gradient(ellipse at 50% 35%, hsla(150, 35%, 40%, 0.22) 0%, hsla(35, 40%, 50%, 0.12) 40%, transparent 70%),
    radial-gradient(ellipse at 70% 70%, hsla(35, 40%, 45%, 0.15) 0%, transparent 55%);
  filter: blur(48px);
  opacity: 0.9;
  animation: heroHaloPulse 9s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroHaloPulse {
  0%   { transform: scale(1) translateY(0);    opacity: 0.75; }
  100% { transform: scale(1.08) translateY(-6px); opacity: 1; }
}

.hero-portrait-frame {
  position: absolute;
  inset: 0;
  border-radius: 240px 240px 2px 2px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 40px 80px -20px hsla(215, 50%, 3%, 0.65),
    0 0 0 1px hsla(35, 30%, 80%, 0.1),
    inset 0 0 0 1px hsla(35, 40%, 80%, 0.06);
  background: linear-gradient(180deg, hsla(215, 50%, 12%, 0.2), hsla(215, 50%, 6%, 0.6));
  transform: translateZ(0);
  transition: transform 700ms var(--bezier);
}

.hero-portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, hsla(215, 55%, 8%, 0.55) 90%, hsla(215, 55%, 6%, 0.8) 100%),
    linear-gradient(200deg, hsla(150, 50%, 35%, 0.18) 0%, transparent 40%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}

.hero-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 10%, hsla(150, 60%, 70%, 0.15) 0%, transparent 45%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 3;
}

.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.02);
  transition: transform 4000ms var(--bezier);
}

.hero-portrait:hover .hero-portrait-frame img {
  transform: scale(1.06);
}

.hero-portrait-index {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 4;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--gold-soft);
  padding: 0.35rem 0.7rem;
  border: 1px solid hsla(35, 50%, 80%, 0.28);
  border-radius: 2px;
  backdrop-filter: blur(8px);
  background: hsla(215, 50%, 8%, 0.55);
}

.hero-portrait-rule {
  position: absolute;
  top: 50%;
  right: -3.5rem;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: hsla(35, 40%, 80%, 0.7);
  white-space: nowrap;
  pointer-events: none;
}

.hero-portrait-rule span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-portrait-rule::before,
.hero-portrait-rule::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  vertical-align: middle;
  margin: 0 0.6rem;
}

.hero-portrait-stamp {
  position: absolute;
  bottom: -1.75rem;
  left: -1.75rem;
  width: 115px;
  height: 115px;
  color: var(--gold-soft);
  z-index: 4;
  animation: heroStampSpin 28s linear infinite;
  filter: drop-shadow(0 10px 24px hsla(215, 60%, 3%, 0.6));
}

.hero-portrait-stamp svg {
  width: 100%;
  height: 100%;
}

.hero-portrait-stamp text {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  fill: currentColor;
  text-transform: uppercase;
}

@keyframes heroStampSpin {
  to { transform: rotate(360deg); }
}

@keyframes heroPortraitFade {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-portrait,
  .hero-portrait-halo,
  .hero-portrait-stamp,
  .hero-portrait-frame img {
    animation: none !important;
    transition: none !important;
  }
}

/* --- SECTIONS --- */
.section {
  padding: var(--pad-section) 0;
  text-align: center;
  position: relative;
}

.section + .section:not(.section-light) {
  border-top: var(--rule);
}

.section-light + .section-light {
  border-top: var(--rule-dark);
}


.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-light .section-title,
.section-light .section-title em {
  color: var(--ink);
}

.section-light .section-title em {
  color: var(--sage-deep);
}

.section-light .section-overtitle {
  color: var(--gold);
}

.section-light .section-sub,
.section-light .muted-fg,
.section-light p {
  color: var(--ink-mid);
}

.section-light [class*="-close"] {
  color: var(--ink);
}

.section-light strong {
  color: var(--sage-deep);
  font-weight: 500;
}

.section-light .glass-bg,
.section-light [style*="glass-bg"],
.section-light .comparison-card,
.section-light .audience-card,
.section-light .visualization-step,
.section-light .authority-pillar {
  background: hsla(35, 30%, 94%, 0.85);
  border-color: hsla(215, 30%, 30%, 0.12);
  color: var(--ink);
}

.section-light .btn-accent {
  color: var(--paper);
}

.section-light .comparison-without,
.section-light .comparison-with {
  background: hsla(35, 40%, 96%, 0.9);
  border-color: hsla(215, 30%, 30%, 0.12);
}

.section-light .comparison-with {
  background: hsla(150, 25%, 94%, 0.95);
  border-color: hsla(150, 35%, 40%, 0.2);
}

.section-light .audience-col {
  background: hsla(213, 30%, 92%, 0.8);
  border-color: hsla(213, 30%, 70%, 0.3);
}

.section-light .visualization-step {
  background: hsla(213, 30%, 92%, 0.8);
  border-color: hsla(213, 30%, 70%, 0.3);
}

.section-light .visualization-step p {
  color: var(--cor-light-text);
}

.section-light .visualization-close {
  color: var(--cor-light-text);
}

.section-light .authority-pillar {
  background: hsla(213, 30%, 92%, 0.8);
  border-color: hsla(213, 30%, 70%, 0.3);
}

.section-light .guarantee-content {
  background: hsla(213, 30%, 92%, 0.8);
  border-color: hsla(213, 30%, 70%, 0.3);
}

.section-light .faq-item {
  background: hsla(213, 30%, 92%, 0.8);
  border-color: hsla(213, 30%, 70%, 0.3);
}

/* --- VSL --- */
.vsl-wrapper {
  max-width: 880px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}

.vsl-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: hsla(215, 40%, 8%, 0.9);
  border: 1px solid hsla(215, 30%, 30%, 0.18);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px hsla(215, 50%, 8%, 0.35);
}

.vsl-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vsl-cta {
  margin-top: 2rem;
}

/* --- PROOF (QUEBRA DE CRENÇA) --- */
.proof-beliefs {
  max-width: 560px;
  margin: 2rem auto;
  text-align: left;
}

.proof-beliefs-intro {
  font-size: var(--f-body);
  color: var(--muted-fg);
  margin-bottom: 1rem;
}

.proof-beliefs-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.proof-belief-item {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.7rem + 0.8vw, 1.3rem);
  font-weight: 500;
  color: var(--muted-fg);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-card);
  background: hsla(0, 80%, 20%, 0.08);
  border-left: 3px solid var(--cor-danger);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.belief-x {
  color: var(--cor-danger);
  font-weight: 700;
  flex-shrink: 0;
}

.proof-reality {
  max-width: 560px;
  margin: 2.5rem auto;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  font-size: clamp(1.1rem, 0.8rem + 0.8vw, 1.35rem);
  font-weight: 600;
  color: var(--cor-accent);
  padding: 1.5rem;
  background: hsla(24, 70%, 60%, 0.06);
  border-radius: var(--radius-card);
  border: 1px solid hsla(24, 70%, 60%, 0.15);
}

.proof-arrow {
  font-size: 1.3em;
  flex-shrink: 0;
}

.proof-close {
  font-family: var(--font-display);
  font-size: var(--f-h3);
  font-weight: 600;
  line-height: 1.4;
  margin: 2rem auto;
  max-width: 620px;
}

.proof-close strong {
  color: var(--cor-accent);
}

.proof-cta { margin-top: 1.5rem; }

/* --- AUTHORITY --- */
.authority-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  text-align: left;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .authority-grid { grid-template-columns: 280px 1fr; }
}

.authority-photo-placeholder,
.authority-photo-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  max-width: 280px;
  margin: 0 auto;
  background: hsla(24, 30%, 50%, 0.06);
  border: 1px solid hsla(35, 30%, 92%, 0.12);
  border-radius: 180px 180px 2px 2px;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}

.section-light .authority-photo-img {
  border-color: hsla(215, 40%, 20%, 0.12);
}

.authority-bio {
  font-size: var(--f-body);
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.authority-insights {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.authority-insight {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: var(--f-body);
  font-weight: 500;
  color: var(--paper);
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.insight-arrow {
  flex-shrink: 0;
}

.authority-narrative {
  font-size: var(--f-body);
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.authority-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.authority-pillar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--f-body);
  color: var(--branco);
}

.pillar-check {
  color: var(--cor-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.authority-close {
  font-family: var(--font-display);
  font-size: var(--f-h3);
  font-weight: 600;
  color: var(--cor-accent);
  margin-top: 1.5rem;
}

.authority-cta {
  margin-top: 2.5rem;
}

/* --- METHOD --- */
.method-intro {
  font-size: var(--f-body);
  color: var(--muted-fg);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.method-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--f-body);
  color: var(--branco);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-card);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: border-color var(--tr-time) var(--bezier);
}

.method-item:hover {
  border-color: hsla(24, 70%, 60%, 0.2);
}

.method-check {
  color: var(--cor-accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1em;
}

.method-close {
  font-family: var(--font-display);
  font-size: var(--f-h3);
  font-weight: 600;
  line-height: 1.3;
  margin: 2.5rem auto 0;
  max-width: 500px;
}

.method-close strong {
  color: var(--cor-accent);
}

.method-cta { margin-top: 2rem; }

/* --- COMPARISON --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0 2rem;
  text-align: left;
}

@media (min-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr 1fr; }
}

.comparison-col {
  padding: 2rem;
  border-radius: var(--radius-card);
}

.comparison-col h3 {
  font-family: var(--font-display);
  font-size: var(--f-h3);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.comparison-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.comparison-col li {
  font-size: var(--f-small);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.comparison-without {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.x-mark {
  color: var(--cor-danger);
  font-weight: 700;
  font-size: 0.85em;
  flex-shrink: 0;
}

.comparison-with {
  background: hsla(140, 60%, 45%, 0.05);
  border: 1px solid hsla(140, 60%, 45%, 0.15);
  position: relative;
}

.comparison-glow {
  animation: compGlow 3s ease-in-out infinite alternate;
}

@keyframes compGlow {
  0% { box-shadow: 0 0 20px hsla(24, 70%, 60%, 0.05), 0 0 40px hsla(24, 70%, 60%, 0.02); }
  100% { box-shadow: 0 0 30px hsla(24, 70%, 60%, 0.12), 0 0 60px hsla(24, 70%, 60%, 0.06); }
}

.comparison-with h3 { color: var(--cor-accent); }

.check-mark {
  color: var(--cor-accent);
  font-weight: 700;
  font-size: 0.9em;
  flex-shrink: 0;
}

.comparison-close {
  font-family: var(--font-display);
  font-size: var(--f-h3);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2rem;
}

.comparison-paths {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-path {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--f-body);
  text-align: left;
}

.path-frustrated { color: var(--muted-fg); }
.path-successful { color: var(--cor-accent); font-weight: 600; }

.path-arrow { flex-shrink: 0; }

.comparison-cta { margin-top: 2rem; }

/* --- SOCIAL PROOF --- */
.social-proof-grid {
  margin: 3rem auto;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .social-proof-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (min-width: 960px) {
  .social-proof-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.proof-shot {
  margin: 0;
  padding: 0.5rem;
  background: transparent;
  border: var(--rule);
  border-radius: 0;
  position: relative;
  transition: transform var(--tr-time) var(--bezier), border-color var(--tr-time) var(--bezier);
}

.section-light .proof-shot {
  border: var(--rule-dark);
}

.proof-shot::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1rem;
  width: 30px;
  height: 1px;
  background: var(--gold-soft);
}

.section-light .proof-shot::before {
  background: var(--gold);
}

.proof-shot:hover {
  transform: translateY(-3px);
}

.proof-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: zoom-in;
}

/* --- LIGHTBOX --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 18, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1100;
  padding: clamp(1rem, 4vw, 3rem);
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.2s ease;
  cursor: zoom-out;
}

.lightbox-overlay.active .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}

body.lightbox-open {
  overflow: hidden;
}

.screenshot-placeholder {
  padding: 4rem 2rem;
  background: var(--glass-bg);
  border: 1px dashed var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--muted-fg);
  font-size: var(--f-small);
}

.social-proof-cta { margin-top: 2.5rem; }

/* --- VISUALIZATION --- */
.visualization-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 3rem auto;
  max-width: 600px;
}

.visualization-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  position: relative;
}

.visualization-step::before {
  content: "";
  position: absolute;
  left: 2.1rem;
  top: 100%;
  width: 2px;
  height: 100%;
  background: hsla(24, 70%, 60%, 0.15);
  pointer-events: none;
}

.visualization-step:last-child::before {
  display: none;
}

.viz-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cor-accent);
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

.visualization-step p {
  font-size: var(--f-body);
  color: var(--branco);
  line-height: 1.5;
}

.visualization-close {
  font-family: var(--font-display);
  font-size: var(--f-h3);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 1.5rem;
}

.visualization-close strong {
  color: var(--cor-accent);
}

.visualization-cta { margin-top: 2rem; }

/* --- DELIVERABLE --- */
.deliverable-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--f-body);
  color: var(--branco);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-card);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.deliverable-check {
  color: var(--cor-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.deliverable-cta { margin-top: 2.5rem; }

/* --- AUDIENCE --- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0 2rem;
  text-align: left;
}

@media (min-width: 768px) {
  .audience-grid { grid-template-columns: 1fr 1fr; }
}

.audience-col {
  padding: 2rem;
  border-radius: var(--radius-card);
}

.audience-col h3 {
  font-family: var(--font-display);
  font-size: var(--f-h3);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.audience-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.audience-col li {
  font-size: var(--f-small);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.audience-for {
  background: hsla(24, 70%, 60%, 0.05);
  border: 1px solid hsla(24, 70%, 60%, 0.15);
}

.audience-for h3 { color: var(--cor-accent); }

.audience-not {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.audience-close {
  font-family: var(--font-display);
  font-size: var(--f-h3);
  font-weight: 600;
  line-height: 1.3;
  color: var(--cor-accent);
  margin-top: 1rem;
}

.audience-cta { margin-top: 2rem; }

/* --- PRICING --- */
.pricing-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 500px;
  margin: 2rem auto;
  text-align: left;
}

@media (min-width: 768px) {
  .pricing-compare {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    align-items: start;
  }
}

.pricing-pain,
.pricing-gain {
  text-align: left;
  margin: 0;
}

.pricing-pain-label,
.pricing-gain-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--f-body);
  margin-bottom: 0.75rem;
}

.pricing-pain-label { color: var(--muted-fg); }
.pricing-gain-label { color: var(--cor-accent); }

.pricing-pain-list,
.pricing-gain-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-pain-list li,
.pricing-gain-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--f-body);
}

.gain-arrow { flex-shrink: 0; }

.pricing-close {
  font-family: var(--font-display);
  font-size: var(--f-h3);
  font-weight: 600;
  color: var(--branco);
  margin: 2rem 0;
}

.pricing-event-info {
  margin: 2rem auto;
  padding: 1rem 1.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  text-align: center;
}

.pricing-event-info > * + *::before {
  content: "·";
  color: var(--muted-fg);
  margin-right: 1.5rem;
  opacity: 0.7;
}

.event-date {
  font-family: var(--font-display);
  font-size: var(--f-body);
  font-weight: 700;
  color: var(--cor-accent);
}

.event-time,
.event-format,
.event-audience {
  font-size: var(--f-small);
  color: var(--muted-fg);
  margin-top: 0;
}

@media (max-width: 640px) {
  .pricing-event-info {
    flex-direction: column;
    gap: 0.3rem;
    max-width: 400px;
    padding: 1.25rem 1.5rem;
  }
  .pricing-event-info > * + *::before {
    display: none;
  }
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3.5rem auto;
  max-width: 820px;
}

@media (min-width: 720px) {
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: var(--rule);
    border-bottom: var(--rule);
    padding: 0;
  }
  .section-light .pricing-cards {
    border-top: var(--rule-dark);
    border-bottom: var(--rule-dark);
  }
}

.pricing-card {
  position: relative;
  padding: 3rem 2.25rem 2.5rem;
  background: transparent;
  border: var(--rule);
  border-radius: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: background var(--tr-time) var(--bezier);
}

.section-light .pricing-card {
  border: var(--rule-dark);
}

@media (min-width: 720px) {
  .pricing-card {
    border: none;
    border-right: var(--rule);
  }
  .section-light .pricing-card {
    border-right: var(--rule-dark);
  }
  .pricing-card + .pricing-card {
    border-right: none;
  }
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(to right, transparent, hsla(35, 30%, 92%, 0.3), transparent);
}

.section-light .pricing-card::before {
  background: linear-gradient(to right, transparent, hsla(215, 40%, 20%, 0.2), transparent);
}

.pricing-card:hover {
  background: hsla(35, 30%, 92%, 0.03);
}

.section-light .pricing-card:hover {
  background: hsla(215, 40%, 20%, 0.02);
}

.pricing-card-vip {
  background: linear-gradient(180deg, hsla(38, 45%, 68%, 0.05) 0%, transparent 60%);
}

.section-light .pricing-card-vip {
  background: linear-gradient(180deg, hsla(38, 45%, 55%, 0.08) 0%, transparent 60%);
}

.pricing-card-vip:hover {
  background: linear-gradient(180deg, hsla(38, 45%, 68%, 0.09) 0%, hsla(35, 30%, 92%, 0.02) 60%);
}

.section-light .pricing-card-vip:hover {
  background: linear-gradient(180deg, hsla(38, 45%, 55%, 0.12) 0%, transparent 60%);
}

.pricing-card-ribbon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  left: auto;
  transform: none;
  background: transparent;
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--gold-soft);
  border-radius: 0;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-light .pricing-card-ribbon {
  color: var(--gold);
  border-color: var(--gold);
}

.pricing-card-number {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  display: block;
}

.section-light .pricing-card-number {
  color: var(--gold);
}

.pricing-card-label {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1rem + 1.5vw, 2.1rem);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--paper);
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 0 0 0.25rem;
}

.section-light .pricing-card-label {
  color: var(--ink);
}

.pricing-card-includes {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--sage-light);
  margin: 0 0 2rem;
  line-height: 1.4;
  max-width: 28ch;
}

.section-light .pricing-card-includes {
  color: var(--sage-deep);
}

.pricing-card-price {
  margin: 0 0 2.25rem;
  padding-top: 1.5rem;
  border-top: var(--rule);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.section-light .pricing-card-price {
  border-top: var(--rule-dark);
}

.price-original {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--sage-light);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  order: 2;
  margin: 0;
  opacity: 0.65;
}

.section-light .price-original {
  color: var(--ink);
  opacity: 0.4;
}

.price-current {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 1.5rem + 3.5vw, 4rem);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--paper);
  letter-spacing: -0.025em;
  line-height: 0.9;
  order: 1;
  margin: 0;
  display: inline-block;
}

.section-light .price-current {
  color: var(--ink);
}

.pricing-card-vip .price-current {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-card .btn {
  margin-top: auto;
  align-self: stretch;
}

.pricing-anchor {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--sage-light);
  margin: 2rem auto 0;
  max-width: 520px;
  text-align: center;
  line-height: 1.5;
}

.section-light .pricing-anchor {
  color: var(--sage-deep);
}

/* --- GUARANTEE --- */
.guarantee-content {
  max-width: 640px;
  margin: 2.5rem auto;
  padding: 3rem 2.5rem 2.5rem;
  background: transparent;
  border: var(--rule);
  border-radius: 0;
  text-align: center;
  position: relative;
}

.section-light .guarantee-content {
  border: var(--rule-dark);
}

.guarantee-content::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-soft), transparent);
  opacity: 0.4;
}

.section-light .guarantee-content::before {
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.guarantee-badge {
  color: var(--gold-soft);
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: center;
  letter-spacing: 0.02em;
}

.section-light .guarantee-badge {
  color: var(--gold);
}

.guarantee-badge svg {
  display: none;
}

.guarantee-badge::before {
  content: "— Garantia —";
  letter-spacing: 0.04em;
}

.guarantee-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--paper);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.section-light .guarantee-text {
  color: var(--ink);
}

.guarantee-condition {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--sage-light);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.section-light .guarantee-condition {
  color: var(--sage-deep);
}

.guarantee-action {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
  letter-spacing: -0.005em;
}

.section-light .guarantee-action {
  color: var(--gold);
}

.guarantee-details {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--sage-light);
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.section-light .guarantee-details {
  color: var(--sage-deep);
}

.guarantee-close {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--paper);
  line-height: 1.5;
  max-width: 36ch;
  margin: 0 auto;
}

.section-light .guarantee-close {
  color: var(--ink);
}

.guarantee-cta { margin-top: 2.25rem; }

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 2.5rem auto;
  text-align: left;
  border-top: var(--rule);
}

.section-light .faq-list {
  border-top: var(--rule-dark);
}

.faq-item {
  border-bottom: var(--rule);
}

.section-light .faq-item {
  border-bottom: var(--rule-dark);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-variation-settings: "opsz" 18, "SOFT" 30;
  color: var(--paper);
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  letter-spacing: 0.005em;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  transition: color var(--tr-time) var(--bezier);
}

.section-light .faq-question {
  color: var(--ink);
}

.faq-question:hover {
  color: var(--gold-soft);
}

.section-light .faq-question:hover {
  color: var(--gold);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image:
    linear-gradient(var(--gold-soft), var(--gold-soft)),
    linear-gradient(var(--gold-soft), var(--gold-soft));
  background-size: 14px 1px, 1px 14px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: transform 400ms var(--bezier);
}

.section-light .faq-question::after {
  background-image:
    linear-gradient(var(--gold), var(--gold)),
    linear-gradient(var(--gold), var(--gold));
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  background-size: 14px 1px, 0 0;
}

.faq-answer {
  padding: 0 0 1.75rem;
  padding-right: 2rem;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--sage-light);
  line-height: 1.7;
  font-weight: 300;
}

.section-light .faq-answer p {
  color: var(--ink);
  opacity: 0.72;
}

.faq-contact {
  margin-top: 2.5rem;
}

/* --- FOOTER --- */
.site-footer {
  padding: 4rem 0 3rem;
  border-top: var(--rule);
  background: var(--ink);
  color: var(--paper);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold-soft);
  opacity: 0.5;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--paper);
  letter-spacing: -0.01em;
  opacity: 0.92;
}

.footer-ig {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-top: 1px solid hsla(38, 45%, 68%, 0.25);
  border-bottom: 1px solid hsla(38, 45%, 68%, 0.25);
  transition: color var(--tr-time) var(--bezier);
}

.footer-ig:hover {
  color: var(--gold);
}

.footer-copy {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--sage-light);
  opacity: 0.55;
  margin-top: 0.5rem;
}

/* --- POPUP --- */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: hsla(215, 60%, 5%, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-body);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--bezier);
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-card {
  background: var(--ink);
  border: 1px solid hsla(38, 45%, 68%, 0.2);
  border-radius: 0;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 400ms var(--bezier);
}

.popup-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-soft), transparent);
  opacity: 0.4;
}

.popup-card::after {
  content: "Inscrição";
  position: absolute;
  top: -0.55rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-soft);
  background: var(--ink);
  padding: 0 0.8rem;
}

.popup-overlay.active .popup-card {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  background: none;
  color: var(--sage-light);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  transition: color var(--tr-time) var(--bezier);
}

.popup-close:hover { color: var(--paper); }

.popup-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1rem + 1.2vw, 1.85rem);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--paper);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0.5rem 0 0.6rem;
  padding-right: 2rem;
}

.popup-sub {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1rem;
  color: var(--sage-light);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-field {
  position: relative;
}

.form-field input {
  width: 100%;
  padding: 0.95rem 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid hsla(35, 30%, 92%, 0.22);
  background: transparent;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--tr-time) var(--bezier);
}

.form-field input::placeholder {
  color: var(--sage-light);
  opacity: 0.55;
  font-family: var(--font-italic);
  font-style: italic;
}

.form-field input:focus {
  border-color: var(--gold-soft);
  box-shadow: none;
}

.popup-form .btn {
  margin-top: 0.5rem;
}

.popup-micro {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--sage-light);
  text-align: center;
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* Loading state */
.btn.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

/* --- REVEAL ANIMATIONS --- */
/* Content is visible by default. JS adds .js-reveal-ready to <html>,
   which enables the hidden state. Then IntersectionObserver adds .visible. */
.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s var(--bezier),
    transform 0.6s var(--bezier);
}

.js-reveal-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal-ready .reveal[style*="--i"] {
  transition-delay: calc(var(--i) * 0.1s);
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js-reveal-ready .reveal { opacity: 1; transform: none; }
  .hero-word { opacity: 1; transform: none; }
}

/* --- TABLET / NARROW DESKTOP — collapse hero split --- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 560px;
  }
  .hero-content { max-width: 100%; text-align: center; margin: 0 auto; }
  .hero-overtitle { justify-content: center; }
  .hero-title { align-items: center; }
  .hero-sub, .hero-micro { margin-left: auto; margin-right: auto; }
  .hero-portrait { order: -1; width: min(100%, 340px); }
  .hero-portrait-rule { display: none; }
  .hero-portrait-stamp { width: 88px; height: 88px; bottom: -1.25rem; left: -1.25rem; }
}

/* --- MOBILE REFINEMENTS --- */
@media (max-width: 767px) {
  .hero { min-height: auto; padding: 5rem 1.5rem 2.5rem; }
  .hero-inner { gap: 2.25rem; }
  .hero-content { max-width: 100%; padding: 0; }
  .hero-title { font-size: 1.6rem; line-height: 1.25; margin-bottom: 1rem; }
  .hero-sub { font-size: 0.88rem; margin-bottom: 0.75rem; }
  .hero-micro { font-size: 0.8rem; margin-bottom: 1.25rem; }
  .hero-cta-micro { font-size: 0.72rem; }
  .hero-portrait { width: min(100%, 280px); }
  .hero-portrait-frame { border-radius: 160px 160px 14px 14px; }
  .hero-portrait-stamp { width: 72px; height: 72px; bottom: -1rem; left: -1rem; }
  .hero-portrait-index { font-size: 0.58rem; padding: 0.3rem 0.55rem; bottom: 0.9rem; right: 0.9rem; }
  .btn-lg { font-size: 0.85rem; padding: 0.8rem 1.25rem; white-space: normal; line-height: 1.3; }
  .section { padding: clamp(2.5rem, 2rem + 3vw, 5rem) 0; }
  .section-title { font-size: 1.35rem; }
  .section-sub { font-size: 0.88rem; }
  .comparison-col { padding: 1.25rem; }
  .audience-col { padding: 1.25rem; }
  .pricing-card { padding: 1.5rem 1.25rem; }
  .popup-card { padding: 1.5rem 1.25rem; }
  .guarantee-content { padding: 1.5rem 1.25rem; }
  .header-inner { padding: 0.8rem 1rem; }
  .header-logo-text { font-size: 0.95rem; }
  .header-ticker { font-size: 0.65rem; max-width: 50%; text-align: right; }
  .proof-reality { font-size: 0.95rem; padding: 1rem; }
  .proof-beliefs { margin: 1.5rem auto; }
  .proof-belief-item { font-size: 0.9rem; padding: 0.6rem 0.8rem; }
  .pricing-cards { gap: 1rem; }
  .authority-grid { gap: 2rem; }
  .authority-photo-placeholder,
  .authority-photo-img { max-width: 200px; }
  .method-item { padding: 0.75rem 1rem; font-size: 0.9rem; }
  .visualization-step { padding: 0.75rem 1rem; }
  .deliverable-item { padding: 0.6rem 1rem; font-size: 0.9rem; }
  .pricing-event-info { padding: 1.25rem; }
  .faq-question { font-size: 0.9rem; padding: 1rem 0; }
}

/* --- EDITORIAL MARKS — replace emoji with typographic glyphs --- */
.belief-x,
.x-mark,
.check-mark,
.proof-arrow,
.path-arrow,
.pillar-check,
.method-check,
.gain-arrow,
.deliverable-check,
.insight-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0;
  line-height: 0;
  flex-shrink: 0;
}

.belief-x::before,
.x-mark::before,
.check-mark::before,
.proof-arrow::before,
.path-arrow::before,
.pillar-check::before,
.method-check::before,
.gain-arrow::before,
.deliverable-check::before,
.insight-arrow::before {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  font-style: normal;
  font-weight: 500;
}

.belief-x::before,
.x-mark::before {
  content: "×";
  color: var(--madder);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.3rem;
}

.check-mark::before,
.pillar-check::before,
.method-check::before,
.deliverable-check::before {
  content: "✓";
  color: var(--sage);
  font-size: 1rem;
  font-weight: 600;
}

.section-light .check-mark::before,
.section-light .pillar-check::before,
.section-light .method-check::before,
.section-light .deliverable-check::before {
  color: var(--sage-deep);
}

.proof-arrow::before,
.path-arrow::before,
.gain-arrow::before {
  content: "→";
  color: var(--gold-soft);
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
}

.section-light .proof-arrow::before,
.section-light .path-arrow::before,
.section-light .gain-arrow::before {
  color: var(--gold);
}

.insight-arrow::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--gold-soft);
}

.section-light .insight-arrow::before {
  background: var(--gold);
}

/* Scroll-reveal fallback: ensure delay cap so late items still appear */
.js-reveal-ready .reveal[style*="--i"] {
  transition-delay: calc(min(var(--i), 6) * 0.08s);
}

/* ============================================
   AULA LANDING — Free webinar funnel
   ============================================ */

.page-aula {
  background: var(--ink);
}

/* HERO */
.aula-hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(7rem, 8rem + 3vw, 11rem) var(--pad-body) clamp(4rem, 4rem + 2vw, 6rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.aula-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, hsla(150, 60%, 35%, 0.18), transparent 55%),
    radial-gradient(ellipse at 85% 80%, hsla(40, 50%, 50%, 0.10), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.aula-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 4vw, 5rem);
  align-items: center;
}

.aula-hero-content {
  max-width: 620px;
}

.aula-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: var(--f-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding: 0.5rem 0.9rem;
  border: 1px solid hsla(35, 30%, 70%, 0.25);
  border-radius: 999px;
  margin-bottom: 1.75rem;
  background: hsla(215, 40%, 12%, 0.4);
}

.aula-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-light);
  box-shadow: 0 0 0 4px hsla(150, 40%, 55%, 0.2);
  animation: aulaPulse 2.4s ease-in-out infinite;
}

@keyframes aulaPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.aula-badge-center {
  display: inline-flex;
  margin: 1.75rem auto 0;
}

.aula-overtitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.4rem;
}

.aula-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.2rem + 4.2vw, 4.6rem);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.aula-hero-title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--sage-light);
  letter-spacing: -0.01em;
}

.aula-hero-sub {
  font-size: clamp(1.05rem, 0.9rem + 0.4vw, 1.3rem);
  color: var(--paper);
  opacity: 0.92;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.aula-hero-desc {
  font-size: var(--f-body);
  color: var(--muted-fg);
  line-height: 1.65;
  max-width: 540px;
  font-weight: 300;
}

/* FORM CARD */
.aula-form-card {
  background: hsla(35, 30%, 92%, 0.97);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  border: 1px solid hsla(35, 25%, 70%, 0.4);
  box-shadow:
    0 30px 80px -20px hsla(215, 60%, 5%, 0.6),
    0 8px 24px -8px hsla(215, 60%, 5%, 0.3);
  position: relative;
}

.aula-form-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
  opacity: 0.6;
}

.aula-form-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed hsla(215, 30%, 25%, 0.18);
}

.aula-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1rem + 1vw, 1.85rem);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.aula-form-sub {
  font-size: 0.92rem;
  color: var(--ink-mid);
  font-weight: 400;
}

.aula-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.aula-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.aula-form .form-field label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.aula-form input,
.aula-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: hsla(0, 0%, 100%, 0.7);
  border: 1px solid hsla(215, 30%, 25%, 0.18);
  border-radius: var(--radius-input);
  outline: none;
  transition: border-color 200ms var(--bezier), background 200ms var(--bezier);
}

.aula-form input:focus,
.aula-form select:focus {
  border-color: var(--sage);
  background: #fff;
  box-shadow: 0 0 0 3px hsla(150, 40%, 45%, 0.12);
}

.aula-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%2313284A' stroke-width='1.5' stroke-linecap='round' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.aula-form button[type="submit"] {
  margin-top: 0.5rem;
  background: var(--sage-deep);
  color: var(--paper);
  border-color: var(--sage-deep);
}

.aula-form button[type="submit"]:hover {
  background: var(--sage);
  border-color: var(--sage);
}

.aula-form button[type="submit"].is-loading {
  background: var(--sage);
  opacity: 0.85;
}

.aula-form-micro {
  font-size: 0.78rem;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-top: 0.5rem;
  text-align: center;
}

.aula-form.is-success {
  opacity: 0.85;
  pointer-events: none;
}

/* SECTION SHARED */
.aula-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* PROBLEM */
.aula-problem .aula-problem-intro,
.aula-problem .aula-problem-consequence {
  font-size: var(--f-body);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.aula-problem .aula-problem-consequence {
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.aula-pain-list {
  max-width: 720px;
  margin: 0 auto 2rem;
  display: grid;
  gap: 0.75rem;
}

.aula-pain-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: hsla(215, 30%, 20%, 0.04);
  border-left: 2px solid var(--madder);
  border-radius: var(--radius-card);
  font-size: 1rem;
  line-height: 1.55;
}

.section-light .aula-pain-item {
  background: hsla(215, 30%, 20%, 0.04);
}

.pain-mark {
  color: var(--madder);
  font-weight: 600;
  flex-shrink: 0;
}

.aula-problem-shift {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.9rem + 0.7vw, 1.45rem);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-soft);
  padding: 1.5rem 0;
  border-top: 1px dashed hsla(215, 30%, 25%, 0.2);
  border-bottom: 1px dashed hsla(215, 30%, 25%, 0.2);
}

/* LESSON */
.aula-lesson .aula-lesson-intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted-fg);
  margin-bottom: 2rem;
}

.aula-lesson-list {
  max-width: 760px;
  margin: 0 auto 2rem;
  display: grid;
  gap: 0.85rem;
}

.aula-lesson-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: hsla(150, 30%, 45%, 0.06);
  border: 1px solid hsla(150, 30%, 55%, 0.18);
  border-left: 3px solid var(--sage);
  border-radius: var(--radius-card);
  font-size: 1.02rem;
  line-height: 1.55;
}

.lesson-check {
  color: var(--sage-light);
  font-weight: 600;
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.aula-lesson-close {
  text-align: center;
  font-size: 1rem;
  color: var(--muted-fg);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
  font-style: italic;
  font-family: var(--font-italic);
}

/* AUTHORITY */
.aula-authority-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: start;
  margin-top: 2rem;
}

.aula-authority-photo {
  position: relative;
}

.aula-authority-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  filter: grayscale(0.05) contrast(1.02);
}

.aula-authority-caption {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-mid);
  text-align: center;
  margin-top: 0.85rem;
  letter-spacing: 0.02em;
}

.aula-authority-text > * + * {
  margin-top: 1rem;
}

.aula-authority-bio {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.95rem + 0.7vw, 1.4rem);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.aula-authority-experience,
.aula-authority-mission {
  font-size: var(--f-body);
  line-height: 1.7;
}

.aula-authority-pillars-intro {
  font-weight: 500;
  margin-top: 1.5rem !important;
}

.aula-authority-pillars {
  display: grid;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

.aula-authority-pillar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  padding: 0.55rem 0;
}

.aula-authority-pillar .pillar-check {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  color: var(--paper);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.aula-authority-pillar .pillar-check::before {
  content: none;
}

/* CLOSING */
.aula-closing .container {
  text-align: center;
}

.aula-closing-intro {
  font-size: 1.05rem;
  color: var(--muted-fg);
  margin: 0 auto 1.5rem;
}

.aula-closing-list {
  display: grid;
  gap: 0.55rem;
  max-width: 680px;
  margin: 0 auto 1.75rem;
  text-align: left;
}

.aula-closing-item {
  padding: 0.85rem 1.1rem;
  background: hsla(35, 30%, 92%, 0.04);
  border-left: 2px solid var(--gold-soft);
  border-radius: var(--radius-card);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--paper);
}

.aula-closing-addressed {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.1rem, 0.9rem + 0.5vw, 1.35rem);
  color: var(--sage-light);
  margin: 0 auto 1.75rem;
  max-width: 680px;
}

.aula-closing-opp {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.95rem + 0.7vw, 1.4rem);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 1.45;
  letter-spacing: -0.01em;
  max-width: 740px;
  margin: 0 auto;
  color: var(--paper);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .aula-hero {
    padding-top: 6rem;
  }
  .aula-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .aula-hero-content {
    max-width: 100%;
  }
  .aula-authority-grid {
    grid-template-columns: 1fr;
  }
  .aula-authority-photo {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .aula-form-card {
    padding: 1.4rem;
  }
  .aula-pain-item,
  .aula-lesson-item,
  .aula-closing-item {
    font-size: 0.95rem;
  }
}
