/* ================================================
   MAPA DIAMANTE — LANDING PAGE PREMIUM
   Identidade: Preto + Laranja #F67600
   Fonte: Sora (400 / 600)
   ================================================ */

:root {
  --black: #000000;
  --black-soft: #0a0a0a;
  --black-card: #111111;
  --black-card-2: #161616;
  --black-line: #1f1f1f;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.72);
  --white-mute: rgba(255, 255, 255, 0.48);
  --white-line: rgba(255, 255, 255, 0.08);
  --orange: #F67600;
  --orange-deep: #c95d00;
  --orange-glow: rgba(246, 118, 0, 0.45);
  --orange-soft: rgba(246, 118, 0, 0.12);

  --font: 'Sora', system-ui, sans-serif;

  /* Tamanhos desktop */
  --fs-h1: 2.5rem;
  --fs-h2: 2rem;
  --fs-h3: 1.5rem;
  --fs-p:  1rem;

  --container: 1240px;

  --radius: 18px;
  --radius-sm: 10px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

@media (max-width: 768px) {
  :root {
    --fs-h1: 2rem;
    --fs-h2: 1.5rem;
    --fs-h3: 1rem;
    --fs-p:  1rem;
  }
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: var(--fs-p);
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; color: var(--orange); font-weight: 600; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============== TIPOGRAFIA ============== */
h1, h2, h3 { font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { font-size: var(--fs-p); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--orange);
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--orange-soft);
  border-radius: 999px;
  background: var(--orange-soft);
}

/* ============== TOP BAR ============== */
.top-bar {
  position: relative;
  background: linear-gradient(90deg, var(--orange-deep) 0%, var(--orange) 50%, var(--orange-deep) 100%);
  color: var(--white);
  font-size: 0.85rem;
  overflow: hidden;
  z-index: 50;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  text-align: center;
}
.top-bar-text strong { font-weight: 600; letter-spacing: 0.05em; }
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@media (max-width: 600px) {
  .top-bar-text { font-size: 0.78rem; }
}

/* ============== FLOATING BAR (aparece ao rolar) ============== */
.floating-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(246, 118, 0, 0.18);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
  pointer-events: none;
}
.floating-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.floating-bar::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.5;
}
.floating-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.floating-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.floating-logo .logo-img {
  height: 70px;
}

.floating-info {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.floating-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 var(--orange-glow);
  animation: pulse-orange 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-orange {
  0%   { box-shadow: 0 0 0 0 rgba(246, 118, 0, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(246, 118, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(246, 118, 0, 0); }
}
.floating-text {
  font-size: 0.88rem;
  color: var(--white-soft);
  letter-spacing: 0.02em;
}
.floating-text strong {
  color: var(--orange);
  font-weight: 600;
}
.floating-cta {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px -8px var(--orange-glow);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.floating-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px var(--orange-glow);
}

@media (max-width: 700px) {
  .floating-bar-inner {
    padding: 12px 16px;
    gap: 12px;
  }
  .floating-logo .logo-img { height: 70px; }
  .floating-info { gap: 10px; }
  .floating-text { font-size: 0.78rem; }
  .floating-text-extra { display: none; }
  .floating-cta {
    font-size: 0.74rem;
    padding: 8px 14px;
  }
}
@media (max-width: 420px) {
  .floating-text { display: none; }
  .floating-pulse { display: none; }
}

/* ============== NAV ============== */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  padding: 22px 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}
.logo-img {
  height: 90px;
  width: auto;
  display: block;
  transition: opacity 0.3s var(--ease);
}
.logo:hover .logo-img { opacity: 0.85; }
.logo-mark {
  color: var(--orange);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 10px var(--orange-glow));
}
.logo-accent { color: var(--orange); }
.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
}
.nav-cta:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 24px 100px;
  text-align: center;
}

/* Banner background — desktop e mobile */
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at top, rgba(246,118,0,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(246,118,0,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #000 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(246,118,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,118,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.4;
  animation: glow-float 8s ease-in-out infinite;
}
@keyframes glow-float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -55%) scale(1.1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, var(--black) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: hero-rise 1s var(--ease) both;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--orange);
  text-transform: uppercase;
}
.hero-tag-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
@media (max-width: 600px) {
  .hero-tag { font-size: 0.68rem; gap: 10px; letter-spacing: 0.2em; }
  .hero-tag-line { width: 24px; }
}

