/* ====== ESTILOS GLOBALES ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff; /* fondo blanco */
  color: #000; /* texto negro */
  animation: fadeIn 1.2s ease-in-out;
}

/* ====== NAVBAR ====== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: #101010;
  border-bottom: 2px solid #00ff66;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #00ff66;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover, .navbar a.active {
  color: #00ff66;
}

/* ====== HERO ====== */
.hero {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom right, #001a0d, #000);
  text-align: center;
  animation: slideUp 1.5s ease;
}

.hero h3 {
  font-weight: 800;
  color: #CCC; /* BLANCO */
}

.hero h1 {
  font-weight: 800;
  color: #d4af37; /* Dorado Kaizer */
}

.hero p {
  color: #ccc;
  margin-top: 0.5rem;
}

/* ====== HEXAGONOS ====== */
.hex-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}

.hex {
  width: 250px;
  background: #111;
  border: 2px solid #00ff66;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: 0.3s;
}

.hex:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px #00ff6690;
}

.hex img {
  width: 100%;
  border-radius: 15px;
}

.hex h2, h3 {
  font-weight: 600;
  color: #FFFFFF; /* BLANCO Kaizer */
}

.hex p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #aaa;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: #00ff66;
  color: #000;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #00cc55;
}

/* ====== CONTENIDO ====== */
.content {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.content h2 {
  color: #00ff66;
  margin-bottom: 1rem;
}

.list {
  list-style: none;
  color: #ccc;
  padding: 0;
}

.list li {
  margin: 0.5rem 0;
}

/* ====== FORMULARIO ====== */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  padding: 0.6rem;
  border-radius: 6px;
  border: none;
}

button {
  background: #00ff66;
  border: none;
  padding: 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #00cc55;
}

/* ====== FOOTER ====== */
footer {
  background: #ffffff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  border-top: 2px solid #00ff66;
}

footer .socials a {
  color: #00ff66;
  text-decoration: none;
}

/* ====== ANIMACIONES ====== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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



/* Carrusel de logos con colores originales */
.carrusel-logos {
  overflow: hidden;
  background: #ffffff; /* Fondo negro para resaltar los logos */
  padding: 25px 0;
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(250px * 14);
  animation: scroll 45s linear infinite;
}

.slide {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  height: 70px;
  width: auto;
  margin: 0 20px;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}


.btn-enviar {
  background: #25D366;
  color: #fff;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-enviar:hover {
  background: #1ebe5b;
  transform: scale(1.05);
}



/* === eSports Page === */

.esports-hero {
  background: linear-gradient(135deg, #0a0a0a, #013220);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.esports-hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4af37; /* dorado */
}

.esports-jornada {
  text-align: center;
  padding: 40px 20px;
  background: #111;
  color: #fff;
}

.esports-jornada .fecha h3 {
  color: #d4af37;
  letter-spacing: 1px;
}

.fecha-card {
  display: inline-block;
  background: #1a1a1a;
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 15px 30px;
  margin: 20px 0;
}

.fecha-card p {
  font-size: 1.5em;
  font-weight: bold;
}

.fecha-card h4 {
  margin-top: 10px;
  color: #d4af37;
  font-weight: bold;
}

.fases {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.fases button {
  background: #d4af37;
  color: #000;
  border: none;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fases button:hover {
  background: #fff;
  color: #111;
  transform: scale(1.05);
}

/* Tabla de posiciones */
.tabla-posiciones {
  padding: 40px 10%;
  background: #000;
  color: #fff;
  overflow-x: auto;
}

.tabla-posiciones table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  min-width: 700px;
}

.tabla-posiciones th {
  background: #013220;
  color: #d4af37;
  padding: 12px;
  text-transform: uppercase;
}

.tabla-posiciones td {
  padding: 12px;
  border-bottom: 1px solid #222;
}

.tabla-posiciones img {
  height: 35px;
  width: auto;
  vertical-align: middle;
  margin-right: 10px;
}

.tabla-posiciones tr:hover {
  background: rgba(212, 175, 55, 0.1);
  transition: 0.3s;
}


/* === Equipos del Club === */

.equipos-hero {
  background: linear-gradient(135deg, #013220, #000);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.equipos-hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #d4af37; /* Dorado Kaizer */
}

.equipos-hero p {
  font-size: 1.1em;
  color: #000000;
}

.equipos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  padding: 60px 10%;
  background: #000000;
}

.equipo-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.equipo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.equipo-card img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.equipo-card h3 {
  color: #013220;
  font-weight: bold;
  font-size: 1.3em;
}



/* ===== Página de Contacto ===== */
.contacto-body {
  font-family: 'Poppins', sans-serif;
  background-color: #f6f6f6;
  color: #111;
  margin: 0;
  padding: 0;
}

.header {
  text-align: center;
  padding: 60px 20px 20px;
}

.header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5em;
  color: #013220; /* Verde Kaizer */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header p {
  max-width: 600px;
  margin: 10px auto;
  color: #555;
}

.contacto-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 30px;
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-card .icon {
  font-size: 3em;
  color: #d4af37; /* Dorado Kaizer */
  margin-bottom: 15px;
}

.contact-card h2 {
  font-family: 'Orbitron', sans-serif;
  color: #013220;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.contact-card p {
  color: #333;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #013220;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #d4af37;
  color: #111;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #013220;
  color: #fff;
  font-size: 0.9em;
}


/* ==== Redes Sociales ==== */
.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: white;
  font-size: 1.6em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #d4af37; /* Dorado Kaizer */
  transform: scale(1.2);
}
