/* ════════════════════════════════════════════════
   GLOBAL TOKEN SYSTEM
   LP2 — O Equilíbrio | Crescer sem perder a própria vida
   ════════════════════════════════════════════════ */
:root {
  --bg: #1f0107;
  --bg-surface: #2b000a;
  --bg-card: #3d0010;
  --gucci-light: #7c001c;
  --gucci-dark: #4d0012;
  --gold-light: #f5d796;
  --gold-mid: #d4af66;
  --gold-dark: #9e7a3f;
  --pearl: #fdfbf7;
  --muted: #b8b0a9;
  --btn-g1: #065535;
  --btn-g2: #022c1e;
  --btn-act-1: #0d8a57;
  --btn-act-2: #04432c;
  --f-head: 'Playfair Display', Georgia, serif;
  --f-body: 'Source Sans 3', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--pearl);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ─── AMBIENT LAYERS ─── */
.luxury-ambient {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(158, 122, 63, .07) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(212, 175, 102, .04) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: .7;
}

/* ─── CONTAINERS ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── TYPOGRAPHY UTILS ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 20%, var(--gold-dark) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.gold-italic {
  color: var(--gold-light);
  font-style: italic;
}

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

.highlight-lote {
  color: #fff;
  background: #0d8a57;
  padding: 0 0.5rem;
  border-radius: 4px;
  font-weight: 800;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(13, 138, 87, 0.3);
  text-transform: uppercase;
}

.kicker {
  display: block;
  font-size: .85rem;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.sec-title {
  font-family: var(--f-head);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.sec-desc {
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ─── BUTTONS ─── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: linear-gradient(160deg, var(--btn-g1), var(--btn-g2));
  color: #fff;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1.5px;
  padding: 1.2rem 2.75rem;
  border-radius: 100px;
  box-shadow: 0 14px 32px -8px rgba(6, 85, 53, .38);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  position: relative;
  overflow: hidden;
  animation: pulsateGreen 2.5s ease-in-out infinite;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: skewX(-18deg);
  transition: left .65s var(--ease-out);
}

.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px -10px rgba(6, 85, 53, .6);
}

.btn-cta:hover::before {
  left: 160%;
}


@keyframes pulsateGreen {

  0%,
  100% {
    box-shadow: 0 14px 32px -8px rgba(6, 85, 53, .38);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 20px 50px -8px rgba(6, 85, 53, .7);
    transform: scale(1.02);
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(212, 175, 102, .4);
  color: var(--gold-mid);
  font-size: .85rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: .85rem 2rem;
  border-radius: 100px;
  transition: border-color .3s, background .3s, color .3s;
}

.btn-outline:hover {
  background: rgba(212, 175, 102, .1);
  border-color: var(--gold-mid);
  color: var(--gold-light);
}

/* ════════════════════════════════════════════════
   TOPBAR
   ════════════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, var(--gucci-dark) 0%, var(--gucci-light) 50%, var(--gucci-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 0.2rem;
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 600;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(245, 215, 150, .07);
}

/* ════════════════════════════════════════════════
   SEÇÃO 1 — HERO
   ════════════════════════════════════════════════ */
.hero-luxury {
  position: relative;
  z-index: 6;
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  background-color: var(--bg);
  /* Imagem removida daqui para ser usada na div .hero-bg e permitir o empilhamento correto */
  background-image: none;
  background-repeat: no-repeat;
  /* Corte curvo premium */
  clip-path: ellipse(160% 100% at 50% 0%);
  margin-bottom: -10vh;
  /* Sobrepõe levemente a seção seguinte */
  padding-bottom: 0;
  overflow: hidden;
}

/* Overlay escuro removido para mostrar o banner completo conforme solicitado */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner_desktop-1.webp?v=1.0.19');
  background-size: auto 100%;
  background-position: 60% center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

/* Overlay direcional para contraste em todas as resoluções - Camada Intermediária */
.hero-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 1rem 5vw;
  /* Reduzido de 5rem para economizar espaço vertical */
  position: relative;
  z-index: 2;
}

/* Bloco mobile de imagem — oculto no desktop */
.hero-img-mobile {
  display: none;
}

.hero-content {
  grid-column: 1;
  width: 100%;
  max-width: 650px;
  position: relative;
  z-index: 10;
}

.hero-badges {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
  /* Ajustado de 2rem */
}

.hero-small-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.badge-luxe {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(18, 0, 3, 0.65);
  border: 1px solid rgba(212, 175, 102, .3);
  color: var(--gold-mid);
  padding: .5rem 1.2rem;
  border-radius: 5px;
  font-size: .72rem;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-luxe.outline {
  background: transparent;
  border: 1px solid rgba(212, 175, 102, .25);
}

.hero-headline {
  font-family: var(--f-head);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  /* Reduzido um pouco conforme solicitado */
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  /* Ajuste de margem */
}

.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--gold-mid);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1rem;
  max-width: 560px;
}

