/* ============================================
   IMERSÃO GÊNESIS — Premium Landing Page CSS
   ============================================ */

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

:root {
  --primary: #BDEAF1;
  --primary-hover: #8FD8E4;
  --primary-deep: #007A8A;
  --bg-base: #0B1215;
  --bg-section: #0F181C;
  --surface: rgba(255,255,255,0.04);
  --surface-solid: #131F24;
  --stroke: rgba(189,234,241,0.12);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.7);
  --muted: rgba(255,255,255,0.4);
  --highlight: rgba(189,234,241,0.08);
  --success: #BDEAF1;
  --font-serif: 'Baskerville', 'Libre Baskerville', Georgia, serif;
  --font-sans: 'Manrope', 'Segoe UI', sans-serif;
  --container: 1140px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-base);
  overflow-x: hidden;
  max-width: 100%;
}

/* FOUC Prevention */
body {
  opacity: 0;
  visibility: hidden;
}

body.is-loaded {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

/* Cosmic starfield background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(189,234,241,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 10%, rgba(189,234,241,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 60%, rgba(189,234,241,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 40%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 90%, rgba(189,234,241,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 50%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 25%, rgba(189,234,241,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 95%, rgba(189,234,241,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 45%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 85%, rgba(189,234,241,0.2) 0%, transparent 100%),
    radial-gradient(600px 600px at 50% 30%, rgba(189,234,241,0.015) 0%, transparent 70%);
  animation: starsTwinkle 8s ease-in-out infinite alternate;
}

@keyframes starsTwinkle {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}




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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  text-shadow: 0 0 40px rgba(189,234,241,0.08);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.06em;
  font-weight: 400;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 0.8rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: 680px;
}

/* --- Section Base --- */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(189,234,241,0.045) 0%, rgba(189,234,241,0.01) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section--alt {
  background: var(--bg-section);
  position: relative;
}

.section--alt::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(189,234,241,0.035) 0%, rgba(189,234,241,0.008) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section--alt > .container {
  position: relative;
  z-index: 1;
}

.section__label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

/* --- Separator --- */
.separator {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189,234,241,0.2), transparent);
  margin: 0 auto;
  max-width: 80%;
  position: relative;
  overflow: visible;
  z-index: 10;
}

.separator::after {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  padding: 0;
  color: var(--primary);
  font-size: 12px;
  text-shadow: 0 0 12px rgba(189,234,241,0.4);
}

/* --- Badge --- */
.badge {
  display: inline-block;
  background: rgba(189,234,241,0.06);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(189,234,241,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 40px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1),
              background 0.4s ease,
              box-shadow 0.4s ease,
              filter 0.4s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
  will-change: transform;
}

.btn--primary {
  background: var(--primary);
  color: #0B1215;
  box-shadow: 0 0 30px rgba(189,234,241,0.2), 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
  padding: 20px 60px;
  z-index: 1;
  font-weight: 800;
}

.btn--primary:hover {
  background: var(--primary-hover);
  color: #0B1215;
  box-shadow: 0 0 40px rgba(189,234,241,0.3), 0 6px 18px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.btn--primary:active {
  transform: translateY(-1px);
  filter: brightness(1);
}

.btn--primary::before {
  content: "";
  height: 100%;
  width: 50px;
  position: absolute;
  top: 0;
  left: -20%;
  opacity: 0;
  background: #ffffff;
  box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: btn-shine 3.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes btn-shine {
  0% {
    opacity: 0;
    left: -20%;
  }

  40% {
    opacity: 0.35;
  }

  60% {
    opacity: 0.35;
    left: 120%;
  }

  100% {
    opacity: 0;
    left: 120%;
  }
}

.btn__text {
  position: relative;
  z-index: 2;
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
}

.btn--primary:hover .btn__text {
  transform: translateX(-8px);
}

.btn__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) scale(0.5);
  background: #fff;
  color: #0B1215;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
  z-index: 2;
}

