/* ============================================================
   ENUPERS 2026 — SEÇÕES
   Arquitetura inspirada em landing pages de evento nacional
   premium (estrutura, densidade, ritmo), 100% identidade Avantar.
============================================================ */

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 20px) 0 24px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black-purple);
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 48%, rgba(8, 0, 20, 0.4), transparent 70%),
    linear-gradient(180deg,
      rgba(8, 0, 20, 0.82) 0%,
      rgba(8, 0, 20, 0.72) 45%,
      rgba(8, 0, 20, 0.92) 100%);
}

.hero-scroll-text {
  max-width: 620px;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--white-soft);
}

/* ---------- Hero simplificado: coluna única, texto centralizado sobre o vídeo ---------- */
.hero-content-simple {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  max-width: 720px;
  margin-inline: auto;
}

.hero-date-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white-soft);
}

.hero-date-location svg {
  color: var(--orange-light);
  flex-shrink: 0;
}

.hero-title {
  line-height: 0.98;
}

.hero-title-top {
  display: block;
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--orange-light);
  margin-bottom: 10px;
}

.star-accent {
  display: inline-block;
  margin-left: 10px;
  color: var(--white);
  animation: star-twinkle 2.6s ease-in-out infinite;
}

@keyframes star-twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.82); }
}

.hero-title-main {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 32px rgba(8, 0, 20, 0.6);
}

.hero-title-compact .hero-title-main {
  font-size: clamp(1.7rem, 4.2vw, 2.9rem);
}

.hero-title-main em {
  color: var(--orange-light);
  text-shadow: 0 0 42px var(--orange-glow);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

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

/* ============================================================
   FAIXA DE URGÊNCIA (marquee) — seção própria
============================================================ */
/* Ticker de urgência: faixa fina, não é uma "dobra" de tela cheia */
.section-marquee {
  min-height: 0;
  padding: 0;
}

/* ============================================================
   NÚMEROS DE PROVA
============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Números de prova: conteúdo curto, não precisa ocupar a tela inteira */
.proof-numbers {
  min-height: 0;
  padding: 32px 0;
}

/* ============================================================
   PROPOSTA DE VALOR (assimétrico)
============================================================ */
.value-prop-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.value-prop-text {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

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

.value-prop-closing {
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--white-soft);
  padding-top: 14px;
  border-top: 1px dashed var(--lilac-border);
}

.value-chips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-chip {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 22px 20px 20px;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.value-chip:hover {
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.value-chip-icon {
  width: 28px;
  height: 28px;
  color: var(--orange-light);
  margin-bottom: 14px;
}

.value-chip p {
  font-size: 0.9rem;
  color: var(--white-soft);
}

.value-chip strong {
  color: var(--white);
}

.value-chip strong.txt-orange {
  color: var(--orange-light);
}

/* ============================================================
   PARA QUEM É (credenciais)
============================================================ */
.paraquem {
  position: relative;
  overflow: hidden;
}

.paraquem-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.paraquem-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.paraquem-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(244, 244, 247, 0.6) 0%,
    rgba(244, 244, 247, 0.18) 22%,
    rgba(244, 244, 247, 0.18) 78%,
    rgba(244, 244, 247, 0.6) 100%);
}

.paraquem .section-head {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  padding: 24px 32px;
  box-shadow: 0 16px 40px rgba(8, 0, 20, 0.12);
}

.paraquem > .container {
  position: relative;
  z-index: 2;
}

.pass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pass-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-medium);
  border-radius: 20px;
  padding: 30px 20px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30, 27, 38, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pass-card:hover {
  transform: translateY(-5px);
  border-color: var(--purple-main);
  box-shadow: 0 18px 44px rgba(91, 17, 214, 0.14);
}

.pass-lanyard {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 16px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(100deg, var(--purple-main), var(--purple-vibrant));
}

.pass-lanyard::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--orange-light);
  background: var(--white);
}

.pass-card p {
  font-size: 0.92rem;
  color: rgba(30, 27, 38, 0.78);
  margin-top: 8px;
}

.pass-card strong {
  color: var(--text-dark);
}

/* ============================================================
   INGRESSOS — CARD PREMIUM
============================================================ */
.tickets {
  overflow: hidden;
}

