/* 🔵 Efecto de fondo con partículas */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #030303fd;
  color: white;
  overflow-x: hidden;
}
/* 🔵 Botón de Iniciar Sesión - Posicionamiento */
.login-btn {
  position: fixed;
  top: 20px;
  right: 40px; /* No pegado al borde */
  z-index: 1000;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  background: linear-gradient(45deg, #00e5ff, #0099ff);
  box-shadow: 0 0 15px rgba(0, 233, 255, 0.6);
  transition: all 0.3s ease-in-out;
}

/* 🔵 Efecto Hover - Luces Neon */
.login-btn:hover {
  background: linear-gradient(45deg, #0099ff, #00e5ff);
  box-shadow: 0 0 25px rgba(0, 233, 255, 0.9);
  transform: scale(1.1);
}

/* 🔵 Efecto al Hacer Click */
.login-btn:active {
  transform: scale(0.95);
}

/* 🔵 Efecto de Desplazamiento - Aparece y Desaparece */
.login-btn.hidden {
  transform: translateY(-100px);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}

/* 🔵 Animación de Entrada */
.login-btn.visible {
  transform: translateY(0);
  opacity: 1;
}

/* 🔵 Responsivo */
@media (max-width: 768px) {
  .login-btn {
    top: 15px;
    right: 20px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


/* 🔵 Fondo de partículas */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* 🔵 Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.subtitle {
  font-size: 1.2rem;
  letter-spacing: 2px;
  opacity: 0.8;
}

.title {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}

/* 🔵 Botón CTA */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: cyan;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out;
}

.cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px cyan;
}

/* 🔵 Scroll Down Animation */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  text-decoration: none;
  opacity: 0.8;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}/* 🔵 Ajuste del Logo en la Sección Principal */
.logo-container {
  display: flex;
  justify-content: center;
  margin-top: 20px; /* Espacio entre el título y el logo */
}

.hero-logo {
  width: 150px;  /* Ajusta el tamaño del logo */
  height: auto;
  filter: drop-shadow(0px 0px 10px cyan); /* Efecto de luz */
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* 🔵 Efecto Hover para el Logo */
.hero-logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0px 0px 20px cyan);
}



/* 🔵 Galería */
.gallery-section {
  text-align: center;
  padding: 50px 0;
  background-color: #111;
  overflow: hidden;
  position: relative;
}

/* 🔵 Contenedor del carrusel */
.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* 🔵 Track de las imágenes con espacio */
.gallery-track {
  display: flex;
  width: max-content; /* Permite el desplazamiento continuo */
  animation: scrollGallery 8s linear infinite; /* Más rápido y fluido */
  gap: 20px; /* Espacio entre imágenes */
}

/* 🔵 Ajuste de tamaño de las imágenes */
.gallery-item {
  width: 500px; /* MÁS ANCHO */
  height: 500px; /* MÁS ALTO */
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  flex-shrink: 0; /* Evita que se compriman */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* 🔵 Animación continua sin espacios vacíos */
@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Movimiento sin pausas */
}

/* 🔵 Efecto de detenerse al hacer hover */
.gallery-track:hover {
  animation-play-state: paused; /* Detiene el movimiento cuando pasas el mouse */
}

/* 🔵 Efecto de escala al hacer hover sobre una imagen */
.gallery-item:hover {
  transform: scale(1.2); /* Se agranda más */
  box-shadow: 0px 0px 25px cyan; /* Sombra más intensa */
}



/* 🔵 Diseño Responsive */
@media (max-width: 768px) {
  .title { font-size: 2.5rem; }
  .gallery-item { width: 300px; height: 200px; }
}
/* 🔵 Estilo General de la Sección */
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 10%;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
}

/* 🔵 Contenedor con Distribución */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

/* 🔵 Texto de Quiénes Somos */
.about-text {
  flex: 1;
  text-align: left;
  color: white;
}

.about-text h2 {
  font-size: 2.5rem;
  color: cyan;
  text-shadow: 0 0 10px cyan;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* 🔵 Imagen en la Sección */
.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 15px cyan;
  transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* 🔵 Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    flex: none;
    width: 100%;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}
/* 🔵 Sección de Servicios */
.services-section {
  text-align: center;
  padding: 80px 10%;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 1));
}

/* 🔵 Título de la Sección */
.section-title {
  font-size: 2.5rem;
  color: cyan;
  text-shadow: 0 0 10px cyan;
  margin-bottom: 40px;
}

