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

:root {
  --pink:    #ff2d78;
  --cyan:    #00f0ff;
  --purple:  #7b2fff;
  --dark:    #05000f;
  --dark2:   #0a0018;
  --dark3:   #0d001a;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
strong { color: var(--cyan); }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ════════════════════════════════════════
   NAVBAR — fixo, sobre o vídeo
════════════════════════════════════════ */
/* ════ NAVBAR ════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;   /* links todos à direita */
  padding: 0 40px;
  height: 64px;
  background: rgba(5, 0, 15, 0.55);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: visible;           /* permite o logo sair para baixo */
}

/* Logo central saindo para baixo */
.nav-logo-center {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  z-index: 101;
}

.nav-logo-center a {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-logo-center img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  /* mesmo fundo e opacidade da navbar — sem borda extra */
  background-color: black;
  backdrop-filter: blur(6px);
  display: block;
}

/* Links à direita */
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

/* Mobile */
.nav-toggle { display: none; }
.nav-mobile { display: none; list-style: none; }

@media (max-width: 768px) {
  #navbar { padding: 0 20px; justify-content: flex-end; }
  .nav-links { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }
  .nav-mobile {
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(5,0,15,0.97);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile li { text-align: center; }
  .nav-mobile a { display: block; padding: 14px 20px; font-size: 13px; }
}

/* ════════════════════════════════════════
   VÍDEO HERO — topo, full width
════════════════════════════════════════ */
#video-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 300px;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(5,0,15,0.6) 90%,
    var(--dark) 100%
  );
}

@media (max-width: 768px) {
  #video-hero { height: 56vw; min-height: 220px; }
}

/* ════════════════════════════════════════
   HERO — nome, data, local, hora
════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,48,255,0.25) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-glow-pink {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,120,0.15) 0%, transparent 70%);
  top: 30%; left: 20%;
  pointer-events: none;
}

.hero-logo {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hero-logo img { height: 160px; width: auto; }

.hero-logo-placeholder {
  width: 160px; height: 160px;
  border: 2px dashed rgba(0,240,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(0,240,255,0.4);
  letter-spacing: 1px;
  font-family: 'Orbitron', sans-serif;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(42px, 8vw, 90px);
  font-weight: 900;
  line-height: 1;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px var(--pink), 0 0 60px rgba(255,45,120,0.4);
}

.hero-title span {
  display: block;
  font-size: clamp(20px, 3.5vw, 38px);
  font-weight: 400;
  letter-spacing: 12px;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan), 0 0 60px rgba(0,240,255,0.4);
  margin-bottom: 8px;
}

.hero-year {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(60px, 12vw, 130px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.hero-info {
  margin-top: 28px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-info-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.hero-info-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  color: var(--cyan);
  letter-spacing: 2px;
}

.hero-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-cta {
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .hero-info-bar { flex-direction: column; width: 100%; max-width: 300px; }
  .hero-divider { width: 80%; height: 1px; }
  .hero-info-item { padding: 16px 20px; }
}

/* ════════════════════════════════════════
   BOTÕES
════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 30px rgba(255,45,120,0.3);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255,45,120,0.5);
}

.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-outline:hover {
  background: var(--cyan);
  color: var(--dark);
  box-shadow: 0 0 40px rgba(0,240,255,0.4);
}

/* ════════════════════════════════════════
   SEÇÕES — base
════════════════════════════════════════ */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
}

.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .section-inner { padding: 60px 20px; }
}

/* ════════════════════════════════════════
   A FESTA — mosaico + texto
════════════════════════════════════════ */
#a-festa { background: var(--dark2); }

.festa-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* Mosaico de fotos — grid 2 colunas, auto rows */
.festa-fotos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 8px;
  grid-auto-flow: dense;
}

.f-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.f-item img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.f-item:hover img { transform: scale(1.05); }

/* Modificadores de tamanho */
.f-tall  { grid-row: span 2; }
.f-wide  { grid-column: span 2; }
.f-big   { grid-column: span 2; grid-row: span 2; }


