/* ════════════════════════════════════════════
   INFLUENCY.ME EXPERIENCE 2026
   Arquivo: css/style.css
   ════════════════════════════════════════════ */

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

:root {
  /* Paleta Influency.me Experience */
  --purple:       #5B4FBE;
  --purple-dark:  #3D3490;
  --purple-light: #7B6FDE;
  --purple-glow:  rgba(91, 79, 190, 0.45);
  --gold:         #E8620A;
  --gold-light:   #FF7D2E;
  --gold-glow:    rgba(232, 98, 10, 0.35);
  --dark:         #0A0A12;
  --dark-2:       #12121F;
  --dark-3:       #1A1A2E;
  --dark-card:    #16162A;
  --white:        #FFFFFF;
  --white-muted:  rgba(255,255,255,0.70);
  --white-faint:  rgba(255,255,255,0.12);

  /* Typography */
  --font-title:   'Ubuntu', sans-serif;
  --font-body:    'Roboto', sans-serif;

  /* Layout */
  --max-w:        1280px;
  --nav-h:        72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── Utility ────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--purple-glow);
  color: var(--purple-light);
  border: 1px solid var(--purple);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section-tag.gold {
  background: var(--gold-glow);
  color: var(--gold-light);
  border-color: var(--gold);
}

/* ════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s ease;
}

.navbar.visible {
  transform: translateY(0);
  background: rgba(8, 8, 16, 0.96);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(91, 79, 190, 0.25);
  box-shadow: 0 1px 0 rgba(91,79,190,0.15), 0 8px 40px rgba(0,0,0,0.6);
}

.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-xp {
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  padding: 5px 9px;
  border-radius: 8px;
  letter-spacing: 0.05em;
}

.logo-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--white-muted);
  line-height: 1.2;
}

.logo-text strong {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
}

/* Data */
.nav-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(91,79,190,0.35);
  border-radius: 100px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.nav-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.15);
  margin-left: 2px;
}

.nav-location i {
  color: #e8620a;
  font-size: 0.7rem;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2px;
  margin-left: auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 5px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  white-space: normal;
  text-align: left;
  line-height: 1.25;
}

.nav-links a i {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 2px; /* alinha ícone com primeira linha do texto */
  flex-shrink: 0;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-links a:hover i {
  opacity: 1;
  transform: scale(1.15);
}

/* Link ativo no menu */
.nav-links a.active {
  color: #fff;
  background: rgba(232,98,10,0.18);
  font-weight: 700;
  border: 1px solid rgba(232,98,10,0.3);
}
.nav-links a.active i {
  color: var(--gold);
  opacity: 1;
}

/* CTA button */
.btn-nav-cta {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold) 0%, #FF7D2E 100%);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: filter 0.25s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(232,98,10,0.35);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-nav-cta:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,98,10,0.45);
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(8,8,16,0.98);
  padding: 12px 20px 24px;
  border-top: 1px solid rgba(91,79,190,0.2);
  gap: 4px;
}

