/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



/* Título */
.KeD-reels-carousel h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00609F;
  text-align: center;

}

/* Envoltorio centrado */
.KeD-carousel-wrapper {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Contenedor del carrusel */
.KeD-carousel-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  min-width: fit-content;
}


.KeD-reel {
    flex: 0 0 auto;
    width: 144px;
    height: 276px;
    scroll-snap-align: center;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    animation: KeD-fadeInUp 0.6s ease-out;
    transition: box-shadow 0.3s ease;
    border: 2px solid #9F2943;
}

/* Sin animación de crecimiento */
.KeD-reel:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Video embebido */
.KeD-reel iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Animación de entrada */
@keyframes KeD-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll suave */
.KeD-carousel-wrapper::-webkit-scrollbar {
  height: 8px;
}

.KeD-carousel-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* Responsivo */
@media (max-width: 768px) {
  .KeD-reel {
    width: 120px;
    height: 210px;
  }

  .KeD-reels-carousel h2 {
    font-size: 1.5rem;
  }
}

