/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 104px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform 0.25s ease;
  animation: wpp-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 34px; height: 34px; }
@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.55); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================
   Mentalma T7 — Landing Page de Ingressos
   Mix Theme: Dark Hero → Light Body → Dark CTA
   Design ref: ClearPath + Mentalma Brand
   ============================================ */

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Variable.woff2') format('woff2-variations'),
       url('fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Dark palette */
  --dark-deep: #0F0618;
  --dark-mid: #1A0B2E;
  --dark-soft: #2D1648;
  --dark-card: rgba(255, 255, 255, 0.04);
  --dark-border: rgba(255, 255, 255, 0.08);

  /* Light palette */
  --light-bg: #F7F4EE;
  --light-surface: #FEFDFB;
  --light-card: #FFFFFF;
  --light-border: rgba(123, 45, 142, 0.1);
  --light-shadow: rgba(26, 5, 37, 0.06);

  /* Brand colors */
  --mentalma-purple: #2D1648;
  --mentalma-purple-light: #3D2058;
  --mentalma-gold: #E8B80E;
  --mentalma-gold-dark: #C9A00C;

  /* Text on dark */
  --text-on-dark: #F5F0E8;
  --text-on-dark-muted: rgba(245, 240, 232, 0.55);

  /* Text on light */
  --text-on-light: #1A0525;
  --text-on-light-secondary: #5A4A64;
  --text-on-light-muted: #8A7A96;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-gap: 120px;
  --section-gap-mobile: 72px;
  --container-max: 1100px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-on-dark);
  line-height: 1.6;
  font-size: 16px;
  background:
    radial-gradient(ellipse at top, rgba(123, 45, 142, 0.28), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(232, 184, 14, 0.08), transparent 55%),
    var(--dark-deep);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Shared: Section labels & titles ---------- */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 580px;
}

/* ---------- Shared: CTA Buttons (Pill style) ---------- */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.cta-pill::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cta-pill:hover {
  transform: translateY(-2px);
}

.cta-pill:active {
  transform: translateY(0);
}

/* Gold on dark */
.cta-pill--gold {
  background: var(--mentalma-gold);
  color: var(--dark-deep);
}

.cta-pill--gold::after {
  background: rgba(15, 6, 24, 0.25);
}

.cta-pill--gold:hover {
  background: var(--mentalma-gold-dark);
  box-shadow: 0 8px 32px rgba(232, 184, 14, 0.25);
}

/* Purple on light */
.cta-pill--purple {
  background: var(--mentalma-purple);
  color: white;
}

.cta-pill--purple::after {
  background: var(--mentalma-gold);
  box-shadow: 0 0 6px var(--mentalma-gold),
              0 0 12px rgba(232, 184, 14, 0.85),
              0 0 22px rgba(232, 184, 14, 0.55);
  animation: dot-pulse 1.6s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% {
    box-shadow: 0 0 6px var(--mentalma-gold),
                0 0 12px rgba(232, 184, 14, 0.85),
                0 0 22px rgba(232, 184, 14, 0.55);
  }
  50% {
    box-shadow: 0 0 8px var(--mentalma-gold),
                0 0 18px rgba(232, 184, 14, 1),
                0 0 32px rgba(232, 184, 14, 0.75);
  }
}

.cta-pill--purple:hover {
  background: var(--mentalma-purple-light);
  box-shadow: none;
  transform: scale(1.04);
}

/* Outline on light */
.cta-pill--outline {
  background: transparent;
  color: var(--mentalma-purple);
  border: 1.5px solid var(--mentalma-purple);
}

.cta-pill--outline::after {
  background: var(--mentalma-purple);
}

.cta-pill--outline:hover {
  background: var(--mentalma-purple);
  color: white;
}

/* ---------- Organic Curves (SVG decoration) ---------- */
.section-curves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-curves svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ---------- Decorative big number ---------- */
.deco-number {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}


/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, border-color 0.3s ease;
}

.navbar.navbar--scrolled {
  background: rgba(15, 6, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-logo {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-on-dark);
}

.navbar-logo span {
  color: var(--mentalma-gold);
}

.navbar-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark);
  font-weight: 600;
  transition: all 0.25s;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar-cta:hover {
  background: var(--mentalma-gold);
  color: var(--dark-deep);
  border-color: var(--mentalma-gold);
}


