/* ==== VIDEO SLIDER ==== */
.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  background: #000;
}

.slider-video {
  width: 100%;
  height: 230px;
  /* Ajusta según el tamaño del contenedor */
  object-fit: cover;
  display: block;
  border-radius: 10px;
  background: #000;
}

/* ==== ITEM DEL CARRUSEL ==== */
.owl-carousel .item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owl-carousel .item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* iconos */

.social-icons {
  display: flex;
  justify-content: center; /* centra horizontalmente */
  align-items: center; /* centra verticalmente si hay altura fija */
  gap: 15px; /* espacio entre íconos */
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.social-icons li {
  display: inline-block;
}

.social-icons a {
  text-decoration: none;
  color: #000; /* cambia según fondo */
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #f16c14; /* tono rosado tipo TikTok */
}




/* ================================
   SECCIÓN FINAL - EL MERCADITO ✨
   by Ing. Ryan Rivera
   ================================ */

   