.nav-mobile-menu a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.nav-mobile-menu a i {
  width: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.nav-mobile-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-mobile-menu a:hover i { color: var(--gold); }

.nav-mobile-menu a.active {
  color: #fff;
  background: rgba(232,98,10,0.12);
  font-weight: 700;
  border: 1px solid rgba(232,98,10,0.2);
}
.nav-mobile-menu a.active i { color: var(--gold); }

.btn-mobile-cta {
  margin-top: 8px !important;
  background: linear-gradient(135deg, var(--gold) 0%, #FF7D2E 100%) !important;
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 10px !important;
  border: none !important;
  font-weight: 700;
  justify-content: center !important;
  box-shadow: 0 4px 16px rgba(232,98,10,0.3);
}

.nav-mobile-menu.open { display: flex; }

@media (max-width: 900px) {
  .nav-links, .btn-nav-cta, .nav-date { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Vídeo wrapper — cobre 100% */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-wrapper iframe {
  position: absolute;
  /* Força o iframe a cobrir tudo mantendo proporção 16:9 */
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vh * 16 / 9);
  min-width: 100%;
  height: calc(100vw * 9 / 16);
  min-height: 100%;
  border: none;
}

/* Overlay em gradiente */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(10,10,18,0.82) 0%,
      rgba(20,15,50,0.65) 50%,
      rgba(10,10,18,0.50) 100%
    );
  z-index: 1;
}

/* Conteúdo hero */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

/* Logo do evento */
.hero-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-logo-xp {
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.4rem;
  padding: 8px 12px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 30px var(--purple-glow);
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hero-logo-brand {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--white-muted);
  letter-spacing: 0.08em;
}

.hero-logo-event {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.hero-logo-year {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--purple-light);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

/* Título principal */
.hero-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 820px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

/* Subtítulo */
.hero-subtitle {
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-subtitle p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

.hero-subtitle strong {
  color: var(--white);
  font-weight: 600;
}

/* Botões CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: var(--purple);
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 30px var(--purple-glow);
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--purple-light);
  box-shadow: 0 8px 40px rgba(91,79,190,0.7);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.55);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Scroll hint */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.hero-scroll-hint span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.hero-scroll-hint i {
  font-size: 0.85rem;
  color: var(--purple-light);
  animation: bounceDown 1.6s infinite;
}

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

@media (max-width: 600px) {
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: clamp(1.5rem, 5.8vw, 2rem); }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}

/* ════════════════════════════════════════════
   SEÇÃO 2 — MOTIVOS PARA PARTICIPAR
   ════════════════════════════════════════════ */
.reasons-section {
  background: var(--dark-2);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.reasons-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,79,190,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.reasons-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 24px;
}

.reasons-header h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  letter-spacing: -0.02em;
}

.winners-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Carrossel wrapper */
.reasons-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 56px;
  max-width: 1400px;
  margin: 0 auto;
}

.reasons-track-container {
  flex: 1;
  overflow: hidden;
}

.reasons-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card de motivo */
.reason-card {
  flex: 0 0 calc((100% - 72px) / 3);
  min-width: 300px;
  background: var(--dark-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(91,79,190,0.3);
}

.reason-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.reason-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.reason-card:hover .reason-card-img img {
  transform: scale(1.06);
}

.reason-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(22,22,42,0.95) 100%
  );
}

.reason-card-content {
  padding: 28px 28px 32px;
}

.reason-number {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  opacity: 0.8;
}

.reason-stat {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin: 8px 0 4px;
  letter-spacing: -0.02em;
}

.reason-label {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 14px;
}

.reason-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.reason-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(91,79,190,0.12);
  border: 1px solid rgba(91,79,190,0.25);
  padding: 6px 14px;
  border-radius: 100px;
}

/* Botões de navegação (carousel) */
.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(91,79,190,0.45);
  background: rgba(22,22,42,0.85);
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
  z-index: 5;
}