/* ========================================
   SECTION 1: HERO (DARK)
   ======================================== */
.section-hero {
  position: relative;
  min-height: auto;
  max-height: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 18px 24px 120px;
  background: transparent;
  color: var(--text-on-dark);
  overflow: hidden;
}

.section-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-hero .hero-curves {
  z-index: 1;
}

.section-hero .video-wrapper {
  position: relative;
  z-index: 3;
}

.section-hero .video-placeholder {
  background:
    radial-gradient(ellipse at center, rgba(232, 184, 14, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, #1a0b2e 0%, #0f0618 60%, #0a0411 100%);
  border: 1px solid rgba(232, 184, 14, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}

.section-hero .video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(232, 184, 14, 0.06), transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(123, 45, 142, 0.1), transparent 50%);
  pointer-events: none;
}

.section-hero .video-play-icon {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 16px rgba(232, 184, 14, 0.4));
  transition: transform 0.35s ease;
}

.section-hero .video-placeholder:hover .video-play-icon {
  transform: scale(1.08);
}

.section-hero .video-placeholder-text {
  position: relative;
  z-index: 2;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-headline,
.hero-subheadline {
  margin-left: auto;
  margin-right: auto;
}

.video-wrapper {
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-curves {
  width: 100%;
}

.hero-curves svg {
  left: 0;
  width: 200%;
  height: 100%;
}

.hero-curves path {
  stroke: var(--mentalma-gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(232, 184, 14, 0.85))
          drop-shadow(0 0 12px rgba(232, 184, 14, 0.55))
          drop-shadow(0 0 24px rgba(232, 184, 14, 0.35));
}

.hero-curves .wave-1 {
  opacity: 0.8;
  animation: wave-flow-left 14s linear infinite, hero-wave-pulse 4s ease-in-out infinite;
}

.hero-curves .wave-2 {
  opacity: 0.6;
  animation: wave-flow-right 20s linear infinite, hero-wave-pulse 5.5s ease-in-out infinite;
}

.hero-curves .wave-3 {
  opacity: 0.5;
  animation: wave-flow-left 26s linear infinite, hero-wave-pulse 7s ease-in-out infinite;
}

@keyframes wave-flow-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1200px); }
}

@keyframes wave-flow-right {
  0% { transform: translateX(-1200px); }
  100% { transform: translateX(0); }
}

@keyframes hero-wave-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(232, 184, 14, 0.85))
            drop-shadow(0 0 12px rgba(232, 184, 14, 0.55))
            drop-shadow(0 0 24px rgba(232, 184, 14, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(232, 184, 14, 1))
            drop-shadow(0 0 18px rgba(232, 184, 14, 0.75))
            drop-shadow(0 0 36px rgba(232, 184, 14, 0.5));
  }
}

.hero-deco {
  display: none;
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28vw;
  color: rgba(232, 184, 14, 0.04);
}

.hero-eyebrow {
  color: var(--mentalma-gold);
}