.tickets-glow {
  position: absolute;
  width: 800px;
  height: 520px;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(242, 137, 7, 0.14), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.ticket-premium-wrap {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

/* Duas colunas: preço/countdown/CTA à esquerda, benefícios à direita —
   evita empilhar tudo verticalmente e estourar a altura da tela. */
.ticket-premium {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0 44px;
  background: linear-gradient(135deg, rgba(91, 17, 214, 0.92), rgba(8, 0, 20, 0.98));
  border: 1px solid rgba(242, 137, 7, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--glow-orange-lg), 0 30px 90px rgba(8, 0, 20, 0.55);
  padding: 30px 44px;
  text-align: left;
}

.ticket-premium-main {
  display: flex;
  flex-direction: column;
}

.ticket-premium-details {
  display: flex;
  flex-direction: column;
  padding-left: 44px;
  border-left: 1px dashed rgba(255, 255, 255, 0.18);
  justify-content: center;
}

.ticket-premium-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--purple-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  margin-bottom: 12px;
}

.ticket-premium-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ticket-premium-price-prefix {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--white-soft);
  margin-bottom: 4px;
}

.ticket-premium-price-main {
  font-size: clamp(1.9rem, 4.6vw, 2.7rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.ticket-asterisk {
  font-size: 1.2rem;
  color: var(--white-dim);
  margin-left: 2px;
}

.ticket-premium-price-sub {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--white-soft);
}

.ticket-premium-price-sub strong {
  color: var(--white);
}

.ticket-premium-strike {
  margin-left: 8px;
  color: var(--white-dim);
  text-decoration: line-through;
  font-size: 0.85rem;
}

.ticket-save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 178, 26, 0.14);
  border: 1px dashed rgba(255, 178, 26, 0.55);
  color: var(--orange-light);
  font-size: 0.76rem;
  padding: 5px 14px;
  border-radius: var(--radius-btn);
  margin-top: 10px;
}

.ticket-premium-countdown {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.ticket-premium-countdown .countdown-label {
  margin-bottom: 8px;
}

.ticket-premium-countdown .countdown-horizontal {
  gap: 8px;
}

.ticket-premium-countdown .countdown-horizontal .countdown-unit {
  min-width: 0;
  flex: 1;
  padding: 8px 6px 6px;
}

.ticket-premium-countdown .countdown-horizontal .countdown-value {
  font-size: 1.3rem;
}

.ticket-premium-main > .btn {
  margin-top: 20px;
}

.ticket-premium-status {
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-light);
}

/* Bloco de bônus destacado dentro do card de ingresso */
.ticket-bonus-block {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(242, 137, 7, 0.16), rgba(255, 178, 26, 0.06));
  border: 1px solid rgba(255, 178, 26, 0.4);
  text-align: left;
}

.ticket-bonus-flag {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--orange-light);
  margin-bottom: 3px;
}

.ticket-bonus-text {
  font-size: 0.74rem;
  color: var(--white-soft);
  line-height: 1.3;
}

.ticket-bonus-text a {
  color: var(--orange-light);
  font-weight: 700;
  text-decoration: underline;
}

.ticket-premium-included-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  margin-bottom: 10px;
}

.ticket-included-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.ticket-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--white-soft);
  line-height: 1.3;
}

.ticket-included-text {
  flex: 1;
  min-width: 0;
}

.ticket-included-list strong {
  color: var(--white);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--orange), var(--orange-light));
  color: var(--purple-deep);
  flex-shrink: 0;
  margin-top: 1px;
}

.ticket-decor-credencial {
  display: none;
  position: absolute;
  top: 8%;
  right: -190px;
  width: 220px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(8, 0, 20, 0.6);
  transform: rotate(6deg);
}

.lote-note {
  max-width: 720px;
  margin: 12px auto 0;
  text-align: center;
  font-size: 0.7rem;
  color: var(--white-dim);
}

/* ============================================================
   KIT CRESCIMENTO 2027
============================================================ */
.eyebrow-dark {
  color: var(--purple-main);
}

.kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.kit-list {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.kit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-medium);
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
}