.carousel-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 0 20px var(--purple-glow);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.dot.active {
  background: var(--purple-light);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .reason-card { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 640px) {
  .reasons-carousel-wrapper { padding: 0 16px; }
  .reason-card { flex: 0 0 85vw; }
  .carousel-btn { width: 38px; height: 38px; }
}

/* ════════════════════════════════════════════
   SEÇÃO — PATROCINADORES MARQUEE
   ════════════════════════════════════════════ */

.sponsors-marquee-section {
  background: #0d0010;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Brilho de fundo sutil — tom mais roxo/violeta para diferenciar */
.sponsors-marquee-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(120, 40, 180, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Linha divisória sutil no topo */
.sponsors-marquee-section::after {
  content: '';
  position: absolute;
  top: 0; left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.sponsors-marquee-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 48px;
}

.sponsors-marquee-header h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* Wrapper da faixa — oculta o overflow para o loop ser limpo */
.marquee-track-wrapper {
  overflow: hidden;
  width: 100%;
  /* fade nas bordas esquerda e direita */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* Faixa que se move — largura = 2× o conjunto de cards */
.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Card do marquee — mesma altura dos cards estáticos (100px) */
.marquee-card {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  background: #1a0018;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
}

.marquee-card img {
  max-height: 72px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.8;
}

/* Responsivo — cards um pouco menores em mobile */
@media (max-width: 768px) {
  .sponsors-marquee-header { padding: 0 20px; }
  .marquee-card { width: 160px; height: 84px; padding: 16px 18px; }
  .marquee-card img { max-height: 58px; max-width: 130px; }
  .marquee-track { gap: 14px; animation-duration: 30s; }
}

/* ════════════════════════════════════════════
   SEÇÃO 4 — PRÊMIO INFLUENCY.ME
   ════════════════════════════════════════════ */
.premio-section {
  background: var(--dark);
  padding: 110px 0 40px;
  position: relative;
  overflow: hidden;
}

/* Efeitos de fundo */
.premio-bg-effects { position: absolute; inset: 0; pointer-events: none; }

.sparkle {
  position: absolute;
  border-radius: 50%;
  animation: sparkleAnim 4s infinite;
}

.sparkle.s1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,98,10,0.08) 0%, transparent 70%);
  top: -50px; right: 10%;
  animation-delay: 0s;
}
.sparkle.s2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(91,79,190,0.12) 0%, transparent 70%);
  top: 40%; left: 5%;
  animation-delay: 1s;
}
.sparkle.s3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,98,10,0.06) 0%, transparent 70%);
  bottom: 0; right: 20%;
  animation-delay: 2s;
}
.sparkle.s4 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(91,79,190,0.1) 0%, transparent 70%);
  top: 20%; right: 5%;
  animation-delay: 3s;
}

@keyframes sparkleAnim {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

/* Intro: texto + carrossel de fotos */
.premio-intro {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;  /* foto ocupa mais espaço */
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  margin-top: 100px;
}

/* Linha divisória suave entre o carrossel e o bloco do Oscar */
.premio-section-divider {
  max-width: 800px;
  margin: 80px auto 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(91, 79, 190, 0.4) 30%,
    rgba(232, 98, 10, 0.3) 70%,
    transparent 100%
  );
}

.premio-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.premio-title em {
  font-style: normal;
  color: var(--gold-light);
}

.premio-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.premio-desc strong { color: var(--white); font-weight: 600; }

/* Badges */
.premio-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(232,98,10,0.1);
  border: 1px solid rgba(232,98,10,0.3);
  padding: 8px 16px;
  border-radius: 100px;
}

/* Carrossel de fotos */
.premio-photo-carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(232,98,10,0.2);
}

.photo-slides { position: relative; width: 100%; height: 100%; }

.photo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.photo-slide.active { opacity: 1; }

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

.photo-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

/* Controles do carrossel de fotos */
.photo-carousel-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.photo-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(232,98,10,0.45);
  background: rgba(0,0,0,0.55);
  color: var(--gold-light);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.photo-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.photo-dots { display: flex; gap: 5px; align-items: center; }

.photo-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.photo-dots .dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* Divider */
.premio-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto 56px;
  padding: 0 48px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,98,10,0.4), transparent);
}

.divider-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── Carrossel de vencedores — dual-row ─────────────── */
.winners-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center; /* centraliza setas verticalmente em relação às 2 linhas */
  padding: 0 56px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Container que envolve as duas linhas */
.winners-dual-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

/* Cada linha tem seu próprio overflow oculto */
.winners-row-overflow {
  overflow: hidden;
}