.hero-h1 {
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero-h1 em {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, var(--orange) 0%, #ffa54a 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-h1-sub {
  display: block;
  margin-top: 12px;
  font-size: 1.1em;
  font-weight: 600;
}
@media (min-width: 769px) {
  .hero-h1 { font-size: 4.2rem; }
}

.hero-h2 {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white-soft);
  max-width: 640px;
  letter-spacing: 0;
}
@media (min-width: 769px) {
  .hero-h2 { font-size: 1.2rem; }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--white-soft);
  padding: 10px 18px;
  border-bottom: 1px solid var(--white-line);
  transition: all 0.3s var(--ease);
}
.hero-location:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.hero-scroll {
  margin-top: 40px;
  width: 22px; height: 36px;
  border: 1.5px solid var(--white-mute);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero-scroll span {
  width: 2px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.3; }
}

/* ============== BOTÕES ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white);
  box-shadow:
    0 10px 30px -10px var(--orange-glow),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px -10px var(--orange-glow),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover::before { left: 100%; }
.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

/* ============== DOBRA 2 — PLANO ============== */
.plan {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.plan-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, var(--orange-glow) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}
.plan-header {
  max-width: 880px;
  margin: 0 auto 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.plan-h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.plan-p {
  font-size: 1.05rem;
  color: var(--white-soft);
  letter-spacing: 0.05em;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .plan-grid { grid-template-columns: 1fr; }
  .plan { padding: 80px 0; }
}

.plan-card {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(180deg, var(--black-card) 0%, var(--black-card-2) 100%);
  border: 1px solid var(--black-line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.plan-card:hover {
  border-color: rgba(246,118,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8);
}
.plan-card:hover::before { opacity: 1; }

.plan-card-featured {
  border-color: rgba(246,118,0,0.25);
  background: linear-gradient(180deg, #1a0e00 0%, var(--black-card) 100%);
}
.plan-card-featured::before { opacity: 0.6; }

.plan-card-num {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--orange);
}
.plan-card-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid rgba(246,118,0,0.2);
}
.plan-card-icon svg { width: 28px; height: 28px; }
.plan-card-title {
  font-size: var(--fs-h3);
  font-weight: 600;
}
.plan-card-text {
  color: var(--white-soft);
  font-size: 0.95rem;
}
.plan-card-line {
  display: block;
  margin-top: auto;
  width: 32px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* ============== DOBRA 3 — INGRESSOS ============== */
.tickets {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(ellipse at top, rgba(246,118,0,0.05) 0%, transparent 50%),
    var(--black);
  border-top: 1px solid var(--black-line);
  border-bottom: 1px solid var(--black-line);
}
.tickets-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.tickets-h2 { font-size: var(--fs-h2); }
.tickets-sub { color: var(--white-soft); }

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .tickets-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .tickets { padding: 80px 0; }
}

.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--black-card) 0%, var(--black-card-2) 100%);
  border: 1px solid var(--black-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.ticket-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}

.ticket-head {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--black-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,0.02);
}
.ticket-title {
  font-size: 1.4rem;
  font-weight: 600;
}
.ticket-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid rgba(246,118,0,0.25);
}

.ticket-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.ticket-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--black-line);
}
.ticket-price-from {
  font-size: 0.85rem;
  color: var(--white-soft);
}
.ticket-price-from s { color: var(--orange); opacity: 0.8; }
.ticket-status {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.ticket-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 6px;
}
.ticket-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white-soft);
}
.ticket-value {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.ticket-cents {
  font-size: 1rem;
  color: var(--white-soft);
}

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.ticket-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  color: var(--white-soft);
  line-height: 1.5;
}
.ticket-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 1px solid rgba(246,118,0,0.3);
}
.ticket-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 10px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--orange);
  border-bottom: 1.5px solid var(--orange);
  transform: rotate(-45deg);
}

.btn-ticket {
  width: 100%;
  padding: 16px 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--orange);
  transition: all 0.3s var(--ease);
}
.btn-ticket:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 30px -10px var(--orange-glow);
}