.hero-body {
  font-size: 1.15rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2rem;
  /* Reduzido de 3rem */
}

.hero-lots {
  width: 100%;
  max-width: 500px;
  margin-bottom: 1.5rem;
}

/* Reduzido de 3rem */

.lot-labels {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1rem;
}

.lot.active {
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.progress-track {
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
  position: relative;
}

.progress-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 12px rgba(212, 175, 102, .5);
  position: absolute;
  top: 0;
  left: 0;
}

.progress-text {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: var(--gold-mid);
  margin-top: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

/* ─── Hero Right Col & Strip ─── */
.hero-right-col {
  grid-column: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  /* Align image to the right on desktop */
}

.evento-img {
  max-width: 95%;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}

.palestrantes-strip-wrapper {
  position: absolute;
  top: 5%;
  right: -2%;
  transform: rotate(30deg);
  z-index: 15;
}

.palestrantes-strip {
  background-color: #520606;
  color: #fff;
  padding: 0.75rem 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Ribbon fold effect */
.palestrantes-strip::before,
.palestrantes-strip::after {
  content: '';
  position: absolute;
  top: 100%;
  border-style: solid;
  z-index: -1;
}

.palestrantes-strip::before {
  left: 0;
  border-width: 0 15px 15px 0;
  border-color: transparent #2a0303 transparent transparent;
}

.palestrantes-strip::after {
  right: 0;
  border-width: 15px 15px 0 0;
  border-color: #2a0303 transparent transparent transparent;
}

/* ════════════════════════════════════════════════
   SEÇÃO 2 — PROMESSA (Broken Grid Editorial)
   ════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   SEÇÃO VÍDEO (Destaque)
   ════════════════════════════════════════════════ */
.sec-video {
  padding: 20vh 0 8rem;
  /* Aumentado de 15vh para dar mais respiro em relação ao hero */
  background: var(--bg);
  position: relative;
  z-index: 5;
  text-align: center;
}

.video-wrapper {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(124, 0, 28, 0.4);
  border: 1px solid rgba(212, 175, 102, 0.2);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .sec-video {
    padding: 15vh 0 4rem;
    /* Aumentado de 10vh no mobile */
  }

  .video-wrapper {
    width: 95%;
    max-width: none;
    border-radius: 10px;
  }
}

.sec-promise {
  background: linear-gradient(rgba(31, 1, 7, 0.8), rgba(31, 1, 7, 0.8)),
    url('images/evento-pessoas.webp?v=1.0.19') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.promise-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 6rem;
}

/* Grid quebrado */
.broken-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4rem;
}

.bg-card {
  position: relative;
  padding-top: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.bg-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.offset-down {
  margin-top: 4rem;
}

.offset-up {
  margin-top: -2rem;
}

/* Linha decorativa top */
.card-border {
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 102, .15);
  position: absolute;
  top: 1.95rem;
  /* Deslocada para baixo para não cortar o número no meio */
  left: 0;
  transition: background .35s;
  z-index: 1;
}

.bg-card:hover .card-border {
  background: var(--gold-mid);
}

/* Número watermark */
.bg-num {
  position: absolute;
  top: -1.75rem;
  /* Subi um pouco mais para dar destaque */
  left: 0;
  font-family: var(--f-head);
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 700;
  color: rgba(212, 175, 102, .22);
  /* Aumentada visibilidade base */
  line-height: 1;
  user-select: none;
  transition: color .35s, transform .35s var(--ease-out);
  z-index: 2;
  /* Garante que o número fique sobre a linha */
}

.bg-card:hover .bg-num {
  color: rgba(212, 175, 102, .75);
  /* Destaque forte no hover */
  transform: translateY(-6px);
}

.card-h {
  font-family: var(--f-body);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: .6rem;
  color: var(--pearl);
}

.card-p {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 300;
}

/* ════════════════════════════════════════════════
   SEÇÃO 3 — ESCASSEZ (Spotlight)
   ════════════════════════════════════════════════ */
.sec-scarcity {
  padding: 8rem 2rem;
  background: radial-gradient(circle at 50% 50%, rgba(158, 122, 63, .14) 0%, var(--bg) 64%);
  text-align: center;
  position: relative;
  z-index: 5;
}

.scarcity-inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.scarcity-text {
  font-family: var(--f-head);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.45;
  font-weight: 400;
}

/* ════════════════════════════════════════════════
   SEÇÃO 4 — DORES (Split 60/40)
   ════════════════════════════════════════════════ */
.sec-pain {
  display: flex;
  align-items: stretch;
  min-height: 560px;
  position: relative;
  z-index: 5;
  background: var(--bg);
}

.pain-img-col {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 20px;
  /* Bordas arredondadas conforme solicitado */
}

.pain-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pain-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--bg) 100%);
}