/* Faixa horizontal de cards — animada via transform */
.winners-row {
  display: flex;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Placeholder card (sem foto ainda) */
.winner-card-ph .winner-cutout-ph {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
}

/* Legacy — mantido para não quebrar outros usos */
.winners-track-container {
  flex: 1;
  overflow: hidden;
}

.winners-track {
  display: flex;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Winner card */
.winner-card {
  flex: 0 0 180px;
  min-width: 160px;
  background: var(--dark-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.winner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,98,10,0.25);
}

.winner-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.winner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.winner-card:hover .winner-img-wrap img { transform: scale(1.08); }

.winner-badge {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--white);
  box-shadow: 0 3px 12px rgba(0,0,0,0.4);
}

.winner-badge.gold {
  background: var(--gold);
  color: var(--dark);
}

.winner-info {
  padding: 14px 14px 16px;
}

.winner-name {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-category {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--gold-light);
  opacity: 0.85;
  line-height: 1.3;
}

/* ─── Winner Card V2 — cut-out com fundo gradiente ── */
.winner-card-v2 {
  position: relative;
  flex: 0 0 calc((100% - 80px) / 5);
  min-width: 180px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(91, 79, 190, 0.25);
  transition: transform 0.35s, box-shadow 0.35s;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #120f2a;
  isolation: isolate;
}

.winner-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.65),
              0 0 0 1px rgba(232,98,10,0.3),
              0 0 40px rgba(91,79,190,0.2);
}

/* Fundo com gradiente da paleta */
.winner-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #1a1535 0%,
    #231d4f 35%,
    #2a1f5c 65%,
    #120f2a 100%
  );
  z-index: 0;
}

/* Brilho de profundidade no fundo */
.winner-card-bg::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 55%;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(91, 79, 190, 0.35) 0%,
    transparent 70%
  );
}

/* Imagem "cut-out" — ocupa todo o card, alinhada ao centro-baixo */
.winner-cutout {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.winner-cutout img {
  height: 96%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  transition: transform 0.5s ease;
  filter: contrast(1.05) saturate(1.1);
}


.winner-card-v2:hover .winner-cutout img {
  transform: scale(1.04) translateY(-4px);
}

/* Gradiente escuro na base — z-index acima do cutout, abaixo das infos */
.winner-card-v2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(15, 10, 35, 0.97) 0%,
    rgba(15, 10, 35, 0.8) 35%,
    transparent 100%
  );
  z-index: 4;
  pointer-events: none;
}

/* Informações sobrepostas na base */
.winner-overlay-info {
  position: relative;
  z-index: 5;
  padding: 0 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.winner-badge-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  box-shadow: 0 3px 12px rgba(232,98,10,0.4);
  margin-bottom: 6px;
}

.winner-name-v2 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  line-height: 1.2;
}

.winner-category-v2 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-light);
  opacity: 0.9;
  line-height: 1.3;
}

/* Linha de redes sociais nos cards de criador */
.winner-social-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
}

.winner-social-row i {
  font-size: 0.75rem;
  color: var(--gold-light);
}

.winner-social-row span {
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  margin-left: 2px;
}

