/* ===== Estilos generales ===== */
body {
  font-family: 'Poppins', sans-serif;
}

/* Botones flotantes */
.social-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.social-float__btn {
  display: block;
  margin-bottom: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #dabe4c;
  color: white;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  transition: background 0.3s;
}
.social-float__btn--fb { background: #3b5998; }
.social-float__btn--ig { background: #E4405F; }
.social-float__btn--tt { background: #000000; }
.social-float__btn--wa { background-color: #25D366; }
.social-float__btn:hover { background: #d3b127; }

/* Slider */
.carousel-caption {
  bottom: 20px;
  background-color: rgba(0, 123, 255, 0.7);
  border-radius: 10px;
  padding: 10px;
}
@media (max-width: 768px) {
  .carousel-caption h5 { font-size: 1rem; }
  .carousel-caption p  { font-size: 0.8rem; }
}

/* Eventos Cards */
.events__card {
  cursor: pointer;
  transition: transform 0.3s;
}
.events__card:hover {
  transform: scale(1.03);
}

/* GALERÍA DE VIDEOS */
#videosContainer {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Video card */
.video-card {
  position: relative;
  text-align: center;
  animation: fadeInUpCustom 0.8s ease forwards;
}
.video-thumb,
.video-card video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: block;
}
.play-icon {
  position: absolute;
  top:50%; left:50%;
  transform: translate(-50%,-50%);
  font-size:3rem;
  color: rgba(255,255,255,0.8);
  pointer-events:none;
  z-index:2;
}
.video-card:hover .play-icon { color: #fff; }

/* Botón descarga */
.download-btn {
  margin: 10px auto 0;
  display: inline-flex;
}

/* Código del vídeo */
.video-code {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin: 8px 0 4px;
}

/* Animación */
@keyframes fadeInUpCustom {
  0% { opacity:0; transform: translateY(20px); }
  100% { opacity:1; transform: translateY(0); }
}

/* Texto primario */
.text-primary {
  color: #d3b127 !important;
}