.hero-highlight {
  display: inline-block;
  font-style: italic;
  font-size: 72px;
  color: var(--mentalma-gold);
  animation: hero-float 5s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-logo {
  width: 150px;
  height: 88px;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

.cta-final-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.cta-final-logo img { width: 180px; height: auto; }

/* Refined gold divider between sections */
.section-aulas,
.section-posicionamento,
.section-oportunidade,
.section-lotes,
.section-faq,
.section-cta-final {
  position: relative;
}
.section-aulas::before,
.section-posicionamento::before,
.section-oportunidade::before,
.section-lotes::before,
.section-faq::before,
.section-cta-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(70%, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,184,14,0) 5%, rgba(232,184,14,0.65) 50%, rgba(232,184,14,0) 95%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-eyebrow-row .hero-dates {
  margin: 0;
  padding: 4px 14px;
  border: 1px solid #ffffff;
  background: #ffffff;
  border-radius: 40px;
  color: var(--mentalma-purple);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-headline {
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.00;
  color: var(--text-on-dark);
  margin-bottom: 14px;
  max-width: 800px;
}

.hero-highlight {
  font-size: clamp(46px, 5.4vw, 72px) !important;
}

.hero-subheadline {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-on-dark-muted);
  max-width: 540px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-dates {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--mentalma-purple);
  background: #ffffff;
  padding: 10px 28px;
  border: 1.5px solid #ffffff;
  border-radius: 40px;
  margin: 28px 0 36px;
  letter-spacing: 0.04em;
}

/* Video placeholder */
.video-wrapper {
  max-width: min(720px, 62vh * 16/9);
  width: 100%;
  margin: 20px 0 20px;
}

.video-wrapper .video-placeholder {
  max-height: 42vh;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.video-placeholder:hover {
  border-color: rgba(232, 184, 14, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.video-play-icon svg {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}

.video-placeholder-text {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
}

.hero-cta {
  margin-top: 8px;
}

/* Hero to Aulas transition gradient */
.transition-dark-to-dark {
  height: 0;
  background: transparent;
}


/* ========================================
   SECTION 2: AULAS (DARK → fading)
   ======================================== */
.section-aulas {
  position: relative;
  padding: 90px 0 110px;
  background: transparent;
  color: var(--text-on-dark);
  overflow: hidden;
}

.section-aulas .section-eyebrow {
  color: var(--mentalma-gold);
}

.section-aulas .section-title {
  color: var(--text-on-dark);
  text-align: center;
  font-size: 46px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.section-aulas .section-subtitle {
  color: var(--text-on-dark-muted);
  text-align: center;
  margin: 0 auto 28px;
}

.aulas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 24px;
  align-items: stretch;
}

.aulas-grid > .aula-card {
  height: 100%;
}

.aula-card {
  background: var(--dark-card);
  border-radius: 16px;
  padding: 22px 22px 24px;
  border: 1px solid var(--dark-border);
  position: relative;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.aula-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; transition: transform 0.45s ease; }
.aula-card:hover .aula-thumb img { transform: scale(1.06); }
.aula-card:hover .aula-thumb { box-shadow: 0 0 0 1px rgba(232,184,14,0.6), 0 14px 36px rgba(232,184,14,0.25), inset 0 0 0 1px rgba(255,255,255,0.12); }
.aula-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #E8B80E 0%, #8a6a06 25%, #f5d76e 50%, #8a6a06 75%, #E8B80E 100%);
  padding: 3px;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(232,184,14,0.35), 0 8px 24px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aula-card {
  box-sizing: border-box;
  width: 100%;
}

.aula-card:hover {
  border-color: var(--mentalma-gold);
  background: rgba(232, 184, 14, 0.04);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.aula-card--destaque {
  /* destaque removido: todos cards iguais */
}

.aula-card {
  display: flex;
  flex-direction: column;
}

.aula-card .aula-badge {
  margin-top: 24px;
  margin-bottom: 0;
  align-self: flex-start;
}

.aula-card .aula-descricao {
  margin-bottom: auto;
}

.aula-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.aula-badge--unlock {
  position: relative;
  color: var(--mentalma-gold);
  background: linear-gradient(135deg, rgba(232,184,14,0.12), rgba(232,184,14,0.04));
  border: 1px solid rgba(232,184,14,0.45);
  box-shadow: 0 0 0 1px rgba(232,184,14,0.15) inset, 0 8px 24px rgba(232,184,14,0.12);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.aula-badge--unlock::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,236,170,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
}
.aula-card:hover .aula-badge--unlock {
  border-color: var(--mentalma-gold);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(232,184,14,0.35) inset, 0 14px 34px rgba(232,184,14,0.3);
}
.aula-card:hover .aula-badge--unlock::before { left: 130%; }

.aula-badge .lock-icon {
  width: 16px;
  height: 16px;
  color: var(--mentalma-gold);
  flex-shrink: 0;
  overflow: visible;
}
.aula-badge .lock-shackle {
  transform-origin: 8px 11px;
  transition: transform 0.5s cubic-bezier(.6,-0.2,.3,1.4);
}
.aula-card:hover .aula-badge .lock-shackle {
  transform: rotate(-28deg) translate(-1px, -1px);
}
.aula-badge .lock-icon { animation: lock-pulse 2.6s ease-in-out infinite; }
@keyframes lock-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(232,184,14,0)); }
  50% { filter: drop-shadow(0 0 6px rgba(232,184,14,0.6)); }
}

.aula-deco-number {
  display: none;
  color: rgba(232, 184, 14, 0.08);
  font-size: 5rem;
  margin-bottom: 8px;
}

.aula-numero {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-on-dark-muted);
  margin-bottom: 6px;
}

.aula-data {
  font-size: 0.85rem;
  color: var(--mentalma-gold);
  font-weight: 500;
  margin-bottom: 14px;
}

.aula-titulo {
  font-size: 1.85rem;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}

.aula-titulo .destaque {
  font-style: italic;
  color: var(--mentalma-gold);
}

.aula-descricao {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* Aulas to purple transition */
.transition-dark-to-light {
  height: 0;
  background: transparent;
}


/* ========================================
   SECTION 3: POSICIONAMENTO (LIGHT)
   ======================================== */
.section-posicionamento {
  padding: 90px 0;
  background: transparent;
  color: var(--text-on-dark);
}

.section-posicionamento .section-eyebrow {
  color: var(--mentalma-gold);
}

.section-posicionamento .section-title {
  color: var(--text-on-dark);
  font-size: 60px;
  line-height: 1.05;
  text-align: center;
  margin-bottom: 16px;
}

.section-posicionamento .section-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 18px;
}

.posicionamento-content {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.posicionamento-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
  margin-top: 0;
}

.posicionamento-foto img { width: 100%; height: 100%; object-fit: contain; border-radius: 20px; transition: transform 0.7s cubic-bezier(.2,.8,.2,1), filter 0.7s ease; animation: posic-float 6s ease-in-out infinite; }
.posicionamento-foto:hover img { transform: scale(1.04) translateY(-6px); filter: drop-shadow(0 20px 40px rgba(232,184,14,0.25)); }
@keyframes posic-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.posicionamento-foto {
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 460px;
}

.section-posicionamento .section-title {
  text-align: left;
}

.section-posicionamento .section-eyebrow {
  text-align: left;
}

.posicionamento-grid .posicionamento-conteudo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.posicionamento-grid .posicionamento-texto {
  margin-top: 0;
}

.posicionamento-texto {
  position: relative;
  padding: 0;
  margin-top: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.posicionamento-texto p {
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--text-on-dark-muted);
  margin-bottom: 18px;
}

.posicionamento-texto p:last-child {
  margin-bottom: 0;
}

.posicionamento-texto p:first-child {
  color: var(--text-on-dark);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 20px;
}

/* Typographic highlights (on purple) */
.highlight-serif {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15em;
  color: var(--text-on-dark);
}

.highlight-bold {
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}

.highlight-accent {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--mentalma-gold);
}


/* ========================================
   SECTION 3B: OPORTUNIDADE (LIGHT SURFACE)
   ======================================== */
.section-oportunidade {
  padding: 90px 0 140px;
  background: transparent;
  color: var(--text-on-dark);
}

.section-oportunidade .section-eyebrow {
  color: var(--mentalma-gold);
}

.section-oportunidade .section-title {
  color: var(--text-on-dark);
  font-size: 60px;
  line-height: 1.05;
  text-align: center;
  margin-bottom: 16px;
}

.section-oportunidade .section-eyebrow {
  display: block;
  margin-bottom: 18px;
}

.section-oportunidade .section-title {
  text-align: left;
}

.oportunidade-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.oportunidade-card {
  position: relative;
  padding: 38px 34px 34px;
  background:
    radial-gradient(circle at top right, rgba(232,184,14,0.1), transparent 55%),
    linear-gradient(160deg, rgba(123, 45, 142, 0.18) 0%, rgba(15, 6, 24, 0.7) 60%);
  border: 1px solid rgba(232, 184, 14, 0.22);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.oportunidade-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(232,184,14,0.55), rgba(232,184,14,0) 45%, rgba(232,184,14,0) 70%, rgba(232,184,14,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.8;
}
.oportunidade-card::after {
  content: "";
  position: absolute;
  top: -60%; left: -20%;
  width: 140%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(232,184,14,0.12), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.oportunidade-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 184, 14, 0.55);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232,184,14,0.25), 0 10px 40px rgba(232,184,14,0.15);
}
.oportunidade-card:hover::after { opacity: 1; }
.oportunidade-card:hover .oportunidade-card-thumb img { transform: scale(1.04); }
.oportunidade-card-thumb img { transition: transform 0.6s ease; }