/* Logo de marca no card — branca por padrão, cor original no hover */
.winner-brand-logo {
  display: block;
  height: 22px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.winner-brand-logo--lg {
  height: 28px;        /* 22px × 1.25 ≈ 28px */
  max-width: 138px;
}

/* Tamanhos individuais de logo por percentual de ajuste */
.winner-brand-logo--p10  { height: 24px;  max-width: 121px; }  /* +10% */
.winner-brand-logo--p20  { height: 26px;  max-width: 132px; }  /* +20% */
.winner-brand-logo--p30  { height: 29px;  max-width: 143px; }  /* +30% */
.winner-brand-logo--p50  { height: 33px;  max-width: 165px; }  /* +50% */
.winner-brand-logo--p70  { height: 37px;  max-width: 187px; }  /* +70% */
.winner-brand-logo--p100 { height: 44px;  max-width: 220px; }  /* +100% */

.winner-card-v2:hover .winner-brand-logo {
  filter: none;
  opacity: 1;
}

/* Zoom no hover para cards com background-image (fotos externas) — mesmo efeito dos PNGs */
.winner-card-ext:hover .winner-cutout-inner {
  transform: scale(1.04) translateY(-4px);
}

/* Centraliza nome + logo/marca dentro do overlay — logo acima, nome abaixo */
.winner-overlay-info--centered {
  align-items: center;
  text-align: center;
  flex-direction: column-reverse;
}

@media (max-width: 1200px) {
  .winner-card { flex: 0 0 160px; }
}

@media (max-width: 900px) {
  .winner-card { flex: 0 0 145px; }
}

@media (max-width: 640px) {
  .winners-carousel-wrapper { padding: 0 40px; }
  .winner-card { flex: 0 0 130px; }
}

/* Responsive premio-intro */
@media (max-width: 1024px) {
  .premio-intro {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 32px;
  }
}

@media (max-width: 600px) {
  .premio-intro { padding: 0 20px; }
  .premio-divider { padding: 0 20px; }
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
/* ─── FOOTER GLOBAL ─── */
.site-footer {
  background: #07050E;
  border-top: 1px solid rgba(91,79,190,0.2);
  padding: 56px 40px 32px;
}
.site-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.site-footer-realizado {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-realizado-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.22s;
}

.site-footer-logo:hover {
  opacity: 1;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  /* inverte para branco no fundo escuro */
  filter: brightness(0) invert(1);
}

.site-footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.site-footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.82rem;
  font-family: var(--font-body);
  transition: all .25s;
  white-space: nowrap;
}
.site-footer-social-link i { font-size: 1rem; }
.site-footer-social-link:hover { color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.05); }
.site-footer-social-link.ig:hover  { border-color: rgba(225,48,108,0.5);  background: rgba(225,48,108,0.07); color: #e1306c; }
.site-footer-social-link.li:hover  { border-color: rgba(10,102,194,0.5);  background: rgba(10,102,194,0.07); color: #0a66c2; }
.site-footer-social-link.yt:hover  { border-color: rgba(255,0,0,0.45);    background: rgba(255,0,0,0.07);    color: #ff0000; }

.site-footer-copy {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  font-family: var(--font-body);
}

.site-footer-date {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.site-footer-date i { color: var(--purple-light); }

/* legado — preserva estilos antigos caso usados em outro lugar */
.footer { background: var(--dark-2); border-top: 1px solid rgba(91,79,190,0.2); padding: 40px 24px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-date { font-family: var(--font-body); font-size: 0.8rem; color: var(--purple-light); display: flex; align-items: center; gap: 6px; margin-left: auto; }
.footer-copy { font-family: var(--font-body); font-size: 0.75rem; color: rgba(255,255,255,0.3); }

@media (max-width: 900px) {
  .site-footer { padding: 48px 24px 28px; }
  .site-footer-inner { grid-template-columns: 1fr; gap: 28px; justify-items: center; text-align: center; }
  .site-footer-date { justify-content: center; }
  .site-footer-realizado { align-items: center; }
}
@media (max-width: 540px) {
  .site-footer-socials { flex-direction: column; gap: 10px; width: 100%; }
  .site-footer-social-link { justify-content: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-date { margin-left: 0; }
}

/* ════════════════════════════════════════════
   HERO — ajuste título branco dentro do em
   ════════════════════════════════════════════ */
.hero-title-white {
  color: var(--white) !important;
}

/* ════════════════════════════════════════════
   SEÇÃO PARTICIPANTES — 2 fileiras sincronizadas
   ════════════════════════════════════════════ */
.speakers-section {
  background: var(--dark-2);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.speakers-section::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(91,79,190,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.speakers-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 24px;
}

.speakers-header h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.speakers-header p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* Wrapper externo com setas nas bordas */
.speakers-dual-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 56px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Coluna central com as 2 fileiras */
.speakers-dual-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

/* Cada fileira é um overflow hidden independente */
.speakers-row-overflow {
  overflow: hidden;
}

.speakers-row {
  display: flex;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Card de participante — mesmo padrão do winner-card-v2 ─── */
.sp-card {
  flex: 0 0 200px;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.35s, box-shadow 0.35s;
  cursor: default;
  /* isolation garante que mix-blend-mode da img atue
     contra o .sp-card-bg e não contra o fundo da página */
  isolation: isolate;
}

.sp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6),
              0 0 0 1px rgba(255,255,255,0.12);
}

/* Fundo gradiente — mesma lógica do .winner-card-bg */
.sp-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sp-card-bg::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 55%;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(91, 79, 190, 0.25) 0%,
    transparent 70%
  );
}

/* Figura "cut-out" — mesmo padrão do .winner-cutout */
.sp-cutout-v2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  /* SEM isolation: o mix-blend-mode da img enxerga
     o fundo escuro do .sp-card-bg abaixo */
}

.sp-cutout-v2 img {
  height: 96%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  transition: transform 0.5s ease;
  /* multiply: o branco (255,255,255) × fundo escuro = escuro (invisível)
     A figura da pessoa permanece visível. */
  mix-blend-mode: multiply;
  filter: contrast(1.05) drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}

.sp-card:hover .sp-cutout-v2 img {
  transform: scale(1.04) translateY(-4px);
}

/* Gradiente escuro na base para o texto */
.sp-cutout-v2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(15, 10, 35, 0.95) 0%,
    rgba(15, 10, 35, 0.75) 40%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Placeholder sem foto */
.sp-cutout-empty {
  align-items: center;
  justify-content: center;
}

.sp-ph-icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.12);
  z-index: 1;
  margin-bottom: 40px;
}

/* Informações sobrepostas na base do card */
.sp-overlay-info {
  position: relative;
  z-index: 3;
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Tag tipo */
.sp-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 4px;
}

.sp-type-tag.creator {
  background: rgba(91,79,190,0.35);
  color: #b8aeff;
  border: 1px solid rgba(91,79,190,0.5);
}

.sp-type-tag.brand {
  background: rgba(232,98,10,0.25);
  color: var(--gold-light);
  border: 1px solid rgba(232,98,10,0.4);
}

/* Nome do participante */
.sp-name {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  line-height: 1.2;
}

/* Detalhe (@handle, seguidores ou empresa) */
.sp-detail {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--gold-light);
  opacity: 0.9;
  line-height: 1.3;
}

