/*******************************************************************************/
/****************** FONDO ******************************************************/
/*******************************************************************************/
#bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../FOTOS_FONDOS/servicios_fondo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
/*******************************************************************************/


/************************************************************************/
/******************** DASHBOARD MODERNO SIN ANIMACIONES *****************/
/************************************************************************/
.dashboard {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to right, #0a0a0a, #111827, #0a0a0a);
  border-bottom: 2px solid #00ccff;
  box-shadow: 0 4px 25px rgba(0, 204, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 1000;
  font-family: "Poppins", sans-serif;
}
.dashboard-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #00ccff;
}
.dashboard-menu {
  display: flex;
  gap: 40px;
}
.dashboard-menu a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.dashboard-menu a:hover {
  color: #00ccff;
  border-color: #00ccff;
}
.dashboard-menu a.active {
  color: #ffffff;
  border-color: #00ccff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .dashboard {
    flex-direction: column;
    height: auto;
    padding: 15px 0;
    text-align: center;
  }
  .dashboard-logo img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .dashboard-menu {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
  .dashboard-menu a {
    font-size: 1rem;
  }
}
/************************************************************************/


/************************************************************************/
/*********************** SECCIÓN FUNDADORES *****************************/
/************************************************************************/
.fundadores-section {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 120px 0 60px;
  margin-top: 80px;
  border-top: 3px solid #00ccff;
  box-shadow: 0 0 40px rgba(0, 204, 255, 0.3);
}
.fundadores-title {
  font-size: 2.5rem;
  color: #00ccff;
  text-shadow: 0 0 20px rgba(0, 204, 255, 0.7);
  font-weight: 700;
}
.fundadores-subtitle {
  color: #ccc;
  margin-bottom: 50px;
}
.fundador-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #00ccff;
  border-radius: 20px;
  padding: 25px 15px;
  margin: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.fundador-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 204, 255, 0.6);
}
.fundador-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid #00ccff;
  margin-bottom: 15px;
}
.fundador-card h3 {
  color: #00ccff;
  font-weight: bold;
}
.discord {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.descripcion {
  color: #ddd;
  font-size: 0.95rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .fundador-card img {
    height: 180px;
  }
}
/************************************************************************/


/************************************************************************/
/******************** SECCIÓN RECOMENDACIONES ***************************/
/************************************************************************/
/* Fondo general de la sección */
.recomendaciones-section {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 60px 0;
  color: #fff;
}

/* Título principal */
.section-title {
  font-size: 2rem;
  color: #00ccff;
  text-shadow: 0 0 20px rgba(0, 204, 255, 0.7);
}

/* Subtítulo */
.section-subtitle {
  color: #ccc;
  margin-bottom: 40px;
}

/* Cuadro de cada recomendación grande, centrado y completo */
.recomendacion-cuadro {
  background: linear-gradient(to right, #0a0a0a, #111827, #0a0a0a);
  border: 2px solid #00ccff;
  border-radius: 25px;
  width: 90%;
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 20px;
  box-shadow: 0 0 25px rgba(0, 204, 255, 0.2);
}

/* Imagen grande y centrada sin efectos */
.recomendacion-cuadro img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid #00ccff;
  user-select: none;
}

/* Sin hover ni animación */
.recomendacion-cuadro:hover {
  transform: none;
  box-shadow: 0 0 25px rgba(0, 204, 255, 0.2);
}



/* VISOR PARA VER LA IMAGEN COMPLETA */
/* Quitar bloqueo de clic en imágenes */
.recomendacion-cuadro img {
  pointer-events: auto;
  cursor: pointer;
}

/* ===== VISOR DE IMÁGENES ===== */
.visor {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.visor:target {
  display: flex;
}

.visor img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  border: 2px solid #00ccff;
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 50px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}
/************************************************************************/



/************************************************************************/
/******************* FOOTER HORIZONTAL MODERNO Y FLUIDO *****************/
/************************************************************************/
/* Pie de página moderno */
.footer {
  width: 100%;
  background: linear-gradient(90deg, #0a0a12, #111122, #0a0a12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 50px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  height: 160px;
  filter: drop-shadow(0 0 10px #00e1ff);
  transition: filter 0.3s ease;
}
.footer-logo:hover {
  filter: drop-shadow(0 0 15px #00e1ff);
}
.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffffcc;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.social-link i {
  font-size: 1.4rem;
}
.youtube:hover {
  color: #ff0000;
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
}
.facebook:hover {
  color: #1877f2;
  border-color: #1877f2;
  background: rgba(24, 119, 242, 0.1);
}
.instagram:hover {
  color: #ff69b4;
  border-color: #ff69b4;
  background: rgba(255, 105, 180, 0.1);
}
.tiktok:hover {
  color: #00fff7;
  border-color: #00fff7;
  background: rgba(0, 255, 247, 0.1);
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .footer-right {
    flex-direction: column;
    gap: 12px;
  }
  .social-link {
    width: 80%;
    justify-content: center;
  }
  .footer-logo {
    margin-bottom: 25px;
  }
}
/************************************************************************/