.kit-check {
  color: var(--orange);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.kit-closing {
  margin-top: 12px;
  font-size: 0.95rem;
  color: rgba(30, 27, 38, 0.75);
}

.kit-closing strong {
  color: var(--purple-main);
}

.kit-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.kit-gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(8, 0, 20, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kit-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8, 0, 20, 0.26);
}

.kit-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   PROGRAMAÇÃO — TABS
============================================================ */
.day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.day-label {
  display: inline-block;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--purple-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: var(--radius-btn);
  margin-bottom: 14px;
}

.day-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 22px 24px 22px;
}

.day-theme {
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--lilac-border);
}

.day-body p {
  font-size: 0.95rem;
  color: var(--white-soft);
  margin-bottom: 14px;
}

.day-body strong {
  color: var(--white);
}

.day-punchline {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--lilac-border);
  font-size: 0.95rem;
  color: var(--white-dim);
}

.day-punchline strong {
  color: var(--white);
}

.rock-night-feature {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(120deg, rgba(242, 137, 7, 0.16), rgba(255, 178, 26, 0.08));
  border: 1px solid rgba(255, 178, 26, 0.4);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.rock-night-flag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  color: var(--orange-light);
  margin-bottom: 10px;
}

.rock-night-feature-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.rock-night-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.rock-night-text {
  font-size: 0.95rem;
  color: var(--white-soft);
}

.venue-carousel.rock-night-carousel {
  max-width: 100%;
  aspect-ratio: 3 / 2;
  margin-left: 0;
}

/* ============================================================
   PALESTRANTES CONFIRMADOS
============================================================ */
.speaker-featured-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--orange);
  color: var(--purple-deep);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  border-radius: var(--radius-btn);
  margin-bottom: 2px;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.speaker-card:hover {
  transform: translateY(-6px);
}

.speaker-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, var(--purple-dark), var(--black-purple));
}

.speaker-category {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--orange);
  color: var(--purple-deep);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: var(--radius-btn);
}

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

.speaker-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    radial-gradient(ellipse 65% 55% at 50% 32%, rgba(123, 31, 255, 0.3), transparent 70%),
    linear-gradient(160deg, var(--purple-dark), var(--black-purple));
  border-bottom: 1px solid var(--lilac-border);
}

.speaker-photo-star {
  font-size: 1.6rem;
  color: var(--orange-light);
  text-shadow: 0 0 28px var(--orange-glow);
}

.speaker-photo-label {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--white-dim);
}

.speaker-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 16px;
}

.speaker-name {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.speaker-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-light);
}

.speaker-bio {
  font-size: 0.76rem;
  color: var(--white-soft);
  margin-top: 2px;
  line-height: 1.3;
}

.speaker-bio strong {
  color: var(--white);
}

.speakers-more {
  text-align: center;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ============================================================
   GALERIA / VÍDEOS (mosaico)
============================================================ */
/* Vídeo principal e vídeos curtos lado a lado, para caber numa tela */
.video-gallery-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.video-main-wrap {
  width: 100%;
  max-width: 400px;
  margin: 0;
}

.video-main-wrap-solo {
  max-width: 720px;
}

.video-main-caption {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--purple-dark);
  border: 1px solid var(--purple-border);
  box-shadow: 0 20px 48px rgba(8, 0, 20, 0.5);
}

.video-frame-main {
  aspect-ratio: 16 / 9;
}

.video-frame-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(123, 31, 255, 0.25), transparent 70%),
    linear-gradient(160deg, var(--purple-dark), var(--black-purple));
}

.video-placeholder-yt {
  background-image:
    linear-gradient(rgba(8, 0, 20, 0.4), rgba(8, 0, 20, 0.6)),
    var(--yt-thumb);
  background-size: cover;
  background-position: center;
}

.video-placeholder-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  max-width: 240px;
}

.video-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--orange), var(--orange-light));
  color: var(--purple-deep);
  box-shadow: 0 0 0 8px rgba(242, 137, 7, 0.18), 0 12px 32px rgba(8, 0, 20, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-play:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 14px rgba(242, 137, 7, 0.22), 0 16px 40px rgba(8, 0, 20, 0.55);
}

.video-play svg {
  margin-left: 3px;
}