.btn--primary:hover .btn__icon {
  transform: translateY(-50%) scale(1);
  opacity: 1;
  color: #0B1215;
}

.btn--primary:hover .btn__icon svg {
  transform: translateX(2px);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: #0B1215;
  transform: translateY(-2px);
}

.btn--large {
  font-size: 1.1rem;
  border-radius: 100px;
  min-height: 64px;
}


.micro-text {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 12px;
}

/* --- Card --- */
.card {
  background: var(--surface-solid);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card:hover {
  border-color: rgba(189,234,241,0.3);
  box-shadow: 0 4px 24px rgba(189,234,241,0.06), 0 0 0 1px rgba(189,234,241,0.1);
}

/* --- Placeholder Image --- */
.placeholder {
  background: var(--surface-solid);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-height: 260px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(189,234,241,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.placeholder__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  opacity: 0.5;
}

.placeholder__caption {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 8px;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-base);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('genesisfundo.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,21,0.4) 0%, rgba(11,18,21,0.15) 40%, rgba(11,18,21,0.5) 70%, rgba(11,18,21,1) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

/* Logo in hero */
.hero__logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 24px rgba(189,234,241,0.4));
  transition: filter 0.4s ease;
}

.hero__logo:hover {
  filter: drop-shadow(0 0 36px rgba(189,234,241,0.6));
}

/* Logo in sections (investimento, CTA, etc.) */
.section-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 20px rgba(189,234,241,0.35));
  opacity: 0.9;
  transition: all 0.4s ease;
}

.section-logo:hover {
  filter: drop-shadow(0 0 30px rgba(189,234,241,0.55));
  opacity: 1;
}

.hero h1 {
  margin-bottom: 1.2rem;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin: 0 auto 1.5rem;
  line-height: 1.8;
  max-width: 560px;
}

.hero__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.hero__info svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

/* =====================
   BACKGROUND ENRICHMENTS
   ===================== */
#problema, #beneficios {
  position: relative;
}

/* Background image removed from #problema per design update */

/* Background image removed from #beneficios per design update */

/* =====================
   PROBLEM SECTION
   ===================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 40px 0;
}

.problem-list {
  list-style: none;
}

.problem-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.problem-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.highlight-box {
  background: linear-gradient(90deg, rgba(189,234,241,0.06) 0%, rgba(189,234,241,0.01) 100%);
  border-left: 3px solid var(--primary);
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 40px 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.highlight-box p {
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
  max-width: 100%;
}

/* =====================
   JOURNEY / STEPS
   ===================== */
.journey {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 48px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.journey__step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--surface-solid);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  white-space: nowrap;
  transition: all var(--transition);
}

.journey__step:hover {
  border-color: rgba(189,234,241,0.3);
  box-shadow: 0 0 16px rgba(189,234,241,0.08);
}

.journey__step-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #0B1215;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(189,234,241,0.25);
}

.journey__arrow {
  color: var(--primary);
  font-size: 1.4rem;
  padding: 0 4px;
  opacity: 0.6;
}

.signature-quote {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--primary);
  font-style: italic;
  margin: 64px auto 0;
  max-width: 700px;
  position: relative;
}

.signature-quote::before {
  content: "“";
  display: block;
  font-size: 4rem;
  line-height: 1;
  color: var(--stroke);
  margin-bottom: -20px;
}

/* =====================
   BENEFITS
   ===================== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.benefit-item:hover {
  background: rgba(189,234,241,0.06);
}

.benefit-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.benefit-item span {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* =====================
   PROOF / SOCIAL
   ===================== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.proof-card {
  text-align: center;
}

.proof-card .placeholder {
  min-height: 220px;
  margin-bottom: 16px;
}

.proof-card__img-wrapper {
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid var(--stroke);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.proof-card__img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(189,234,241,0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.proof-card:hover .proof-card__img-wrapper::after {
  opacity: 1;
}

.proof-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
}

.proof-card:hover .proof-card__img {
  transform: scale(1.05);
}

.proof-card h3 {
  font-size: 1rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-weight: 500;
}

/* =====================
   VENUE — Premium Gallery
   ===================== */

