/* ========================================
   WOK&CO GAMES 2026 - Landing Page Styles
   HTML/CSS/JS Puro - Sin Frameworks
   ======================================== */

/* ========================================
   Variables y Reset
   ======================================== */
:root {
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --accent-orange: #ff6b00;
  --accent-orange-hover: #ff8533;
  --accent-neon: #00ff88;
  --accent-yellow: #ffdd00;
  --text-white: #ffffff;
  --text-gray: #b0b0b0;
  --text-gray-light: #e0e0e0;
  --border-color: #2a2a2a;
  --font-main: "Poppins", sans-serif;
}

.event-logo {
    display: block;
    width: auto;
    max-width: 100%; /* Porcentaje responsivo */
    margin: 0 auto;
    height: auto;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   Utilidades
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-white);
}

.section-title span {
  color: var(--accent-orange);
}

/* ========================================
   Botones
   ======================================== */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-main);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8533 100%);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(255, 107, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--accent-orange);
}

.btn-secondary:hover {
  background: var(--accent-orange);
  transform: translateY(-3px);
}

/* ========================================
   Navegación
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent-orange);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--text-gray-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-orange);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--bg-darker) 0%, #1a0a00 50%, var(--bg-darker) 100%);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--bg-dark) 70%);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  padding: 20px;
  animation: fadeInUp 1s ease;
}

.hero-logo-placeholder {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  background: var(--bg-card);
  border: 2px dashed var(--accent-orange);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  text-align: center;
  padding: 10px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 40px rgba(255, 107, 0, 0.5);
}

.hero-title span {
  color: var(--accent-orange);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-neon);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-gray-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Sobre el Evento
   ======================================== */
.about {
  background: var(--bg-darker);
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-gray-light);
  line-height: 1.8;
}

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

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.about-card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

.about-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.about-producers {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.about-producers p {
  color: var(--text-gray);
  font-size: 1rem;
}

.about-producers strong {
  color: var(--accent-neon);
}

/* ========================================
   Influencers
   ======================================== */
.influencers {
  background: var(--bg-dark);
}

.influencers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.influencer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.influencer-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
}

.influencer-card.featured {
  border: 2px solid var(--accent-neon);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.1) 100%);
  grid-column: span 2;
}

.influencer-card.featured:hover {
  border-color: var(--accent-neon);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

.influencer-photo {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  background: var(--bg-darker);
  border: 2px dashed var(--text-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 0.75rem;
}

.influencer-card.featured .influencer-photo {
  width: 120px;
  height: 120px;
  border-color: var(--accent-neon);
}

.influencer-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
}

.influencer-card.featured h3 {
  font-size: 1.4rem;
  color: var(--accent-neon);
}

.influencer-card p {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.influencer-card.featured p {
  color: var(--accent-yellow);
  font-weight: 500;
}

/* ========================================
   Premios
   ======================================== */
.prizes {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.prize-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.prize-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
}

.prize-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.prize-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.prize-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

.prize-card p {
  color: var(--text-gray-light);
  font-size: 1rem;
}

.dynamics {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
}

.dynamics h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-neon);
  margin-bottom: 20px;
  text-align: center;
}

.dynamics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.dynamics-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-darker);
  padding: 15px 25px;
  border-radius: 50px;
  color: var(--text-gray-light);
}

.dynamics-item span {
  font-size: 1.2rem;
}

/* ========================================
   Sponsors
   ======================================== */
.sponsors {
  background: var(--bg-dark);
}

.sponsors-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-gray-light);
  font-size: 1.1rem;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.sponsor-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border-color);
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.sponsor-placeholder:hover {
  border-color: var(--accent-orange);
  background: var(--bg-card-hover);
}

/* ========================================
   Marcas
   ======================================== */
.brands {
  background: linear-gradient(135deg, var(--bg-darker) 0%, #0a1a10 100%);
}

.brands-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.brands-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-white);
}

.brands-text h3 span {
  color: var(--accent-neon);
}

.benefits-list {
  list-style: none;
  margin-bottom: 30px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-gray-light);
  font-size: 1.05rem;
}

.benefits-list li span {
  color: var(--accent-neon);
  font-size: 1.3rem;
}

.brands-image {
  background: var(--bg-card);
  border: 2px dashed var(--accent-neon);
  border-radius: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 1rem;
  text-align: center;
  padding: 20px;
}

/* ========================================
   Formulario
   ======================================== */
.application {
  background: var(--bg-darker);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-gray-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-family: var(--font-main);
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-orange);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--accent-orange);
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--accent-neon);
  border-radius: 15px;
  margin-top: 20px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-success h4 {
  color: var(--accent-neon);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-gray-light);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  background: var(--bg-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-orange);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-main);
  background: transparent;
  border: none;
  color: var(--text-white);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question span {
  color: var(--accent-orange);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--text-gray-light);
  line-height: 1.7;
}

/* ========================================
   Contacto
   ======================================== */
.contact {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  color: var(--text-gray-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.contact-email {
  font-size: 1.3rem;
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-email a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email a:hover {
  color: var(--accent-orange-hover);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--bg-darker);
  padding: 50px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
}

.footer-logo span {
  color: var(--accent-orange);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--text-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--accent-neon);
  text-decoration: none;
}

/* ========================================
   Animaciones
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .brands-content {
    grid-template-columns: 1fr;
  }

  .brands-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .influencer-card.featured {
    grid-column: span 1;
  }

  .form-container {
    padding: 25px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }
}