.pain-content-col {
  flex: 0 0 60%;
  padding: 6rem 5rem 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-list {
  margin-bottom: 2.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  gap: 1.5rem;
}

/* ════════════════════════════════════════════════
   SEÇÃO DEPOIMENTOS (Marquee)
   ════════════════════════════════════════════════ */
.sec-testimonials {
  padding: 6rem 0;
  background: var(--bg-surface);
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.testim-marquee {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: testim-scroll 40s linear infinite;
}

.testim-marquee:hover {
  animation-play-state: paused;
}

.testim-item {
  width: auto;
  height: 520px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 102, 0.15);
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  overflow: hidden;
}

.testim-item img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

@keyframes testim-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 1rem));
  }
}

.pain-item {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 400;
  border-left: 2px solid var(--gold-dark);
  padding-left: 1.25rem;
  padding-top: .25rem;
  padding-bottom: .25rem;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

.pain-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.pain-conclusion {
  font-size: 1.05rem;
  color: var(--pearl);
  font-weight: 400;
  line-height: 1.6;
  border-top: 1px solid rgba(212, 175, 102, .1);
  padding-top: 1.5rem;
  margin-top: .5rem;
}

/* ════════════════════════════════════════════════
   SEÇÃO 5 — SOBRE O EVENTO (Masonry Glass)
   ════════════════════════════════════════════════ */
.sec-about {
  position: relative;
  z-index: 5;
  padding: 8rem 0;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.about-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d0806, #1a1009);
  filter: brightness(.35);
}

.sec-about .container {
  position: relative;
  z-index: 2;
}

.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.about-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

/* Alinhado 4 blocos na mesma linha no desktop conforme solicitado */
.masonry-glass {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.glass-item {
  background: rgba(20, 13, 11, .55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(212, 175, 102, .18);
  border-top-color: rgba(212, 175, 102, .3);
  border-radius: 10px;
  padding: 2.25rem;
  transition: transform .4s var(--ease-out), border-color .35s;
  opacity: 0;
  transform: translateY(24px);
}

.glass-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.glass-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 102, .5);
}

.glass-item.tall {
  padding: 3rem 2.25rem;
}

.glass-icon {
  margin-bottom: 1.25rem;
}

.glass-h {
  font-family: var(--f-head);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: .6rem;
}

.glass-p {
  font-size: .93rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

.about-cta-wrap {
  display: flex;
  justify-content: center;
}

/* ════════════════════════════════════════════════
   SEÇÃO 6 — PALESTRANTES (Sticky Stacking Cards)
   ════════════════════════════════════════════════ */
.sec-speakers {
  background: var(--bg);
  position: relative;
  z-index: 5;
}

.speakers-header {
  padding: 6rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

/* Stack de cards com sticky */
.speakers-stack {
  position: relative;
}

.speaker-card {
  position: sticky;
  top: 0;
  min-height: 80vh;
  display: flex;
  align-items: stretch;
  z-index: var(--card-z);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, .6);
  margin-bottom: 2px;
}

.speaker-img-col {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.speaker-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-surface);
  filter: grayscale(100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter .5s;
  min-height: 60vh;
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter .6s var(--ease-out), transform .8s var(--ease-out);
}

.speaker-card:hover .speaker-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.speaker-card:hover .speaker-img-placeholder {
  filter: grayscale(0%);
}

.speaker-info-col {
  flex: 0 0 50%;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.speaker-kicker {
  font-size: .68rem;
  letter-spacing: 3px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.speaker-name {
  font-family: var(--f-head);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--pearl);
}

.speaker-name em {
  font-style: italic;
  color: var(--gold-light);
}

.speaker-bio {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: .9rem;
}

/* Card de Surpresa */
.speaker-secret {
  background: linear-gradient(135deg, #0e0905, #1a1209);
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.secret-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.secret-lock svg {
  width: 50vw;
  height: 50vw;
  max-width: 500px;
  max-height: 500px;
}

.secret-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.secret-name {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
}

/* ════════════════════════════════════════════════
   SEÇÃO 7 — PARA QUEM É (Contained Center)
   ════════════════════════════════════════════════ */
.sec-forwhom {
  padding: 9rem 2rem;
  background: var(--bg-surface);
  text-align: center;
  position: relative;
  z-index: 5;
}

.forwhom-container {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.forwhom-pre {
  font-size: 1.1rem;
  color: var(--muted);
}

.forwhom-question {
  font-family: var(--f-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
}

.forwhom-answer {
  font-size: 1.15rem;
  color: var(--muted);
}

.forwhom-list {
  width: fit-content;
  margin: 0 auto;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 2rem 1.5rem;
}

.forwhom-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--pearl);
  font-weight: 400;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}

.forwhom-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.check-icon {
  flex-shrink: 0;
}

.forwhom-footer {
  font-size: 1rem;
  color: var(--muted);
}

/* ════════════════════════════════════════════════
   SEÇÃO 8 — INGRESSOS / OFERTA
   ════════════════════════════════════════════════ */
.sec-offer {
  position: relative;
  z-index: 5;
  padding: 8rem 2rem;
}

.offer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(60, 20, 0, .35) 0%, var(--bg) 65%);
}

.sec-offer .container {
  position: relative;
  z-index: 2;
}

.offer-header {
  text-align: center;
  margin-bottom: 4rem;
}

.offer-title {
  font-family: var(--f-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
  margin-bottom: 1.25rem;
}

.offer-urgent {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #c0392b;
  text-transform: uppercase;
}

/* Cards de Preço */
.pricing-grid {
  display: flex;
  align-items: flex-end;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1 1 280px;
  max-width: 360px;
  border-radius: 16px;
  padding: 2.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

/* Gold */
.gold-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 102, .35);
  border-top: 3px solid var(--gold-dark);
}

/* Platina */
.platina-card {
  background: var(--bg-card);
  border: 1px solid rgba(180, 180, 190, .35);
  border-top: 3px solid #c0c0cc;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

/* Premium */
.premium-card {
  background: linear-gradient(160deg, #0a1128 0%, #1c2541 100%);
  border: 1px solid rgba(212, 175, 102, .4);
  border-top: 3px solid var(--gold-mid);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .6);
  min-height: 580px;
}

.premium-cta {
  width: 100%;
}

.most-popular {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(212, 175, 102, .15);
  color: var(--gold-mid);
  font-size: .62rem;
  padding: .3rem .85rem;
  border-radius: 100px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.lot-badge-price {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: -0.8rem;
  opacity: 1;
}

.lot-badge-price .highlight-lote {
  font-size: 0.75rem;
  padding: 0.1rem 0.6rem;
  vertical-align: middle;
}

.tier-badge {
  font-family: var(--f-head);
  font-size: 2.2rem;
  font-weight: 700;
}

.gold-card .tier-badge {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.platina-badge {
  background: linear-gradient(135deg, #d8d8e0, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-badge {
  background: linear-gradient(135deg, #0d8a57, #065535);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}

.tier-features li {
  font-size: .9rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
}

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-dark);
}

.tier-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.por-apenas {
  font-size: .8rem;
  color: var(--muted);
}

.parcelas {
  font-size: .85rem;
  color: var(--pearl);
  margin-top: .25rem;
}

.preco-destaque {
  font-family: var(--f-head);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
}

.gold-card .preco-destaque,
.platina-card .preco-destaque {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-price {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.avista {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .4rem;
}

/* Botões nos cards */
.btn-tier {
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background .35s, color .35s, box-shadow .35s;
}

.btn-ghost-gold {
  background: linear-gradient(160deg, var(--btn-g1), var(--btn-g2));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 14px 32px -8px rgba(6, 85, 53, .38);
  animation: pulsateGreen 2.5s ease-in-out infinite;
}

.btn-ghost-gold:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px -10px rgba(6, 85, 53, .6);
}

.btn-ghost-platina {
  background: linear-gradient(160deg, var(--btn-g1), var(--btn-g2));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 14px 32px -8px rgba(6, 85, 53, .38);
  animation: pulsateGreen 2.5s ease-in-out infinite;
}

.btn-ghost-platina:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px -10px rgba(6, 85, 53, .6);
}

.btn-ghost-premium {
  background: linear-gradient(160deg, #0fb471, #065535);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  animation: pulsatePremiumGreen 1.5s ease-in-out infinite;
}

.btn-ghost-premium:hover {
  background: linear-gradient(160deg, #0fb471, #0d8a57);
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(13, 138, 87, .6);
}

.premium-warning {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 700;
  text-align: center;
  margin: 1rem 0 -0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

@keyframes pulsatePremiumGreen {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(13, 138, 87, 0.7);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px 10px rgba(13, 138, 87, 0.3);
    transform: scale(1.03);
  }
}

/* Suporte e fechar */
.offer-support {
  margin-top: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.btn-ghost-support {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--muted);
  padding: .85rem 2.25rem;
  border-radius: 100px;
  font-size: .85rem;
  letter-spacing: 1px;
  transition: background .35s, border-color .35s, color .35s, box-shadow .35s;
}

.btn-ghost-support:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .25);
}

.offer-closing {
  max-width: 640px;
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════
   SEÇÃO 9 — URGÊNCIA (Type Hero + Marquee)
   ════════════════════════════════════════════════ */
.sec-urgency {
  position: relative;
  z-index: 5;
  padding: 8rem 2rem;
  overflow: hidden;
}

.marquee-bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%) rotate(-3deg);
  pointer-events: none;
  overflow: hidden;
  width: 110%;
  margin-left: -5%;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-text {
  font-family: var(--f-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: .05em;
  -webkit-text-stroke: 1px rgba(212, 175, 102, .1);
  color: transparent;
  user-select: none;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.urgency-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: rgba(9, 6, 5, .7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 102, .12);
  border-radius: 16px;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.urgency-label {
  font-size: .75rem;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--gold-mid);
  text-transform: uppercase;
}

.urgency-body {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pearl);
  line-height: 1.4;
  text-transform: uppercase;
}

.urgency-pillars {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.urgency-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--pearl);
  font-weight: 500;
  letter-spacing: .5px;
}

/* ════════════════════════════════════════════════
   SEÇÃO 10 — FAQ (Accordion Elegante)
   ════════════════════════════════════════════════ */
.sec-faq {
  padding: 8rem 2rem;
  background: var(--bg-surface);
  position: relative;
  z-index: 5;
}

.sec-faq .kicker {
  text-align: center;
}

.faq-title {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--pearl);
  font-family: var(--f-body);
  font-size: 1.1rem;
  font-weight: 400;
  padding: 2rem 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .3s;
}

.faq-q:hover,
.faq-q[aria-expanded="true"] {
  color: var(--gold-mid);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-dark);
  transition: transform .35s var(--ease-out);
  flex-shrink: 0;
  line-height: 1;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s var(--ease-out), padding .5s var(--ease-out);
}

.faq-a:not([hidden]) {
  max-height: 400px;
  padding-bottom: 2rem;
}

.faq-a p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   SEÇÃO 11 — PATROCINADORES (Marquee Grayscale)
   ════════════════════════════════════════════════ */
.sec-sponsors {
  padding: 5rem 2rem;
  background: var(--bg);
  position: relative;
  z-index: 5;
}

.sponsors-track-wrapper {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 2rem 0;
}

.sponsors-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.sponsor-logo-placeholder {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: 1px;
  opacity: .4;
  filter: grayscale(100%);
  transition: opacity .35s, filter .35s;
}

.sponsors-track-wrapper:hover .sponsor-logo-placeholder {
  opacity: .85;
  filter: grayscale(0%);
}

/* ════════════════════════════════════════════════
   SEÇÃO 12 — LOGÍSTICA (Asymmetric Split)
   ════════════════════════════════════════════════ */
.sec-logistics {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(77, 0, 18, 0.8), rgba(124, 0, 28, 0.8)), url('images/evento-pessoas.webp?v=1.0.19') no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 5;
  min-height: 450px;
  text-align: center;
}

.logistics-left {
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.logistics-logo {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.logistics-date {
  font-family: var(--f-head);
  font-size: 1.5rem;
  color: var(--gold-light);
  font-weight: 600;
}

.logistics-city {
  font-size: 1.1rem;
  color: var(--muted);
}

.logistics-vagas {
  font-size: .85rem;
  letter-spacing: 2px;
  color: #b22;
  font-weight: 600;
}

/* logistics-right e sched-block removidos conforme solicitado */

.logistics-sched-title {
  font-family: var(--f-head);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--pearl);
  margin-bottom: .25rem;
}

.sched-block {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.sched-day {
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

.sched-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.sched-list li {
  font-size: 1rem;
  color: var(--muted);
}

.sched-time {
  color: var(--pearl);
  font-weight: 500;
}

/* ════════════════════════════════════════════════
   RODAPÉ
   ════════════════════════════════════════════════ */
.site-footer {
  background: #040202;
  border-top: 1px solid rgba(255, 255, 255, .04);
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 5;
}

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

.footer-rights {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: 1px;
  opacity: .55;
  transition: opacity .3s, color .3s;
}

.footer-rights:hover {
  opacity: 1;
  color: var(--gold-mid);
}

.footer-dev {
  font-size: .65rem;
  color: var(--muted);
  opacity: .3;
  letter-spacing: 1px;
  transition: opacity .3s, color .3s;
}

.footer-dev:hover {
  opacity: .75;
  color: var(--gold-dark);
}

/* ════════════════════════════════════════════════
   BOTÃO VOLTAR AO TOPO
   ════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 13, 11, .85);
  border: 1px solid rgba(212, 175, 102, .35);
  color: var(--gold-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .4s var(--ease-out), visibility .4s, transform .4s var(--ease-out), border-color .3s, background .3s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(212, 175, 102, .15);
  border-color: var(--gold-mid);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
  }
}

/* ════════════════════════════════════════════════
   PLACEHOLDER INTERNO (GENÉRICO)
   ════════════════════════════════════════════════ */
.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════
   ACESSIBILIDADE — Prefers Reduced Motion
   ════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ════════════════════════════════════════════════
   RESPONSIVIDADE
   ════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero-container {
    padding: 5rem 3rem;
  }

  .masonry-glass {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .glass-item.tall {
    grid-row: auto;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    padding: 4rem 2rem;
  }

  .sec-pain {
    flex-direction: column;
  }

  .pain-img-col,
  .pain-content-col {
    flex: 1 1 100%;
  }

  .pain-content-col {
    padding: 3.5rem 2rem;
  }

  .pain-img-col {
    min-height: 300px;
  }

  .pain-img-overlay {
    background: linear-gradient(to bottom, transparent, var(--bg) 90%);
  }

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

  .offset-up,
  .offset-down {
    margin-top: 0;
  }

  .speaker-card {
    flex-direction: column;
    position: static;
    min-height: auto;
  }

  .speaker-img-col {
    min-height: 300px;
  }

  .speaker-info-col {
    padding: 3rem 2rem;
  }

  .speaker-name {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .sec-logistics {
    flex-direction: column;
  }

  .logistics-left,
  .logistics-right {
    flex: 1 1 100%;
    padding: 3.5rem 2rem;
  }

  .logistics-left {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 102, .12);
  }
}

@media (max-width: 768px) {

  /* Centralização total solicitada via mobile em todas seções */
  body,
  .promise-header,
  .sec-title,
  .sec-desc,
  .pain-content-col,
  .forwhom-container,
  .offer-header,
  .speaker-info-col,
  .logistics-left,
  .logistics-right,
  .speakers-header {
    text-align: center;
  }

  .hero-content,
  .pain-content-col,
  .speaker-info-col,
  .logistics-left,
  .logistics-right,
  .forwhom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Compactação de todas as seções */
  .sec-promise,
  .sec-scarcity,
  .sec-forwhom,
  .sec-offer,
  .sec-urgency,
  .sec-faq,
  .sec-sponsors {
    padding: 3.5rem 1.5rem;
  }

  .sec-pain,
  .sec-about,
  .sec-speakers {
    padding: 3.5rem 0;
  }

  .sec-logistics {
    padding: 0;
  }

  .speakers-header {
    padding: 2rem 1.5rem;
  }

  /* Hero mobile: layout ajustado para caber em 100vh */
  .hero-luxury {
    background-image: none;
    min-height: calc(100svh - 50px);
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    background-image: url('images/banner_mobile-1.webp?v=1.0.19');
    background-size: cover;
    background-position: center top;
    z-index: 0;
  }

  .hero-luxury::before {
    display: block;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
  }

  .hero-img-mobile {
    display: none;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem 3rem;
    align-items: center;
    min-height: calc(100svh - 50px);
    justify-content: flex-start;
    /* Posição fixa em relação ao topo para evitar movimento ao alterar altura do site */
    padding-top: 380px; 
    position: relative;
    z-index: 2;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 1rem 0 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-bottom: 2vh;
  }

  /* No mobile, o degradê inicia transparente em cima e escurece na base do conteúdo */
  .hero-luxury::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  }

  .hero-right-col {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Behind text */
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
    height: 100%;
  }

  .evento-img {
    position: absolute;
    top: 15%;
    /* Bem mais acima */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-width: 0;
    height: auto;
    max-width: none;
    opacity: 0.85;
    margin: 0;
  }

  .palestrantes-strip-wrapper {
    position: absolute;
    top: 6%;
    right: -8%;
    width: auto;
    transform: rotate(30deg);
    z-index: 15;
    pointer-events: auto;
  }

  /* Ajustes Hero Content Compacto */
  .hero-lots {
    max-width: 100%;
    margin: 1rem 0;
  }

  .progress-text {
    margin-top: 0.75rem;
    font-size: 0.7rem;
  }

  .btn-cta {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  /* Ajustes Listas */
  .tier-features,
  .sched-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .forwhom-list,
  .pain-list {
    align-items: flex-start;
    text-align: left;
  }

  .faq-q {
    text-align: left;
  }

  .topbar {
    font-size: 1.1rem;
    padding: 0.7rem;
  }

  .hero-headline {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    line-height: 1.1;
  }

  .hero-badges {
    flex-direction: row;
    /* Força em linha */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .hero-small-logo {
    height: 32px;
    /* Reduzido para caber melhor no mobile */
  }

  .badge-luxe {
    padding: 0.4rem 0.6rem;
    font-size: 0.6rem;
    white-space: nowrap;
    /* Evita quebra de linha nas datas */
  }

  .hero-sub {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
  }

  .hero-body {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }

  /* Ajustes para smartphones com tela curta (ex: iPhone SE, browsers com barra de busca embaixo) */
  @media (max-height: 720px) {
    .hero-headline {
      font-size: 1.45rem;
    }
    .hero-sub, .hero-body {
      font-size: 0.8rem;
      margin-bottom: 0.4rem;
    }
    .hero-badges {
      margin-bottom: 0.5rem;
    }
    .hero-content {
      margin-bottom: 1vh;
    }
    .evento-img {
      top: 12%; /* Sobe um pouco mais a logo para ganhar respiro */
    }
  }

  .broken-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bg-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
    margin-top: 0 !important;
    /* Neutraliza offsets de desktop */
  }

  .bg-num {
    left: 50%;
    transform: translateX(-50%);
  }

  .bg-card:hover .bg-num {
    transform: translate(-50%, -6px);
  }

  .masonry-glass {
    column-count: 1;
  }

  /* Ajustes Mentoras */
  .speaker-img {
    filter: grayscale(0%);
  }

  .speaker-kicker,
  .speaker-name,
  .speaker-bio {
    text-align: center;
  }

  /* Ajustes Ingressos */
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    overflow: visible;
    padding: 2.5rem 1.5rem;
  }

  .tier-price {
    align-items: center;
    text-align: center;
  }

  .tier-features li {
    justify-content: center;
    text-align: center;
    padding-left: 0;
  }

  .tier-features li::before {
    position: static;
    margin-right: 8px;
    flex-shrink: 0;
  }

  .urgency-inner {
    padding: 2.5rem 1.5rem;
  }

  .marquee-text {
    font-size: 2.5rem;
  }

  .about-header {
    padding: 0 1.5rem;
  }
}

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

  .sec-title {
    font-size: 1.8rem;
  }

  .logistics-left,
  .logistics-right {
    padding: 3rem 1.5rem;
  }
}
/* ════════════════════════════════════════════════
   LP2 — SEÇÕES EXCLUSIVAS
   ════════════════════════════════════════════════ */

/* ─── Hero LP2 ─── */
.lp2-headline {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
}

.lp2-hero-tagline {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--pearl);
  opacity: .85;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

/* ─── Seção 2: Problema ─── */
.sec-problem {
  padding: 11rem 2rem 8rem;
  background: var(--bg);
  position: relative;
  z-index: 5;
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.problem-statement {
  text-align: center;
}

.problem-scan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.scan-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: rgba(61, 0, 16, .5);
  border: 1px solid rgba(212, 175, 102, .15);
  border-top: 2px solid var(--gold-dark);
  border-radius: 12px;
  text-align: center;
  transition: transform .4s var(--ease-out), border-color .35s, background .35s;
}

.scan-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 102, .45);
  background: rgba(61, 0, 16, .8);
}

.scan-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(158, 122, 63, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scan-label {
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--pearl);
}

.problem-conclusion {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  border-top: 1px solid rgba(212, 175, 102, .1);
  border-bottom: 1px solid rgba(212, 175, 102, .1);
  padding: 2.5rem 2rem;
}

.problem-conclusion p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.problem-punchline {
  font-size: 1.25rem !important;
  color: var(--pearl) !important;
  font-family: var(--f-head);
  font-style: italic;
}

/* ─── Seção 3: Inimigo Comum ─── */
.sec-enemy {
  padding: 8rem 2rem;
  background: var(--bg-surface);
  position: relative;
  z-index: 5;
}

.enemy-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.enemy-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.enemy-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  margin-top: 1rem;
}

.enemy-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 480px;
}