/* CTA abaixo */
.speakers-cta {
  text-align: center;
  margin-top: 52px;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  background: transparent;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 100px;
  border: 2px solid var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 6px 30px var(--gold-glow);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .sp-card { flex: 0 0 180px; height: 260px; }
}

@media (max-width: 768px) {
  .speakers-dual-wrapper { padding: 0 16px; }
  .sp-card { flex: 0 0 155px; height: 230px; }
}

@media (max-width: 500px) {
  .sp-card { flex: 0 0 140px; height: 210px; }
  .speakers-dual-wrapper { padding: 0 8px; }
}

/* ════════════════════════════════════════════
   SEÇÃO — VÍDEO COMPLETO
   ════════════════════════════════════════════ */

.fullvideo-section {
  background: #08000c;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

/* brilho suave atrás do player */
.fullvideo-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse,
    rgba(180, 0, 80, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.fullvideo-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.fullvideo-header {
  text-align: center;
  margin-bottom: 40px;
}

.fullvideo-header h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 12px;
}

.fullvideo-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  line-height: 1.6;
}

/* Container 16:9 responsivo */
.fullvideo-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 32px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(180,0,80,0.15);
}

.fullvideo-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .fullvideo-inner { padding: 0 20px; }
  .fullvideo-header { margin-bottom: 28px; }
}

/* ════════════════════════════════════════════
   SEÇÃO EXPERIÊNCIAS IMERSIVAS — hero slideshow
   ════════════════════════════════════════════ */