.oportunidade-card .oportunidade-card-thumb {
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 0 1px rgba(232,184,14,0.18);
}

.oportunidade-card--header {
  background: transparent !important;
  border: none !important;
  padding: 24px 16px;
  box-shadow: none !important;
  backdrop-filter: none;
}
.oportunidade-card--header::before,
.oportunidade-card--header::after { display: none !important; }

.oportunidade-card--header:hover {
  transform: none;
  box-shadow: none;
}

.oportunidade-card--header .section-title {
  font-size: 44px;
  margin-bottom: 20px;
}

.oportunidade-intro,
.oportunidade-intro * {
  font-size: 17.6px !important;
  line-height: 1.45 !important;
  color: var(--text-on-dark) !important;
}
.oportunidade-intro { font-weight: 400; }
.oportunidade-intro .highlight-bold { font-weight: 700 !important; }
.oportunidade-intro .highlight-accent { color: var(--text-on-dark) !important; font-family: inherit !important; font-weight: 400 !important; }
.oportunidade-intro .highlight-bold { color: var(--text-on-dark) !important; font-weight: 700 !important; }

.oportunidade-card-thumb { position: relative; }
.card-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mentalma-gold);
  background: rgba(15, 6, 24, 0.72);
  border: 1px solid rgba(232,184,14,0.5);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  z-index: 2;
  transition: transform 0.45s cubic-bezier(.4,1.4,.6,1), box-shadow 0.45s ease, background 0.45s ease;
}
.card-icon svg { width: 20px; height: 20px; transition: transform 0.55s cubic-bezier(.4,1.4,.6,1); }
.oportunidade-card:hover .card-icon {
  transform: translateY(-3px) scale(1.08);
  background: rgba(232,184,14,0.95);
  color: #0F0618;
  box-shadow: 0 10px 26px rgba(232,184,14,0.45), inset 0 0 0 1px rgba(255,255,255,0.2);
}
.oportunidade-card:hover .card-icon svg { transform: rotate(-8deg) scale(1.1); }
.oportunidade-card:hover .card-icon--gift svg { transform: rotate(-12deg) scale(1.12); }
.oportunidade-card:hover .card-icon--star svg { animation: star-spin 0.8s ease; }
@keyframes star-spin { 0% { transform: rotate(0) scale(1); } 50% { transform: rotate(180deg) scale(1.25); } 100% { transform: rotate(360deg) scale(1.1); } }