.enemy-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
}

.enemy-item.bad {
  background: rgba(180, 0, 30, .1);
  border: 1px solid rgba(180, 0, 30, .25);
  color: var(--pearl);
}

.enemy-x {
  font-size: 1rem;
  font-weight: 700;
  color: #c0392b;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(192, 57, 43, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.enemy-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.enemy-result-intro {
  font-size: .85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

.enemy-result-text {
  font-family: var(--f-head);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--pearl);
}

/* ─── Seção 4: Transformação ─── */
.sec-transformation {
  padding: 9rem 2rem;
  background: var(--bg);
  position: relative;
  z-index: 5;
}

.transform-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.transform-lead {
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-top: 1rem;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
}

.transform-card {
  position: relative;
  padding-top: 2.5rem;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

/* Removido desalinhamento conforme solicitado para desktop */
.transform-card:nth-child(n) {
  margin-top: 0 !important;
}

@media (min-width: 1025px) {
  .transform-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Grid de 6 para facilitar centralização */
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
  }
  .transform-card:nth-child(1),
  .transform-card:nth-child(2),
  .transform-card:nth-child(3) {
    grid-column: span 2;
  }
  .transform-card:nth-child(4) {
    grid-column: 2 / span 2; /* Começa na segunda coluna virtual para centralizar */
  }
  .transform-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.transform-num {
  position: absolute;
  top: -1.75rem;
  left: 0;
  font-family: var(--f-head);
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 700;
  color: rgba(212, 175, 102, .22);
  line-height: 1;
  user-select: none;
  transition: color .35s, transform .35s var(--ease-out);
  z-index: 2;
}

.transform-card:hover .transform-num {
  color: rgba(212, 175, 102, .75);
  transform: translateY(-6px);
}

.transform-card:hover .card-border {
  background: var(--gold-mid);
}

.transform-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ─── Seção 5: Evento + Vídeo ─── */
.sec-event-video {
  background: var(--bg);
  position: relative;
  z-index: 5;
  padding: 9rem 2rem 4rem;
}

.event-header {
  text-align: center;
  margin-bottom: 4rem;
}

.event-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.event-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  padding: 2rem 1rem;
  border: 1px solid rgba(212, 175, 102, .15);
  border-radius: 10px;
  text-align: center;
  background: rgba(20, 10, 10, .4);
  font-size: .95rem;
  color: var(--muted);
  transition: border-color .35s, background .35s, transform .4s var(--ease-out);
}