/* VIP — destaque */
.ticket-card-vip {
  border-color: rgba(246,118,0,0.4);
  background:
    radial-gradient(ellipse at top, rgba(246,118,0,0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--black-card) 0%, var(--black-card-2) 100%);
  transform: scale(1.02);
}
@media (max-width: 1000px) {
  .ticket-card-vip { transform: none; }
}
.ticket-card-vip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.btn-vip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 30px -10px var(--orange-glow);
}
.btn-vip:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px var(--orange-glow);
}

/* DIAMANTE */
.ticket-card-diamond {
  border-color: rgba(246,118,0,0.25);
}
.ticket-badge-diamond {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-diamond {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-diamond:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 10px 30px -10px var(--orange-glow);
}

/* ============== DOBRA 4 — POR QUE NÃO PERDER ============== */
.why {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.why-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--orange-soft) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, var(--orange-soft) 0%, transparent 30%);
  opacity: 0.5;
  pointer-events: none;
}
.why-pattern::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 60px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}

.why-header {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.why-h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why { padding: 80px 0; }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-stat {
  position: relative;
  padding: 36px 28px;
  background: linear-gradient(180deg, var(--black-card) 0%, transparent 100%);
  border: 1px solid var(--black-line);
  border-radius: var(--radius);
  text-align: left;
  transition: all 0.4s var(--ease);
}
.why-stat::before {
  content: '';
  position: absolute;
  left: 28px; top: 28px;
  width: 4px; height: 24px;
  background: var(--orange);
  border-radius: 2px;
}
.why-stat:hover {
  border-color: rgba(246,118,0,0.3);
  transform: translateY(-4px);
}
.why-stat-num {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  margin-left: 18px;
  background: linear-gradient(135deg, var(--white) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-stat-suffix {
  font-size: 0.5em;
  margin-left: 4px;
  -webkit-text-fill-color: var(--orange);
  color: var(--orange);
}
.why-stat-label {
  font-size: 0.92rem;
  color: var(--white-soft);
  line-height: 1.5;
  margin-left: 18px;
}

.why-cta-text {
  position: relative;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--white);
  max-width: 760px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.5;
}

/* ============== DOBRA 5 — VENUE ============== */
.venue {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--black-line);
}
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .venue-grid { grid-template-columns: 1fr; gap: 40px; }
  .venue { padding: 80px 0; }
}

.venue-map {
  position: relative;
}
.venue-map-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--black-line);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.8),
    0 0 0 1px rgba(246,118,0,0.15),
    0 0 60px -20px var(--orange-glow);
}
.venue-map-frame iframe {
  filter: invert(0.92) hue-rotate(180deg) saturate(0.7) brightness(0.8) contrast(1.1);
  width: 100%;
  height: 100%;
}
.venue-map-shine {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(246,118,0,0.08) 0%, transparent 100%);
  pointer-events: none;
}
.venue-map-pin {
  position: absolute;
  top: -12px; left: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 30px -10px var(--orange-glow);
}
.venue-map-pin-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse-pin 2s infinite;
}
@keyframes pulse-pin {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.venue-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.venue-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.venue-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.venue-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--black-card);
  border: 1px solid var(--black-line);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.venue-list li:hover {
  border-color: rgba(246,118,0,0.3);
}
.venue-list-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid rgba(246,118,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.venue-list-icon svg { width: 22px; height: 22px; }
.venue-list-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.venue-list-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}
.venue-list-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--white-soft);
  margin-top: 4px;
}
.venue-cta {
  margin-top: 8px;
}