/* ============================================================
   LOCAL E LOGÍSTICA
============================================================ */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.venue-info-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.venue-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-medium);
  border-radius: 12px;
  padding: 8px 14px;
}

.venue-icon {
  width: 18px;
  height: 18px;
  color: var(--purple-main);
  flex-shrink: 0;
  margin-top: 2px;
}

.venue-info-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dark);
  margin-bottom: 1px;
}

.venue-info-item p {
  font-size: 0.76rem;
  color: rgba(30, 27, 38, 0.68);
}

.venue-map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple-main);
  text-decoration: underline;
}

.venue-info-featured {
  background: linear-gradient(120deg, rgba(242, 137, 7, 0.1), rgba(255, 178, 26, 0.05));
  border: 1px solid rgba(242, 137, 7, 0.5);
  padding: 14px 16px 16px;
}

.venue-hosting-highlight {
  color: var(--orange) !important;
  font-weight: 700;
  margin-top: 4px;
}

.venue-hosting-btn {
  margin-top: 10px;
}

.venue-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-left: auto;
  box-shadow: 0 24px 60px rgba(8, 0, 20, 0.18);
}

.venue-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.venue-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.venue-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-carousel-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(123, 31, 255, 0.3), transparent 70%),
    linear-gradient(160deg, var(--purple-dark), var(--black-purple));
  border: 1px solid var(--glass-border);
}

.venue-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(8, 0, 20, 0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.venue-carousel-arrow:hover {
  background: rgba(8, 0, 20, 0.8);
}

.venue-carousel-prev {
  left: 14px;
}

.venue-carousel-next {
  right: 14px;
}

.venue-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.venue-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, width 0.2s ease;
}

.venue-carousel-dot.is-active {
  width: 22px;
  background: var(--orange-light);
}

.venue-map-pin {
  font-size: 2.6rem;
  color: var(--orange-light);
  text-shadow: 0 0 32px var(--orange-glow);
}

.venue-map-label {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--white);
}

.venue-map-sublabel {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white-dim);
}

/* ============================================================
   PARCEIROS
============================================================ */
/* Parede de logos: conteúdo curto, não precisa de padding generoso */
.partners {
  padding: 32px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 116px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 16px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(8, 0, 20, 0.28);
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================================
   FAQ
============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.faq-title {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  margin-bottom: 0;
}

.faq {
  padding-bottom: 36px;
}

/* ============================================================
   CTA FINAL
============================================================ */
.final {
  padding: 28px 0;
  overflow: hidden;
}

.final-media {
  position: absolute;
  inset: 0;
}

.final-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-main) 100%);
}

.final-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(242, 137, 7, 0.28), transparent 45%),
    rgba(8, 0, 20, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.final-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 820px;
}

.final-impact {
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  font-weight: 800;
  line-height: 1.35;
}

.final-impact em {
  color: var(--orange-light);
}

.final-price-prefix {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  color: var(--white-soft);
  margin-bottom: 4px;
}

.final-price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.final-price-value {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--orange-light);
  text-shadow: 0 0 44px var(--orange-glow);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.final-price-per {
  font-size: 1rem;
  color: var(--white-soft);
}

.final-price-installments {
  font-size: 0.95rem;
  color: var(--white-soft);
  margin-top: 6px;
}

.final-price-installments strong {
  color: var(--white);
}

.final-price-after {
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-top: 6px;
}

.final-tagline {
  font-size: 1.05rem;
  color: var(--white-soft);
  max-width: 560px;
}

.final-note {
  font-size: 0.75rem;
  color: var(--white-dim);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--black-purple);
  border-top: 1px solid var(--lilac-border);
  padding: 36px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lilac-border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.footer-logo-avantar {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  color: var(--white);
}

.footer-logo-enupers {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.footer-logo-enupers em {
  color: var(--orange-light);
  margin-left: 5px;
}

.footer-institutional {
  font-size: 0.85rem;
  color: var(--white-dim);
  max-width: 380px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white-soft);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
  border-color: var(--orange-light);
  color: var(--orange-light);
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 6px;
}

.footer-links a, .footer-contact a {
  font-size: 0.9rem;
  color: var(--white-soft);
  transition: color 0.2s ease;
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--white-dim);
}