.event-pillar:hover {
  border-color: rgba(212, 175, 102, .4);
  background: rgba(61, 0, 16, .5);
  transform: translateY(-4px);
}

.event-nota {
  text-align: center;
  font-size: 1.1rem;
  color: var(--pearl);
  opacity: .75;
  max-width: 500px;
  margin: 0 auto;
}

.video-lead {
  font-size: 1rem;
  color: var(--gold-mid);
  letter-spacing: .5px;
  margin-bottom: 2rem;
  font-style: italic;
  text-align: center;
  padding: 0 2rem;
}

/* ─── Seção 6: Público-alvo ─── */
.sec-audience {
  padding: 9rem 2rem;
  background: var(--bg-surface);
  position: relative;
  z-index: 5;
}

.audience-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto 4rem;
}

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

.audience-col-header {
  display: flex;
  justify-content: center;
}

.audience-badge {
  display: inline-block;
  padding: .5rem 2rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.yes-badge {
  background: rgba(158, 122, 63, .15);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 102, .3);
}

.no-badge {
  background: rgba(180, 0, 30, .1);
  color: #e05555;
  border: 1px solid rgba(180, 0, 30, .25);
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.audience-no-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: rgba(184, 176, 169, .7);
  text-decoration: line-through;
  text-decoration-color: rgba(180, 0, 30, .5);
}