/* Gallery grid: main image takes 60%, secondary 40% */
.venue-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  margin: 48px 0 32px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.venue-gallery__main,
.venue-gallery__secondary {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
}

.venue-gallery__main {
  aspect-ratio: 16 / 10;
}

.venue-gallery__secondary {
  aspect-ratio: 4 / 3;
}

.venue-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.4, 0, .2, 1);
}

.venue-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.venue-gallery__main:hover,
.venue-gallery__secondary:hover {
  border-color: rgba(189,234,241,0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(189,234,241,0.15);
}

.venue-gallery__main:hover .venue-gallery__img,
.venue-gallery__secondary:hover .venue-gallery__img {
  transform: scale(1.05);
}

.venue-gallery__main:hover .venue-gallery__overlay,
.venue-gallery__secondary:hover .venue-gallery__overlay {
  opacity: 0.4;
}

/* Venue info card — glassmorphic style */
.venue-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(19,31,36,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  padding: 16px 36px 16px 24px;
  margin: 0 auto;
  transition: all var(--transition);
}

.venue-card:hover {
  border-color: rgba(189,234,241,0.3);
  box-shadow: 0 8px 32px rgba(189,234,241,0.06);
}

.venue-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--highlight);
  border-radius: 50%;
  color: var(--primary);
  flex-shrink: 0;
}

.venue-card__details {
  text-align: left;
}

/* =====================
   VIDEO
   ===================== */
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
  aspect-ratio: 16/9;
  background: #1A2A2E;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
}

/* =====================
   PRICING — REDESIGNED V2
   ===================== */

/* Section wrapper */
.invest-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-base);
}

/* Subtle radial glow behind pricing */
.invest-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(189,234,241,0.06) 0%, rgba(189,234,241,0.02) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Divider */
.invest-divider {
  width: 60px;
  height: 1px;
  background: var(--stroke);
  margin: 40px auto;
  opacity: 0.6;
}

/* Subtitle for sub-sections */
.invest-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 28px;
}

/* Value tags — inline pill layout */
.value-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.value-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-solid);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition);
  white-space: nowrap;
}

.value-tag svg {
  color: var(--primary);
  flex-shrink: 0;
}

.value-tag:hover {
  border-color: rgba(189,234,241,0.3);
  background: var(--highlight);
}

/* Problem variant — subtle warm/red tint for negative items */
.value-tag--problem {
  border-color: rgba(255,140,140,0.15);
  color: rgba(255,200,200,0.7);
}

.value-tag--problem svg {
  color: rgba(255,140,140,0.5);
}

.value-tag--problem:hover {
  border-color: rgba(255,140,140,0.3);
  background: rgba(255,140,140,0.05);
}

/* Pricing grid v2 */
.pricing-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
  max-width: 1000px;
}

/* Individual price card */
.price-card-v2 {
  background: var(--surface-solid);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 40px 24px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.price-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.price-card-v2:hover {
  border-color: rgba(189,234,241,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(189,234,241,0.15), 0 0 30px rgba(189,234,241,0.05);
}

.price-card-v2:hover::before {
  opacity: 1;
}

/* Featured card (Diamond) */
.price-card-v2--featured {
  border-color: rgba(189,234,241,0.3);
  background: linear-gradient(165deg, rgba(189,234,241,0.08) 0%, var(--surface-solid) 60%);
  box-shadow: 0 0 50px rgba(189,234,241,0.08);
  transform: scale(1.04);
  padding-top: 48px;
}

.price-card-v2--featured::before {
  opacity: 1;
}

.price-card-v2--featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(189,234,241,0.2), 0 0 40px rgba(189,234,241,0.08);
}

/* "Mais escolhido" badge */
.price-card-v2__badge-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 0;
}

.price-card-v2__label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
}

