body {
  margin: 0;
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: transparent !important;
  padding-top: 0 !important;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-image: url('/images/Fondos/Fondo_Retocado.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
}

/* === GRID DE ICONOS === */
.redes-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* === BOTONES INDIVIDUALES === */
.red-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.red-social i {
  font-size: 1.4rem;
}

.red-social.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.red-social.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.red-social.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8ddb);
}

.red-social:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
}


/* Sobrescribir el fondo gris por uno semitransparente */
.slide-desc-bg.slide-desc-bg-default {
    background: rgba(0, 0, 0, 0.6) !important; 
    opacity: 1 !important; /* Asegura que la capa sea visible */
}

/* Opcional: Si quieres que el bloque de texto sea un poco más elegante */
.slide-desc-text {
    padding: 15px !important;
}

.mb-4 {
    margin-bottom: 0.5rem !important;
}