.oportunidade-header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.oportunidade-header .section-title { margin: 10px 0 18px; }
.oportunidade-header .oportunidade-intro { margin: 0 auto; }
.oportunidade-card-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; }
.oportunidade-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.oportunidade-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.95rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.3px;
  margin: 4px 0 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f5e9c0 55%, var(--mentalma-gold) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}
.oportunidade-card-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--mentalma-gold), transparent);
  border-radius: 2px;
  transition: width 0.45s ease;
}
.oportunidade-card:hover .oportunidade-card-title::after { width: 72px; }

.oportunidade-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--text-on-dark-muted);
  margin: 0;
}

.oportunidade-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px auto 40px;
  max-width: 1080px;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  flex: 1;
  overflow: hidden;
}

.carousel-thumb {
  aspect-ratio: 16 / 9;
  border: 1px dashed rgba(232, 184, 14, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.carousel-thumb:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--mentalma-gold);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(232, 184, 14, 0.4);
  background: rgba(255, 255, 255, 0.04);
  color: var(--mentalma-gold);
  font-size: 1.5rem;
  font-family: var(--font-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: rgba(232, 184, 14, 0.15);
  transform: scale(1.08);
}


/* ========================================
   SECTION 4: LOTES E PRECOS (LIGHT)
   ======================================== */
.section-lotes {
  padding: 120px 0 140px;
  background: var(--light-bg);
  color: var(--text-on-light);
}

.section-lotes .section-eyebrow {
  color: var(--mentalma-purple);
  text-align: center;
  display: block;
}

.section-lotes .section-title {
  color: var(--text-on-light);
  text-align: center;
  line-height: 0.9;
  margin-bottom: 22px;
  font-size: 38px;
}

.section-lotes .section-title .hero-highlight {
  font-size: 60px;
  margin-top: -4px;
}

/* Countdown */
.countdown-wrapper {
  text-align: center;
  margin-bottom: 56px;
}

.countdown-label {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--mentalma-purple);
  margin-bottom: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  background: rgba(45, 22, 72, 0.08);
  border: 1px solid rgba(45, 22, 72, 0.15);
  border-radius: 30px;
}