.price-card-v2__price {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin: 8px 0 4px;
}

.price-card-v2__currency {
  font-size: 1rem;
  font-weight: 400;
  vertical-align: super;
  margin-right: 2px;
  color: var(--text-secondary);
}

.price-card-v2__cents {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.price-card-v2__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.price-card-v2__tag {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

/* Featured card text highlights */
.price-card-v2--featured .price-card-v2__price {
  color: var(--primary-hover);
}

.price-card-v2--featured .price-card-v2__label {
  color: var(--text-secondary);
}

/* Pricing card buttons */
.btn--pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 20px;
  margin-top: auto;
  width: 100%;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn--pricing:hover {
  background: var(--primary);
  color: #0B1215;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(189,234,241,0.2);
}

.price-card-v2--featured .btn--pricing {
  background: var(--primary);
  color: #0B1215;
}

.price-card-v2--featured .btn--pricing:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(189,234,241,0.25);
}

/* =====================
   FOR WHO
   ===================== */
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 40px 0;
}

.for-who-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
}

.for-who-item svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 3px;
}

.for-who-item span {
  color: var(--text-secondary);
  font-size: 0.93rem;
}

.not-for-card {
  background: rgba(189,234,241,0.04);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.not-for-card p {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 12px;
  max-width: 100%;
}

.not-for-card p:last-child {
  margin-bottom: 0;
}

/* =====================
   SPEAKERS — REDESIGNED V2
   ===================== */
.speakers-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0;
}

.speaker-card-v2 {
  background: var(--surface-solid);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
}

.speaker-card-v2:hover {
  border-color: rgba(189,234,241,0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(189,234,241,0.1);
  transform: translateY(-4px);
}

/* Image area */
.speaker-card-v2__img {
  position: relative;
  overflow: hidden;
}

.speaker-img {
  width: 100%;
  height: 400px; /* Gives a nice vertical portrait aspect */
  object-fit: cover;
  object-position: top center; /* Focuses on faces */
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.speaker-card-v2:hover .speaker-img {
  transform: scale(1.05);
}

/* Body area */
.speaker-card-v2__body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Role badge */
.speaker-card-v2__role {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  background: rgba(189,234,241,0.08);
  border: 1px solid rgba(189,234,241,0.15);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 12px;
  width: fit-content;
}

.speaker-card-v2 h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Short tagline */
.speaker-card-v2__tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 100%;
}

/* Expandable bio */
.speaker-card-v2__bio {
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.4, 0, .2, 1);
  max-height: 0;
  position: relative;
}

.speaker-card-v2__bio[data-collapsed="false"] {
  max-height: 600px;
}

.speaker-card-v2__bio-text {
  padding-top: 16px;
}

.speaker-card-v2__bio-text p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
  max-width: 100%;
}

.speaker-card-v2__bio-text p:last-child {
  margin-bottom: 0;
}

.speaker-card-v2__bio-text strong {
  color: var(--text-secondary);
}

/* Toggle button */
.speaker-card-v2__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0 0;
  margin-top: auto;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.speaker-card-v2__toggle:hover {
  color: var(--primary-hover);
}

.speaker-card-v2__toggle svg {
  transition: transform 0.3s ease;
}

.speaker-card-v2__toggle.is-open svg {
  transform: rotate(180deg);
}

/* Keep old classes for backward compat (unused now) */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0;
}

.speaker-card {
  text-align: center;
}

.speaker-card .placeholder {
  min-height: 280px;
  margin-bottom: 20px;
  border-radius: var(--radius);
}

.speaker-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.speaker-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-align: left;
}

/* =====================
   ABOUT / BIO
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-top: 28px;
  margin-bottom: 8px;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  font-size: 0.93rem;
}

/* Editorial Frame for Image */
.editorial-frame {
  margin: 0;
  display: block;
}

.editorial-frame__box {
  background: #0F181C;
  padding: 20px;
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.editorial-frame__box img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(189,234,241,0.08);
  border-radius: 2px;
}

