/* ---------- BASE ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --primary: #ff2674;
  --primary-dark: #c91b58;
  --bg-dark: #0e0f1a;
  --bg-card: #161722;
  --text-light: #fff;
  --text-muted: #bdbdbd;
  --accent: #ff5b9a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top left, #1b1d2a, #0b0c16);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- HEADER / NAVBAR ---------- */
header.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(11, 12, 22, 0.85);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-light);
  position: relative;
  animation: logoIntro 0.9s ease-out forwards, logoFloat 4s ease-in-out 0.9s infinite;
}

header .logo img {
  height: 40px;
  width: 40px;
  position: relative;
  z-index: 1;
}

header .logo .logo-word {
  display: inline-flex;
  gap: 0.1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

.logo-word span {
  opacity: 0;
  transform: translateY(10px);
  animation: letterReveal 0.55s ease-out forwards;
}

.logo-word span:nth-child(1) { animation-delay: 0.1s; }
.logo-word span:nth-child(2) { animation-delay: 0.18s; }
.logo-word span:nth-child(3) { animation-delay: 0.26s; }
.logo-word span:nth-child(4) { animation-delay: 0.34s; }
.logo-word span:nth-child(5) { animation-delay: 0.42s; }
.logo-word span:nth-child(6) { animation-delay: 0.5s; }

header .logo::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255,38,116,0), rgba(255,38,116,0.6), rgba(255,38,116,0));
  opacity: 0;
  transform: translateX(-60%);
  filter: blur(8px);
  animation: logoSweep 1.2s ease-out 0.3s forwards;
  pointer-events: none;
}

@keyframes logoIntro {
  0% { opacity: 0; transform: translateY(10px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logoFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@keyframes logoSweep {
  0% { opacity: 0; transform: translateX(-80%); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateX(60%); }
}

@keyframes letterReveal {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  header .logo,
  header .logo::after {
    animation: none;
  }
  .logo-word span {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

header nav a {
  color: var(--text-light);
  margin-left: 1.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

#google_translate_element {
  margin-left: 1.2rem;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

#google_translate_element .goog-te-gadget {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.85rem !important;
  color: var(--text-light) !important;
}

#google_translate_element .goog-te-gadget-simple {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
}

#google_translate_element select {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-weight: 500;
  cursor: pointer;
}

#google_translate_element option {
  color: #111827;
}

header nav a:hover {
  color: var(--primary);
}

header .btn.small {
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 10rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: 0.25s;
}

.btn.primary {
  background: var(--primary);
  color: white;
}

.btn.primary:hover {
  background: var(--primary-dark);
}

.btn.ghost {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn.ghost:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- HERO SECTION ---------- */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 3rem;
  flex-wrap: wrap;
  gap: 3rem;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero .highlight {
  color: var(--primary);
}

.hero p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tags span {
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  padding: 0.4rem 0.8rem;
  border-radius: 10rem;
  color: var(--text-muted);
}

.experience-section {
  margin: 0 auto;
  padding: 3.5rem 3rem 4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.experience-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.experience-content h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.experience-content p {
  color: var(--text-muted);
}

.experience-points {
  list-style: none;
  margin: 1.2rem 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--text-light);
}

.experience-points li::before {
  content: '✦';
  margin-right: 0.5rem;
  color: var(--accent);
}

.countdown {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.countdown div {
  text-align: center;
  min-width: 70px;
}

.countdown span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.countdown small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.experience-video video {
  border-radius: 1.4rem;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vip-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  padding: 3.5rem 3rem 1rem;
  align-items: center;
}

.vip-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.vip-content h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.vip-content p {
  color: var(--text-muted);
}

.vip-perks {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.vip-perks li::before {
  content: '✔';
  margin-right: 0.5rem;
  color: var(--accent);
}

.vip-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.compare-card {
  border-radius: 1.4rem;
  padding: 1.6rem;
  background: rgba(15, 16, 27, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.compare-card h3 {
  margin-bottom: 1rem;
}

.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: var(--text-muted);
}

.compare-card ul li::before {
  content: '•';
  margin-right: 0.5rem;
  color: var(--accent);
}

.compare-card.premium {
  border-color: rgba(255,38,116,0.5);
  background: linear-gradient(135deg, rgba(255,38,116,0.18), rgba(15,16,27,0.95));
}

.compare-card .badge {
  display: inline-flex;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

/* ---------- HERO IMAGE ---------- */
.hero-image {
  position: relative;
  max-width: 340px;
}

.hero-image img {
  width: 100%;
  border-radius: 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.event-info {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(20, 20, 30, 0.85);
  border-radius: 0.8rem;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  text-align: right;
}

.event-info span {
  display: block;
  color: #ccc;
}

.event-info .btn {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
}

/* ---------- TICKETS SECTION ---------- */
.tickets-section {
  padding: 4rem 3rem;
  background: var(--bg-dark);
}

.tickets-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

.tickets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.ticket-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 260px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ticket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.05);
}

.ticket-card h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.ticket-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
}

.ticket-card small {
  color: var(--text-muted);
}

.ticket-card .btn {
  margin-top: 1rem;
}

.ticket-card.popular {
  border: 2px solid var(--primary);
  position: relative;
}

.ticket-card .badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
}

/* ---------- INFOS SECTION ---------- */
.infos-section {
  padding: 3rem;
  background: #10111c;
}

.infos-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.infos-section ul {
  list-style: none;
  text-align: center;
  line-height: 2;
}

.infos-section li {
  color: var(--text-muted);
}

.infos-section b {
  color: var(--text-light);
}

.map-card {
  margin: 2rem auto 0;
  max-width: 760px;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  background: rgba(11, 12, 22, 0.85);
}

.map-card iframe {
  width: 100%;
  display: block;
  height: 350px;
}

.map-help {
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(0,0,0,0.2);
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  padding: 2rem;
  background: var(--bg-dark);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.wrap {
  width: min(1100px, 100%);
  margin: 0 auto;
}

footer .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.contact-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-weight: 500;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-content {
    max-width: 100%;
  }

  header.navbar {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem 1.4rem;
    align-items: flex-start;
  }

  header nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
  }

  header nav a {
    margin: 0 0.8rem;
  }

  #google_translate_element {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  header.navbar {
    padding: 1.2rem 1.2rem;
    align-items: flex-start;
  }

  header nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-start;
  }

  header nav a,
  header .btn.small {
    margin: 0;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
  }

  #google_translate_element {
    padding: 0.35rem 0.7rem;
  }

  .hero {
    padding: 3rem 1.4rem;
    gap: 2.2rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .tags {
    gap: 0.4rem;
  }

  .tags span {
    width: 100%;
    text-align: center;
  }

  .hero-image {
    order: -1;
    max-width: 80%;
    margin: 0 auto 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .event-info {
    position: static;
    margin: 0 auto 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .event-info .btn {
    width: auto;
    min-width: 140px;
  }

  .tickets-section,
  .infos-section {
    padding: 3rem 1.4rem;
  }

  .experience-section {
    grid-template-columns: 1fr;
    padding: 3rem 1.4rem;
  }

  .vip-section {
    grid-template-columns: 1fr;
    padding: 3rem 1.4rem 1.5rem;
  }

  .vip-compare {
    grid-template-columns: 1fr;
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tickets-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .ticket-card {
    max-width: 100%;
  }

  footer .foot {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 260px;
  }

  .hero-content {
    order: 2;
    width: 100%;
  }
}