.countdown-principal {
  display: inline-flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 16px;
  padding: 22px 28px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f0 100%);
  border: 1px solid rgba(45, 22, 72, 0.1);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(45, 22, 72, 0.08),
              0 4px 12px rgba(45, 22, 72, 0.04);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 14px 6px 10px;
  background: var(--mentalma-purple);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.countdown-unit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
  pointer-events: none;
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.countdown-legend {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 8px;
  font-weight: 500;
}

.countdown-sep {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--mentalma-purple);
  opacity: 0.35;
  padding: 0 2px;
}

.countdown-evento {
  font-size: 0.95rem;
  color: var(--mentalma-purple);
  font-weight: 500;
}

/* Lote Cards */
.lotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 28px;
  align-items: stretch;
  position: relative;
}

.lotes-grid > .lote-card {
  height: 100%;
}

.lotes-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--mentalma-gold) 0,
    var(--mentalma-gold) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  transform: translateY(-1px);
}

.lote-card {
  z-index: 1;
}

.lote-card {
  background: var(--light-card);
  border-radius: 22px;
  padding: 44px 32px 36px;
  text-align: center;
  border: 1px solid var(--light-border);
  box-shadow: 0 8px 30px rgba(26, 5, 37, 0.05);
  position: relative;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.lote-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(45, 22, 72, 0.12);
}

/* ---------- Active Lote ---------- */
.lote-card--ativo {
  border: 2px solid var(--mentalma-gold);
  background: linear-gradient(180deg, #ffffff 0%, #faf7f0 100%);
  box-shadow: 0 20px 50px rgba(45, 22, 72, 0.1);
}

.lote-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mentalma-purple);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 7px 22px;
  border-radius: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(45, 22, 72, 0.3);
}

.lote-countdown {
  margin: 4px 0 12px;
  padding: 18px 14px 14px;
  background: rgba(45, 22, 72, 0.04);
  border: 1px solid rgba(45, 22, 72, 0.08);
  border-radius: 14px;
}

.lote-countdown-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mentalma-purple);
  margin-bottom: 12px;
}

.lote-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.lote-countdown-grid .countdown-unit {
  background: var(--mentalma-purple);
  border-radius: 10px;
  padding: 10px 4px 8px;
  min-width: 0;
}

.lote-countdown-grid .countdown-number {
  font-size: 1.55rem;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.lote-countdown-grid .countdown-legend {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 6px;
  font-weight: 500;
}

/* ---------- Locked Lote ---------- */
.lote-card--locked {
  opacity: 0.85;
  background: var(--light-card);
  filter: grayscale(0.2);
}

.lote-card--locked:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.lote-card--locked .lote-price-original {
  color: var(--text-on-light-muted);
}

.lote-lock {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 184, 14, 0.12);
  color: var(--mentalma-gold);
  border: 1px solid rgba(232, 184, 14, 0.35);
  border-radius: 50%;
}

.lote-locked-msg {
  margin-top: auto;
  padding: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mentalma-purple);
  background: rgba(45, 22, 72, 0.06);
  border: 1px dashed rgba(45, 22, 72, 0.25);
  border-radius: 12px;
}

.lote-numero {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-on-light-muted);
  margin-bottom: 8px;
}

.lote-periodo {
  font-size: 0.85rem;
  color: var(--text-on-light-muted);
  margin-bottom: 6px;
}

.lote-price {
  margin-bottom: 14px;
}

