/****************************************************************************************************/
/****************** FONDO ***************************************************************************/
/****************************************************************************************************/
/* Fondo general del menú - ARCHIVO (WEBP)***********************************************************/
#bg-image {
  position: fixed;                                     /* Fijo para que siempre se mantenga visible */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;                                       /* Ocupa toda la pantalla */
  background-image: url("../FOTOS_FONDOS/story.webp"); /* Ruta de tu imagen */
  background-size: cover;                              /* Abarca toda el área sin distorsión */
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;                                         /* Envía el fondo detrás de todo */
}
/***************************************************************************************************/



/************************************************************************/
/******************** 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;
}

/* Logo circular */
.dashboard-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #00ccff;
}

/* Menú principal */
.dashboard-menu {
  display: flex;
  gap: 40px;
}

/* Enlaces del menú */
.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;
}

/* Al pasar el mouse */
.dashboard-menu a:hover {
  color: #00ccff;
  border-color: #00ccff;
}

/* Al seleccionar o estar activo */
.dashboard-menu a:active,
.dashboard-menu a.active {
  color: #ffffff;
  border-color: #00ccff;
  font-weight: 600;
}

/* Diseño responsive */
@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;
  }
}
/************************************************************************/



/************************************************************************/
/************* CUADRO PRINCIPAL DE CAMUFLAJES ***************************/
/************************************************************************/

/* Fondo general del cuadro */
.camuflaje-section {
  background: rgba(0, 0, 0, 0.6); /* Fondo semitransparente oscuro */
  border-radius: 20px;
  padding: 40px;
  margin: 250px auto;
  width: 95%; /* 🔼 un poco más ancho */
  max-width: 1400px; /* 🔼 permite más espacio horizontal */
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

/* Subtítulo */
.camuflaje-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px; /* 🔼 más espacio entre el título y los videos */
  letter-spacing: 3px;
  color: #00ccff;
  text-shadow: 0 0 10px #0077ff;
  font-family: 'Poppins', sans-serif;
}

/* Cuadrícula de los 4 videos */
.camuflaje-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; /* 🔼 más espacio entre cuadros */
  justify-items: center; /* 🔼 centra los cuadros horizontalmente */
}

/* Cada cuadrito */
.camuflaje-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 15px; /* 🔼 más espacio interior */
  text-align: center;
  transition: transform 0.3s ease;
  width: 95%; /* 🔼 hace los cuadros más amplios dentro del grid */
}

.camuflaje-item:hover {
  transform: scale(1.05);
}

/* Videos */
.camuflaje-item video {
  width: 100%; /* ✅ ahora ocupa todo el ancho del cuadro */
  height: 260px; /* 🔼 un poco más alto */
  border-radius: 10px;
  object-fit: cover;
}

/* Descripción */
.camuflaje-item p {
  margin-top: 12px;
  font-size: 1rem; /* 🔼 un poco más grande */
  color: #ddd;
}

/* Responsive: se acomoda en pantallas pequeñas */
@media (max-width: 900px) {
  .camuflaje-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .camuflaje-item video {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .camuflaje-container {
    grid-template-columns: 1fr;
  }

  .camuflaje-item video {
    height: 200px;
  }
}

/************************************************************************/



/************************************************************************/
/*************************** CUADRO DISCORD *****************************/
/************************************************************************/

.discord-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: rgba(10, 10, 20, 0.9);
  border-top: 2px solid #5865F2; /* color Discord */
}

.discord-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 0 25px rgba(88, 101, 242, 0.3);
  border: 1px solid rgba(88, 101, 242, 0.3);
}

/* Ícono */
.discord-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
}

/* Título */
.discord-content h2 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Botón */
.discord-btn {
  display: inline-block;
  background: #5865F2;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.discord-btn:hover {
  background: #4752C4;
}

/* Subtítulo */
.discord-content p {
  margin-top: 20px;
  font-size: 1rem;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .discord-content {
    padding: 30px 20px;
  }

  .discord-content h2 {
    font-size: 1.5rem;
  }

  .discord-btn {
    font-size: 1rem;
    padding: 10px 25px;
  }
}



/************************************************************************/
/******************* FOOTER HORIZONTAL MODERNO Y FLUIDO *****************/
/************************************************************************/

.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;
  position: relative;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* Imagen del logo */
.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);
}

/* Contenedor de enlaces */
.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Enlaces de redes */
.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;
}

/* Ícono */
.social-link i {
  font-size: 1.4rem;
}

/* Efectos por red social (solo color al hover) */
.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);
}

.twitch:hover {
  color: #9146ff;
  border-color: #9146ff;
  background: rgba(145, 70, 255, 0.1);
}

.tiktok:hover {
  color: #00fff7;
  border-color: #00fff7;
  background: rgba(0, 255, 247, 0.1);
}

/* RESPONSIVE */
@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;
  }
}
/************************************************************************/