.exp-section {
  background: var(--dark);
  padding: 32px 0 72px;
  position: relative;
  overflow: hidden;
}

/* Cabeçalho */
.exp-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 48px;
}

.exp-header h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-top: 12px;
}

/* Wrapper do slideshow com setas */
.exp-slideshow {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}

/* Container dos slides — define a altura */
.exp-slides-container {
  position: relative;
  flex: 1;
  height: 60vh;
  min-height: 360px;
  max-height: 680px;
  border-radius: 16px;
  overflow: hidden;
}

/* Cada slide ocupa o container inteiro */
.exp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.exp-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Foto de fundo — cobre todo o slide */
.exp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay escuro gradiente (base para legibilidade do texto) */
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 3, 18, 0.92) 0%,
    rgba(5, 3, 18, 0.55) 40%,
    rgba(5, 3, 18, 0.15) 70%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
}

/* Bloco de texto dentro do overlay */
.exp-text {
  padding: 40px 48px;
  max-width: 760px;
}

.exp-title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
  margin-bottom: 10px;
  line-height: 1.15;
}

/* Linha dourada decorativa antes do título */
.exp-title::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 14px;
}

.exp-sub {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  max-width: 580px;
}

/* Setas de navegação */
.exp-btn {
  position: absolute;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(10, 6, 30, 0.65);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  backdrop-filter: blur(6px);
}

.exp-btn:hover {
  background: rgba(91, 79, 190, 0.7);
  border-color: var(--primary);
  transform: scale(1.1);
}

.exp-prev { left: 8px; }
.exp-next { right: 8px; }

/* Dots de navegação */
.exp-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.exp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
}

.exp-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
  transform: none;
}

/* Contador de slide (canto superior direito) */
.exp-counter {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.3);
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* Barra de progresso autoplay */
.exp-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  border-radius: 0 2px 0 0;
  transition: width linear;
  z-index: 6;
}

/* ── Responsivo ───────────────────────────── */
@media (max-width: 900px) {
  .exp-slideshow { padding: 0 44px; }
  .exp-slides-container { height: 50vh; min-height: 280px; }
  .exp-text { padding: 28px 32px; }
}

@media (max-width: 600px) {
  .exp-slideshow { padding: 0 36px; }
  .exp-slides-container { height: 55vw; min-height: 240px; }
  .exp-text { padding: 20px 20px; }
  .exp-btn { width: 36px; height: 36px; font-size: 0.8rem; }
}

/* ════════════════════════════════════════════
   SEÇÃO — PARA QUEM É ESTE EVENTO
   ════════════════════════════════════════════ */

.forwhom-section {
  background: var(--dark);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.forwhom-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(232,98,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.forwhom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

/* Cabeçalho */
.forwhom-header {
  text-align: center;
  margin-bottom: 56px;
}

.forwhom-header h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 12px;
}

.forwhom-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
  margin: 14px auto 0;
  line-height: 1.7;
}

/* ── Caixa principal ── */
.forwhom-box {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  overflow: hidden;
}

/* ── Barra de abas (topo da caixa) ── */
.forwhom-tabs-bar {
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.20);
  padding: 0 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.forwhom-tabs-bar::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.forwhom-tabs {
  display: flex;
  gap: 0;
  min-width: max-content;
}

.forwhom-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.22s, border-color 0.22s, background 0.22s;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  top: 1px; /* alinha borda ativa com a linha da caixa */
}

.forwhom-tab i { font-size: 0.82rem; }

.forwhom-tab:hover {
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.04);
}

.forwhom-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: transparent;
}

.forwhom-tab.active i { color: var(--gold); }

/* ── Área de conteúdo ── */
.forwhom-content {
  padding: 32px 28px;
}

/* ── Painéis ── */
.forwhom-panel {
  display: none;
}

.forwhom-panel.active {
  display: block;
  animation: fadeInPanel 0.3s ease;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Grid de cards — 3 por linha no desktop ── */
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Card individual */
.fw-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.fw-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(232,98,10,0.25);
  transform: translateY(-2px);
}