.lote-price-original {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: var(--text-on-light);
  letter-spacing: -0.02em;
}

.lote-descricao {
  font-size: 0.9rem;
  color: var(--text-on-light-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.lote-cta {
  width: 100%;
  justify-content: center;
}

/* Lote states */
.lote-active {
  border: 2px solid var(--mentalma-gold);
}

.lote-active::before {
  content: "Lote Atual";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mentalma-purple);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lote-future {
  opacity: 0.65;
}

.lote-expired {
  opacity: 0.35;
  pointer-events: none;
}

.lote-expired .lote-price-original {
  text-decoration: line-through;
  color: var(--text-on-light-muted);
}

.lote-expired .lote-cta {
  display: none;
}

.lote-expired::before {
  content: "Encerrado";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-on-light-muted);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ingressos-encerrados {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-on-light-secondary);
  margin-top: 32px;
  padding: 20px;
}


/* ========================================
   SECTION 5: FAQ (LIGHT SURFACE)
   ======================================== */
.section-faq {
  padding: 90px 0;
  background: transparent;
  color: var(--text-on-dark);
}

.section-faq .section-title {
  text-align: center;
  color: var(--text-on-dark);
}

.section-faq .section-title {
  text-align: center;
  font-size: 60px;
  line-height: 1;
}

.faq-lista {
  max-width: 820px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.faq-item:hover {
  border-color: rgba(232, 184, 14, 0.25);
  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: rgba(232, 184, 14, 0.4);
  background: linear-gradient(160deg, rgba(232, 184, 14, 0.06) 0%, rgba(232, 184, 14, 0.01) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.faq-pergunta {
  cursor: pointer;
  padding: 24px 28px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-on-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.25s;
}

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

.faq-pergunta::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--mentalma-gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(232, 184, 14, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.35s ease;
  line-height: 1;
}

.faq-item:hover .faq-pergunta::after {
  background: rgba(232, 184, 14, 0.1);
}

.faq-item[open] .faq-pergunta::after {
  content: "\2212";
  background: var(--mentalma-gold);
  color: var(--dark-deep);
  transform: rotate(180deg);
}

.faq-item[open] .faq-pergunta {
  color: var(--mentalma-gold);
}

.faq-resposta {
  padding: 0 28px 26px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  margin: 0;
}


/* ========================================
   TRANSITION: Light to Dark CTA
   ======================================== */
.transition-light-to-dark {
  height: 0;
  background: transparent;
}


/* ========================================
   SECTION 6: CTA FINAL (DARK - volta)
   ======================================== */
.section-cta-final {
  padding: 90px 0;
  background: transparent;
  text-align: center;
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.section-cta-final .section-curves path {
  stroke: rgba(123, 45, 142, 0.1);
  fill: none;
  stroke-width: 1;
}

.cta-final-titulo {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--text-on-dark);
}

.cta-final-subtitulo {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.0;
}


/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 40px 0;
  text-align: center;
  background: transparent;
  border-top: none;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}


/* ========================================
   STICKY CTA BAR
   ======================================== */
#sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 6, 24, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 100;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#sticky-cta.sticky-visible {
  transform: translateY(0);
}

#sticky-cta.sticky-light {
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(45, 22, 72, 0.12);
}
#sticky-cta.sticky-light .sticky-cta-text {
  color: var(--mentalma-purple, #2D1648);
  font-weight: 600;
}

.sticky-cta-text {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  font-weight: 500;
}

.sticky-cta-btn {
  padding: 10px 28px;
  font-size: 0.85rem;
  white-space: nowrap;
}


/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered card animations */
.aula-card.fade-in:nth-child(1) { transition-delay: 0s; }
.aula-card.fade-in:nth-child(2) { transition-delay: 0.12s; }
.aula-card.fade-in:nth-child(3) { transition-delay: 0.24s; }

.lote-card.fade-in:nth-child(1) { transition-delay: 0s; }
.lote-card.fade-in:nth-child(2) { transition-delay: 0.12s; }
.lote-card.fade-in:nth-child(3) { transition-delay: 0.24s; }


/* ========================================
   MEDIA QUERIES
   ======================================== */
@media (max-width: 768px) {
  .section-hero {
    min-height: auto;
    padding: 60px 20px 24px;
  }
  .section-hero .hero-logo {
    width: 130px;
    height: auto;
    margin: 0 auto 8px;
  }
  .section-hero .hero-logo img {
    width: 100%;
    height: auto;
  }
  .section-hero .hero-eyebrow-row { margin-bottom: 8px; }
  .section-hero .hero-headline {
    font-size: 1.6rem !important;
    margin: 4px 0 12px;
    line-height: 1.1;
    white-space: nowrap;
  }
  .section-hero .video-wrapper { margin: 4px 0 10px !important; }
  .section-hero .hero-subheadline {
    font-size: 0.95rem !important;
    line-height: 1.3 !important;
    margin-top: 10px !important;
    margin-bottom: 12px;
    font-weight: 700 !important;
    color: #ffffff !important;
  }
  .section-hero .hero-cta { padding: 12px 26px; font-size: 0.85rem; }

  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .section-hero .container {
    display: flex;
    flex-direction: column;
  }
  .section-hero .hero-logo { order: 1; }
  .section-hero .hero-eyebrow-row { order: 2; }
  .section-hero .hero-headline { order: 3; }
  .section-hero .video-wrapper { order: 4; }
  .section-hero .hero-subheadline { order: 5; margin-top: 16px; }
  .section-hero .hero-cta { order: 6; }

  .hero-deco {
    font-size: 40vw;
    right: -10%;
  }

  .aulas-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lotes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .cta-final-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }
  .cta-final-logo img { width: 130px; height: auto; }

  .posicionamento-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .posicionamento-foto {
    max-width: 320px;
    margin: 0 auto;
  }

  .posicionamento-texto {
    padding-left: 0 !important;
    text-align: center;
  }

  .posicionamento-texto p {
    line-height: 1.2 !important;
  }

  .section-posicionamento .section-title,
  .section-posicionamento .section-eyebrow {
    text-align: center;
  }

  .oportunidade-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .oportunidade-card {
    max-width: 100%;
  }

  .section-title {
    font-size: 36px !important;
  }

  .countdown-number {
    font-size: 2.25rem;
    min-width: 48px;
  }

  .countdown-sep {
    font-size: 1.5rem;
    padding-bottom: 14px;
  }

  .cta-final-titulo {
    font-size: 2rem;
  }

  .section-aulas,
  .section-posicionamento,
  .section-oportunidade,
  .section-lotes,
  .section-faq,
  .section-cta-final {
    padding: var(--section-gap-mobile) 0;
  }

  .lote-card {
    padding: 32px 24px;
  }

  .sticky-cta-text {
    display: none;
  }

  #sticky-cta {
    justify-content: center;
  }

  .sticky-cta-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }

  .transition-dark-to-dark,
  .transition-dark-to-light,
  .transition-light-to-dark {
    height: 80px;
  }

  .navbar-logo {
    font-size: 0.9rem;
  }

  .video-wrapper {
    margin: 32px 0 28px;
  }

  .aula-deco-number {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

  .hero-subheadline {
    font-size: 0.95rem;
  }

  .hero-dates {
    font-size: 0.8rem;
    padding: 8px 20px;
  }

  .container {
    padding: 0 16px;
  }

  .countdown-number {
    font-size: 1.85rem;
    min-width: 40px;
  }

  .countdown-sep {
    font-size: 1.25rem;
  }

  .lote-price-original {
    font-size: 2.25rem;
  }

  .cta-pill {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .posicionamento-texto {
    padding-left: 20px;
  }

  .posicionamento-texto p,
  .posicionamento-texto p:first-child {
    font-size: 16px !important;
  }

  .section-subtitle {
    font-size: 16px !important;
    line-height: 1.2 !important;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .oportunidade-intro {
    font-size: 16px !important;
    line-height: 1.2 !important;
    text-align: center;
  }

  .section-oportunidade .section-eyebrow,
  .section-oportunidade .section-title,
  .section-oportunidade-header {
    text-align: center !important;
  }

  .section-oportunidade-header {
    align-items: center;
  }

  .section-title {
    font-size: 36px !important;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cta-pill,
  .aula-card,
  .lote-card,
  .navbar,
  #sticky-cta {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}