.no-x {
  font-size: .85rem;
  font-weight: 700;
  color: #c0392b;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(192, 57, 43, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
}

.audience-cta-wrap {
  display: flex;
  justify-content: center;
}

/* ─── Seção 9: Provas Sociais (wrapper) ─── */
.sec-social-proof {
  background: var(--bg);
  position: relative;
  z-index: 5;
  padding-top: 8rem;
}

.social-proof-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

/* .sec-testimonials herdado da lp1 */

/* ─── Seção 11: Autoridade — lead específico ─── */
.lp2-authority-lead {
  font-size: 1.35rem !important;
  font-family: var(--f-head);
  font-weight: 400;
  font-style: italic;
  color: var(--pearl) !important;
  margin-bottom: 1.5rem !important;
}

/* ─── Seção 12: Experiência ─── */
.sec-experience {
  padding: 9rem 2rem;
  background: radial-gradient(circle at 50% 50%, rgba(158, 122, 63, .12) 0%, var(--bg) 65%);
  position: relative;
  z-index: 5;
}

.experience-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
}

.experience-item {
  font-family: var(--f-head);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-mid);
  padding: .85rem 0;
  border-bottom: 1px solid rgba(212, 175, 102, .12);
  transition: color .3s;
}

.experience-item:last-child {
  border-bottom: none;
}