.fw-card > i {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 2px;
}

.fw-card strong {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.fw-card span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
  .forwhom-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .forwhom-inner { padding: 0 20px; }
  .forwhom-box { border-radius: 12px; }
  .forwhom-tabs-bar { padding: 0 16px; }
  .forwhom-tab { padding: 14px 20px; font-size: 0.82rem; }
  .forwhom-content { padding: 24px 16px; }
  .forwhom-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .forwhom-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════
   SEÇÃO INGRESSOS
   ════════════════════════════════════════════ */
.tickets-section {
  background: var(--dark);
  padding: 0px 0 100px;
  position: relative;
  overflow: hidden;
}

.tickets-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle,
    rgba(91,79,190,0.1) 0%,
    rgba(232,98,10,0.04) 50%,
    transparent 75%
  );
  pointer-events: none;
}

.tickets-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

.tickets-header {
  text-align: center;
  margin-bottom: 60px;
}

.tickets-header h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.tickets-header p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* Grade de planos */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.ticket-card {
  position: relative;
  padding-bottom: 32px;
}

/* Cores dos planos */
.ticket-card.pass  { background: #6B5FC5; }
.ticket-card.vip   { background: #31C4BC; }
.ticket-card.ultra { background: #9B8FDA; }

.ticket-card.featured {
  z-index: 2;
}

.ticket-featured-tag {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 18px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
}

/* Header do card */
.ticket-header-block {
  position: relative;
  padding: 32px 28px 12px;
  overflow: hidden;
}

.ticket-bg-label {
  position: absolute;
  top: -12px; right: -10px;
  font-family: var(--font-title);
  font-size: 6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}

.ticket-type {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

/* Corpo do card */
.ticket-body {
  padding: 12px 28px 0;
}

.ticket-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ticket-price {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.ticket-price span {
  font-size: 1.2rem;
  font-weight: 600;
}

.ticket-installments {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
}

.btn-ticket {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--dark);
  background: rgba(255,255,255,0.92);
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 10px;
  transition: all 0.25s;
  margin-right: 0;
}

.btn-ticket:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Tabela de benefícios */
.benefits-table {
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr 120px 120px 120px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.benefit-row:last-child { border-bottom: none; }

.benefit-row:hover { background: rgba(255,255,255,0.025); }

.benefit-label {
  padding: 18px 28px;
}

.benefit-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}

.benefit-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--white-muted);
}

.benefit-check {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  font-size: 1.1rem;
}

.benefit-check.pass-col  { color: #9B8FE8; }
.benefit-check.vip-col   { color: #31C4BC; }
.benefit-check.ultra-col { color: var(--gold-light); }

.benefit-check.benefit-no {
  color: rgba(255,255,255,0.2);
  font-size: 0.9rem;
}

/* CTA grupo */
.tickets-group-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.tickets-group-cta p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-muted);
}

.tickets-group-cta strong { color: var(--white); }

.btn-outline-purple {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--purple-light);
  background: transparent;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 100px;
  border: 2px solid var(--purple);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-outline-purple:hover {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 6px 24px var(--purple-glow);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .tickets-inner { padding: 0 24px; }
  .tickets-grid { grid-template-columns: 1fr; gap: 2px; border-radius: 16px; }
  .ticket-card.pass  { border-radius: 16px 16px 0 0; }
  .ticket-card.ultra { border-radius: 0 0 16px 16px; }
  .benefit-row { grid-template-columns: 1fr 72px 72px 72px; }
  .benefit-label { padding: 14px 16px; }
}

@media (max-width: 600px) {
  .benefit-row { grid-template-columns: 1fr 56px 56px 56px; }
  .benefit-title { font-size: 0.75rem; }
  .benefit-sub { display: none; }
  .tickets-group-cta { flex-direction: column; text-align: center; }
}