.festa-texto {
  margin-top: -35px;


}
/* Texto */
.festa-texto p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  font-size: 16px;
}

.festa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  padding: 6px 16px;
  border: 1px solid rgba(0,240,255,0.3);
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .festa-layout { grid-template-columns: 1fr; gap: 40px; }
  .festa-fotos { grid-auto-rows: 140px; }
}

/* ════════════════════════════════════════
   LOCALIZAÇÃO — Maps embed
════════════════════════════════════════ */
#localizacao { background: var(--dark3); }

.mapa-wrapper {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  margin-bottom: 32px;
}

.mapa-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  filter: invert(90%) hue-rotate(180deg); /* dark mode no mapa */
}

.localizacao-cta { text-align: center; }

@media (max-width: 768px) {
  .mapa-wrapper iframe { height: 260px; }
}

/* ════════════════════════════════════════
   LINE UP
════════════════════════════════════════ */
#line-up { background: var(--dark2); }

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.lineup-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.lineup-card:hover {
  border-color: rgba(0,240,255,0.3);
  transform: translateY(-4px);
}

.lineup-avatar { font-size: 36px; margin-bottom: 16px; }

.lineup-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.lineup-role {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lineup-time {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}


/* ════════════════════════════════════════
   LOTES
════════════════════════════════════════ */

.lotes-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.lote-card {
  background: #0b0b1a;
  border: 1px solid #1f1f3a;
  border-radius: 16px;
  padding: 20px;
  color: white;
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.lote-card.ativo {
  border: 2px solid #ff2e88;
  box-shadow: 0 0 20px rgba(255, 46, 136, 0.3);
}

.lote-status {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.status-ativo {
  background: linear-gradient(45deg, #ff2e88, #ff6ec4);
}

.status-esgotado {
  background: #333;
}

.status-bloqueado {
  background: #0aa;
}

.lote-preco {
  font-size: 42px;
  font-weight: bold;
  margin: 20px 0;
}

.lote-btn {
  margin-top: 20px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

.btn-ativo {
  background: linear-gradient(45deg, #ff2e88, #7b2cff);
  color: white;
}

.btn-desativado {
  background: #222;
  color: #666;
  cursor: not-allowed;
}

/* 📱 RESPONSIVO */
@media (max-width: 900px) {
  .lotes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .lote-preco {
    font-size: 32px;
  }
}
/* ════════════════════════════════════════
   MODAL
════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  position: relative;
  background: var(--dark2);
  border: 1px solid rgba(255,45,120,0.3);
  border-radius: 6px;
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 0 60px rgba(255,45,120,0.2);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
}
.modal-close:hover { color: #fff; }

.modal-label {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-input {
  display: block;
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  outline: none;
  transition: border-color 0.3s;
}
.modal-input:focus { border-color: rgba(255,45,120,0.5); }
.modal-input::placeholder { color: rgba(255,255,255,0.25); }

/* ════════════════════════════════════════
   FOTOS PREVIEW — grid masonry
════════════════════════════════════════ */
#fotos-preview { background: var(--dark3); }

.fotos-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 6px;
  margin-bottom: 48px;
}

.foto-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 2px;
  transition: border-color 0.3s;
}
.foto-item:hover { border-color: rgba(0,240,255,0.3); }
.foto-item img { width: 100%; height: 100%; object-fit: cover; }

.col2 { grid-column: span 2; }
.row2 { grid-row: span 2; }

.fotos-preview-cta { text-align: center; }

@media (max-width: 768px) {
  .fotos-preview-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 100px;
  }
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: #000;
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-tagline {
  color: rgba(255,255,255,0.15) !important;
  font-style: italic;
}

.footer-powered {
  margin-top: 16px !important;
  font-size: 11px !important;
  color: rgba(255,255,255,0.2) !important;
  letter-spacing: 1px !important;
}

.footer-powered a {
  color: var(--cyan);
  transition: opacity 0.3s;
}
.footer-powered a:hover { opacity: 0.7; }
