/*====================================================
=====================================================
SLIDER HOME
====================================================
=====================================================*/

/* Tipografía Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Fondo general para mejorar contraste */
#slider .carousel-item {
  position: relative;
}

#slider .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.50),
    rgba(0, 0, 0, 0.20)
  );
  z-index: 1;
  pointer-events: none;
}

/* Contenedor del texto — SIN el fondo negro */
#slider .carousel-caption.carousel-item-verti-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  text-align: left;
  padding: 0;
}

/* Eliminamos TOTALES fondos previos */
#slider .carousel-caption.carousel-item-verti-center::before {
  display: none !important;
}

/* Títulos con animación más notoria */
#slider .titulo-h1 {
  font-family: "Poppins", sans-serif !important;
  color: #ffffff !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  line-height: 1.05;
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.2rem) !important;

  /* Glow + impacto */
  text-shadow:
    0 0 8px rgba(0,0,0,0.45),
    0 8px 16px rgba(0,0,0,0.55),
    0 0 28px rgba(0,0,0,0.35);

  /* Animación más llamativa */
  animation: slideZoomFade 1.2s ease-out both;
}

/* Ocultar h2 vacío */
#slider .titulo-h2 {
  display: none !important;
}

/* Mobile */
@media (max-width: 767.98px) {
  #slider .carousel-caption.carousel-item-verti-center {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
  }

  #slider .titulo-h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    text-align: center;
  }
}

/* Animación más visible */
@keyframes slideZoomFade {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.92);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.03);
    filter: blur(0px);
  }
  100% {
    transform: scale(1);
  }
}

/*====================================================
=====================================================
FIN SLIDER HOME
====================================================
=====================================================*/
section.mb-5.mt-5 .form-contact {
    display: none !important;
}


/* Forzar que el icono hamburguesa sea visible y color naranja MIL IDEAS */
.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 6px 8px;
}

/* Reemplazamos el ícono por defecto con uno personalizado naranja */
.navbar-toggler .navbar-toggler-icon {
    width: 28px;
    height: 3px;
    background-color: #ED6F0B; /* línea superior */
    border-radius: 4px;
    position: relative;
    display: block;
}

/* Las otras dos líneas */
.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background-color: #ED6F0B;
    border-radius: 4px;
}

/* Línea media (elemento principal) ya está creada arriba */
.navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
}

/* Mostrar SOLO en mobile */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}


/*FICHA DEL PRODUCTO*/
/* Imagen principal en modo CONTAIN */
.containerImagePrincipal div[style*="background"] {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Thumbs también en modo CONTAIN */
.ficha_carousel_img div[style*="background"] {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Ajuste para evitar que el contenedor se achique */
.containerImagePrincipal div[style*="height"] {
    background-color: #ffffff; /* opcional para evitar fondos oscuros */
}

/* Ajustar thumbs para que nunca se deformen */
.ficha_carousel_img div {
    background-color: #ffffff; /* opcional, mantiene estética limpia */
    border: 1px solid #eee;
    border-radius: 8px;
}

/* Para Owl Carousel – evita recortes laterales */
.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel .owl-item div[style*="height: 100px"] {
    width: 120px !important; /* ajuste opcional más compacto */
    height: 100px !important;
}