/* 🔵 Contenedor de Tarjetas */
.services-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* 🔵 Tarjeta */
.service-card {
  width: 300px;
  height: 400px;
  perspective: 1000px; /* Habilita efecto 3D */
}

/* 🔵 Interior de la Tarjeta */
.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

/* 🔵 Tarjeta en Hover (gira 180°) */
.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* 🔵 Lado Frontal */
.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px cyan;
}

/* 🔵 Diseño del Lado Frontal */
.card-front {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 0 0 10px black;
}

/* 🔵 Diseño del Lado Posterior */
.card-back {
  background-color: cyan;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  box-shadow: inset 0 0 10px black;
}

/* 🔵 Responsive */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }
}
/* 🔵 Sección de Torneos */
.torneos-section {
  text-align: center;
  padding: 80px 10%;
  background: linear-gradient(to bottom, #0a0a0a, #000000);
}

/* 🔵 Título de la Sección */
.section-title {
  font-size: 2.5rem;
  color: cyan;
  text-shadow: 0 0 10px cyan;
  margin-bottom: 40px;
}

/* 🔵 Contenedor de Tarjetas */
.torneos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* 🔵 Tarjeta de Torneo */
.torneo-card {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.5);
}

/* 🔵 Imagen del Torneo */
.torneo-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px cyan);
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* 🔵 Efecto Hover */
.torneo-card:hover {
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0px 0px 25px cyan;
}

.torneo-card:hover .torneo-logo {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px cyan);
}

/* 🔵 Responsive */
@media (max-width: 768px) {
  .torneos-container {
    flex-direction: column;
    align-items: center;
  }
}
/* 🔵 Sección Directivos */
.directivos-section {
  text-align: center;
  padding: 80px 10%;
  background: linear-gradient(to bottom, #0a0a0a, #111);
}

/* 🔵 Título de la Sección */
.section-title {
  font-size: 2.5rem;
  color: cyan;
  text-shadow: 0 0 10px cyan;
  margin-bottom: 40px;
}

/* 🔵 Contenedor de Tarjetas */
.directivos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* 🔵 Tarjeta de Directivo */
.directivo-card {
  position: relative;
  width: 250px;
  height: 350px;
  perspective: 1000px;
  cursor: pointer;
}

/* 🔵 Lado Frontal de la Tarjeta */
.directivo-front, .directivo-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  transition: transform 0.5s ease-in-out;
}

/* 🔵 Estilo de la Parte Frontal */
.directivo-front {
  background-size: cover;
  background-position: center;
  transform: rotateY(0);
}

.directivo-front h3 {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  width: 100%;
  text-align: center;
  color: cyan;
  font-size: 1.5rem;
  font-weight: bold;
}

/* 🔵 Estilo de la Parte Trasera */
.directivo-back {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  transform: rotateY(180deg);
}

/* 🔵 Efecto Flip */
.directivo-card:hover .directivo-front {
  transform: rotateY(-180deg);
}

.directivo-card:hover .directivo-back {
  transform: rotateY(0);
}

/* 🔵 Responsive */
@media (max-width: 768px) {
  .directivos-container {
    flex-direction: column;
    align-items: center;
  }
}
/* 🔵 Estilo del Pie de Página */
.footer {
  background: linear-gradient(to right, #0a0a0a, #111); /* Degradado oscuro */
  padding: 30px 20px;
  text-align: center;
  color: white;
  font-size: 1.1rem;
  position: relative;
  box-shadow: 0px -5px 10px rgba(0, 255, 255, 0.3);
}

/* 🔵 Contenido del Pie */
.footer-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

/* 🔵 Elementos del Pie (Correo y Ubicación) */
.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* 🔵 Íconos del Pie */
.footer-item i {
  font-size: 1.5rem;
  color: cyan;
}

/* 🔵 Efecto al pasar el mouse */
.footer-item:hover {
  transform: scale(1.1);
  color: cyan;
}

/* 🔵 Texto del Copyright */
.footer-copy {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* 🔵 Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}
/* 🔵 Botón flotante de WhatsApp */
/* 🔵 Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.5);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-decoration: none;
}

/* 🔵 Efecto Hover */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 20px rgba(0, 255, 0, 0.8);
}

/* 🔵 Ícono de WhatsApp */
.whatsapp-float i {
  font-size: 2rem;
}