/* ============== FOOTER ============== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--black-line);
  background: var(--black);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-text {
  font-size: 0.85rem;
  color: var(--white-mute);
}

/* ============== MODAIS ============== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open {
  display: flex;
  animation: modal-in 0.3s var(--ease);
}
@keyframes modal-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--black-card) 0%, var(--black-card-2) 100%);
  border: 1px solid rgba(246,118,0,0.25);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.8),
    0 0 60px -20px var(--orange-glow);
  animation: modal-rise 0.4s var(--ease);
}
@keyframes modal-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--white-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.modal-close:hover {
  background: var(--orange-soft);
  color: var(--orange);
}
.modal-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--orange);
  padding: 6px 12px;
  background: var(--orange-soft);
  border: 1px solid rgba(246,118,0,0.25);
  border-radius: 999px;
  margin-bottom: 16px;
}
.modal-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.modal-sub {
  font-size: 0.92rem;
  color: var(--white-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}
.modal-sub strong { color: var(--orange); font-weight: 600; }

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-form label span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white-soft);
  text-transform: uppercase;
}
.modal-form input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--black-line);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.2s var(--ease);
}
.modal-form input::placeholder {
  color: var(--white-mute);
}
.modal-form input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(246,118,0,0.05);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.modal-submit {
  margin-top: 8px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  width: 100%;
}
.modal-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--white-mute);
  margin-top: 4px;
}

@media (max-width: 500px) {
  .modal-card { padding: 32px 24px; }
  .modal-title { font-size: 1.15rem; }
}

/* ============== Animações de scroll reveal ============== */
@media (prefers-reduced-motion: no-preference) {
  .plan-card, .ticket-card, .why-stat, .venue-list li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }
  .plan-card.is-visible,
  .ticket-card.is-visible,
  .why-stat.is-visible,
  .venue-list li.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* lock body when modal aberto */
body.modal-open { overflow: hidden; }
.networking-section {
  background: #0a0604;
  padding: 80px 20px;
  overflow-x: hidden;
}

.networking-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1160px;
  margin: 0 auto;
}

.net-gallery {
  flex: 1;
  display: flex;
  gap: 20px;
  height: 580px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

.net-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.net-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.net-track--up {
  animation: net-scroll-y 25s linear infinite;
}

.net-track--down {
  animation: net-scroll-y-reverse 25s linear infinite;
}

.net-track:hover {
  animation-play-state: paused;
}

@keyframes net-scroll-y {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes net-scroll-y-reverse {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@keyframes net-scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes net-scroll-x-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.net-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0;
}

.networking-text {
  flex: 1;
  color: #fff;
}

.networking-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fe7413;
  margin-bottom: 20px;
}

.networking-text .eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #fe7413;
  border-radius: 2px;
}

.networking-text p {
  font-size: 16px;
  color: #9a9a9a;
  line-height: 1.8;
  margin-bottom: 32px;
}

.networking-text h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.btn-networking {
  background: #fe7413;
  color: #000;
  border: none;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

/* MOBILE: vira carrossel horizontal */
@media (max-width: 768px) {
  .networking-section {
    padding: 64px 0;
  }

  .networking-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .net-gallery {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .net-col {
    width: 100%;
    flex: none;
    overflow: hidden;
  }

  .net-track {
    flex-direction: row;
    width: max-content;
    gap: 12px;
  }

  .net-track--up {
    animation: net-scroll-x 25s linear infinite;
  }

  .net-track--down {
    animation: net-scroll-x-reverse 25s linear infinite;
  }

  .net-img {
    width: 180px;
    height: 130px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 12px;
  }

  .networking-text {
    padding: 0 28px;
    text-align: center;
  }

  .networking-text .eyebrow {
    justify-content: center;
  }

  .networking-text p {
    font-size: 20px;
    line-height: 1.55;
  }

  .networking-text h2 {
    font-size: 28px;
    line-height: 1.25;
  }
}
.parallax-section {
  position: relative;
  min-height: 80vh;
  background-image: url('saopaulo.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 24px 80px 10%;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.info-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 780px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.info-card__title {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 32px;
}

.info-card__title u {
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.info-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.info-card__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
}

.info-item svg {
  width: 18px;
  height: 18px;
  color: #333;
  flex-shrink: 0;
  margin-top: 3px;
  stroke-width: 1.75;
}

.info-highlight {
  background: #e8591a;
  padding: 24px;
  border-radius: 12px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  max-width: 260px;
  align-self: flex-start;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .parallax-section {
    min-height: auto;
    padding: 70px 20px;
    background-attachment: scroll;
    justify-content: center;
  }

  .info-card {
    padding: 32px 24px;
    width: 100%;
  }

  .info-card__title {
    font-size: 24px;
  }

  .info-card__row {
    flex-direction: column;
  }

  .info-highlight {
    max-width: 100%;
  }
}
.carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-top: -120px; /* faz ele "invadir" a seção de baixo */
  z-index: 10;

  padding: 40px 0;

  /* fade nas laterais */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scrollCarousel 40s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-img {
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 20px;
  flex-shrink: 0;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}