.experience-punchline {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Seção 15: CTA Final ─── */
.sec-final-cta {
  padding: 9rem 2rem;
  background: linear-gradient(135deg, #0d0002, #200006);
  border-top: 1px solid rgba(212, 175, 102, .1);
  position: relative;
  z-index: 5;
}

.final-cta-inner {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.final-cta-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.choice-option {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 500px;
}

.choice-bad {
  color: var(--muted);
  font-style: italic;
}

.choice-good {
  color: var(--pearl);
  font-weight: 500;
}

.choice-divider {
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-dark);
  opacity: .7;
}

.final-cta-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.final-info-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--muted);
  letter-spacing: .5px;
}

/* ─── Responsividade LP2 ─── */
@media (max-width: 1024px) {
  .problem-scan-grid,
  .event-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .transform-card:nth-child(2),
  .transform-card:nth-child(3),
  .transform-card:nth-child(5) {
    margin-top: 0;
  }

  .audience-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .lp2-headline {
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .lp2-hero-tagline {
    font-size: .9rem;
  }

  .sec-problem {
    padding: 11rem 1.5rem 5rem;
  }

  .problem-scan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .scan-item {
    padding: 1.5rem 1rem;
  }

  .transform-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .transform-num {
    left: 50%;
    transform: translateX(-50%);
  }

  .transform-card:hover .transform-num {
    transform: translate(-50%, -6px);
  }

  .event-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .audience-split {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .audience-col {
    align-items: center;
    text-align: center;
  }

  .audience-list {
    text-align: left;
    align-self: center;
    width: fit-content;
  }

  .faq-a p {
    text-align: left;
  }

  .sec-experience,
  .sec-enemy,
  .sec-transformation,
  .sec-audience,
  .sec-social-proof,
  .sec-event-video,
  .sec-final-cta {
    padding: 4rem 1.5rem;
  }

  .experience-item {
    font-size: 1.4rem;
  }

  .final-cta-info {
    flex-direction: column;
    gap: 1rem;
  }

  .enemy-list {
    max-width: 100%;
  }

  .sec-social-proof {
    padding-top: 4rem;
    padding-bottom: 0;
  }
}