.editorial-frame__caption {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  padding: 0 2px;
}

/* =====================
   FINAL CTA
   ===================== */
.final-cta {
  text-align: center;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-base) 100%);
  position: relative;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(189,234,241,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  max-width: 700px;
  margin: 0 auto 1.2rem;
}

.final-cta p {
  margin: 0 auto 1rem;
  text-align: center;
}

.final-cta .badge {
  margin-bottom: 2rem;
}

/* =====================
   TEXT ALIGNMENT UTILS
   ===================== */
.text-center {
  text-align: center;
}

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

/* =====================
   GSAP — Initial States (prevent FOUC)
   ===================== */

/* Hero elements start invisible — GSAP animates them in */
.hero__bg,
.hero__overlay,
.hero__content .badge,
.hero h1,
.hero__sub,
.hero__info,
.hero .btn--primary,
.hero .micro-text {
  visibility: visible;
}

/* Separators need transform-origin for scaleX grow */
.separator {
  transform-origin: center;
}

.invest-divider {
  transform-origin: center;
}

/* =====================
   TICKET BENEFIT LISTS
   ===================== */
.price-card-v2__benefits {
  list-style: none;
  text-align: left;
  width: 100%;
  margin: 16px 0 20px;
  padding: 16px 0 0;
  border-top: 1px solid var(--stroke);
}

.price-card-v2__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.price-card-v2__benefits li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 1px;
  filter: drop-shadow(0 0 4px rgba(189,234,241,0.3));
}

/* Diamond card exclusive benefit highlights */
.price-card-v2--featured .price-card-v2__benefits li {
  color: rgba(255,255,255,0.8);
}

.price-card-v2__benefit-highlight {
  color: var(--primary) !important;
  font-weight: 600;
}

/* Diamond icon glow */
.price-card-v2--featured .price-card-v2__label::before {
  content: "💎 ";
}

/* =====================
   DECORATIVE IMAGE SECTIONS
   ===================== */
.deco-image-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.deco-image-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  max-height: 280px;
  overflow: hidden;
}

.deco-image-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.6s ease;
}

.deco-image-strip img:hover {
  opacity: 0.7;
}

.deco-image-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, transparent 20%, transparent 80%, var(--bg-base) 100%);
  pointer-events: none;
}

/* Section with side decorative image */
.section-with-image {
  position: relative;
}

.section-deco-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 400px;
  object-fit: cover;
  opacity: 0.12;
  border-radius: var(--radius) 0 0 var(--radius);
  mask-image: linear-gradient(90deg, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 30%, black 70%, transparent);
  pointer-events: none;
}

/* Keep legacy .fade-in class functional as a no-op 
   (GSAP now handles the animation but some elements still have the class) */
.fade-in {
  /* no longer hiding via CSS — GSAP controls opacity */
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .pricing-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card-v2--featured {
    transform: scale(1);
  }

  .price-card-v2--featured:hover {
    transform: translateY(-6px);
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .speakers-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 100px;
  }

  .hero__bg {
    background-image: url('genesisfundo.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.4;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(11,18,21,0.5) 0%, rgba(11,18,21,0.2) 35%, rgba(11,18,21,0.55) 65%, rgba(11,18,21,1) 100%);
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__info {
    justify-content: center;
  }

  .problem-grid,
  .benefits-grid,
  .for-who-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .speakers-grid-v2 {
    grid-template-columns: 1fr;
  }

  .pricing-grid-v2 {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .value-tags {
    gap: 8px;
  }

  .value-tag {
    font-size: 0.8rem;
    padding: 8px 14px;
    white-space: normal;
  }

  .journey {
    flex-direction: column;
    gap: 0;
  }

  .journey__arrow {
    transform: rotate(90deg);
  }

  .btn--large {
    width: 100%;
    padding: 20px 32px;
  }

  .venue-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .venue-card {
    border-radius: var(--radius);
    padding: 16px 20px;
    flex-direction: row;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }

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