



/*Servicios*/

.service-icon-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.service-icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Íconos */
.service-icon-card i {
  font-size: 2.5rem;
  color: var(--c-m);
  /* Magenta */
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-icon-card:hover i {
  color: var(--c-c);
  /* Cyan */
}

/* 🔹 Evitar que el título se desborde */
.service-icon-card h5 {
  font-weight: 600;
  color: var(--c-k);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  white-space: normal;
  /* Permite salto de línea si es largo */
  word-wrap: break-word;
  /* Rompe palabras largas si es necesario */
  text-overflow: ellipsis;
  /* Corta texto si se pasa del ancho */
  overflow: hidden;
}

.service-icon-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

  /* tablets y móviles grandes */
  .service-icon-card {
    padding: 1rem 0.8rem;
    max-width: 220px;
  }

  .service-icon-card i {
    font-size: 2rem;
  }

  .service-icon-card h5 {
    font-size: 0.95rem;
  }

  .service-icon-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {

  /* móviles pequeños */
  .service-icon-card {
    padding: 1.2rem 0.6rem;
    max-width: 200px;
  }

  .service-icon-card i {
    font-size: 1.8rem;
  }

  .service-icon-card h5 {
    font-size: 0.9rem;
  }

  .service-icon-card p {
    font-size: 0.8rem;
  }

  #servicios .row {
    --bs-gutter-x: 0.6rem;
    --bs-gutter-y: 0.8rem;
  }

  .service-icon-card {
    padding: 1rem 0.6rem;
  }
}


/*Fin servicios*/



/* ===== Reset & Base ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", sans-serif;
  color: var(--c-k);
  background: #fafafa;
  line-height: 1.5;
  padding-top: 90px;
  /* compensar navbar flotante */
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Navbar flotante ===== */
.navbar {
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0.8rem 1rem;
  z-index: 1050;
  /* asegúrate de que sea mayor que otros elementos */

}

.navbar.scrolled {
  background: var(--bg) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.navbar .nav-link {
  font-weight: 500;
  margin: 0 0.4rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--c-m);
}




/*FIN NAVIDAD*/






/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  /* sube o baja el punto de enfoque */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  /* sombra ligera al texto */
}


.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* Ajusta la opacidad (0.3 - 0.6) */
  z-index: 1;
}

.hero-content h1,
.hero-content p {
  color: white;
  /* asegúrate que el texto sea claro */
  text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.8);
  /* sombra oscura difusa */
}




/* ===== Secciones ===== */
.section {
  padding: 3rem 0;
}

.bg-c {
  background: rgba(1, 168, 223, 0.091);
}

.bg-m {
  background: rgba(225, 0, 124, 0.116);
}

.bg-y {
  background: rgba(255, 209, 0, 0.15);
}

.bg-k {
  background: var(--c-k);
}

/* ===== Tarjetas ===== */
.card {
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex: 0 0 80%;
  scroll-snap-align: start;
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  height: 180px;
  object-fit: cover;
}

.card h5 {
  padding: 0.8rem 1rem 0;
}

.card p {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
}



/* === Ajuste visual para tarjetas de Promociones (index) === */
.promo-card {
  max-width: 290px;
  border-radius: 16px;
  background: #ffffff;
  color: #000;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.promo-card img {
  width: 100%;
  height: 260px; /* 🔹 más alto que antes */
  object-fit: cover; /* 🔹 llena mejor el espacio */
  border-bottom: 1px solid #ddd;
}

.promo-card h5 {
  font-size: 1rem; /* 🔹 más grande y legible */
  font-weight: 700;
  margin: 0.6rem 0 0.3rem;
  text-align: center;
}

.promo-card h5 {
  font-size: 1rem; /* 🔹 más grande y legible */
  font-weight: 700;
  margin: 0.6rem 0 0.3rem;
  text-align: center;
}



/* --- ESTILOS ESPECÍFICOS PARA TARJETAS DE PRODUCTO/PROMOCIÓN --- */



.product-card {
  flex: 0 0 220px;
  /* ancho mayor, antes seguro estaba en 200px o 220px */
  max-width: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  max-height: 370px;
}

.product-card p {
  margin: 0px;
  padding: 5px;
}

.product-card:hover {
  transform: translateY(-5px);
}


/*Promo mas vendida*/
/* === Etiqueta "Promo más vendida" === */
.badge-popular {
  max-height: 30px;
  position: absolute;
  top: 0px;
  left: -5px;
  background: linear-gradient(45deg, #ff0000, #ff9900);
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 0 10px 10px 0;
  animation: pulseBadge 1.5s infinite;
  box-shadow: 0 0 10px rgba(255, 120, 0, 0.6);
}



/* === Animación brillante / parpadeo === */
@keyframes pulseBadge {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 120, 0, 0.7);
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.9);
  }
}

/* Opcional: también puedes hacer que toda la tarjeta destaque un poco */
.mas-vendida {
  border: 3px solid #ff9900;
  animation: glowCard 2s infinite alternate;
}

@keyframes glowCard {
  from {
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
  }

  to {
    box-shadow: 0 0 25px rgba(255, 200, 0, 0.9);
  }
}

/* ===== Ajustes responsivos para las promos ===== */


/*Mas vendida*/

/* ANIMACIONES DE PROMOS*/

/* ✨ Botón "Adquirir Promo" animado */
.adquirir-btn {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  color: #fff;
  border: none;
  background: linear-gradient(90deg, #00A7E1, #007BFF);
  transition: all 0.3s ease;
  animation: pulseButton 2.5s infinite ease-in-out;
}

.adquirir-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 16px rgba(0, 167, 225, 0.7);
}

/* ✨ brillo diagonal */
.adquirir-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  animation: shineButton 3s infinite;
}

@keyframes shineButton {
  0% {
    left: -80px;
  }

  60% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

@keyframes pulseButton {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 167, 225, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(0, 167, 225, 0.7);
  }
}

/*Fin animaciones*/







#promociones {
  position: relative;
  /* 🔑 Necesario para posicionar los globos dentro */
  overflow: hidden;
  /* evita que los globos salgan de la sección */
  z-index: 1;
  /* asegura que esté encima del resto del layout */
}


.balloon {
  position: absolute;
  bottom: -60px;
  width: 30px;
  height: 40px;
  border-radius: 50% 50% 45% 45%;
  opacity: 0.8;
  animation: balloonRise 8s linear infinite;
}



/* Subida */
@keyframes balloonRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translateY(-120vh) scale(1.2);
    opacity: 0;
  }
}

/* Movimiento de giro separado */
@keyframes balloonRotate {
  0% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(5deg);
  }
}

.card .product-card h5 {
  text-align: center;
}


.promociones-container {
  position: relative;
  /* 🔑 para que los botones se ubiquen sobre él */
  overflow-x: hidden;
  padding: 0 40px;
  /* opcional para que haya espacio lateral */
}








/*EFECTO DE AMPLIAR*/
/* Aplica a todas las imágenes de tarjetas */
/* 🎯 Zoom en imágenes (responsive) */
.promo-card img,
.product-card img,
.service-card img {
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 220px;
  /* aumenta el alto (ej. antes estaba en 150px) */
  object-fit: contain;
  /* ocupa todo el espacio sin deformarse */
  display: block;
}


/* Zoom por defecto (para móvil) */
.promo-card img:hover,
.product-card img:hover,
.service-card img:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* 📌 Ajuste para pantallas grandes */
@media (min-width: 992px) {

  .promo-card img:hover,
  .product-card img:hover,
  .service-card img:hover {
    transform: scale(1.02);
    /* Menos zoom en PC */
    filter: brightness(1.03);
    /* Más sutil */
  }
}


/* Modal de imagen */
.img-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.img-modal-content img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

/* Animación de salida del modal */
.img-modal.fade-out {
  animation: fadeOut 0.2s ease forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}


/* 🎯 Ajuste para pantallas grandes (PC) */
@media (min-width: 992px) {
  .img-modal-content img {
    max-width: 40vw;
    /* 40% del ancho de la pantalla */
    max-height: 70vh;
    /* no más alto del 70% de la pantalla */
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}





/* ===== Contacto ===== */
form {
  max-width: 600px;
  margin: auto;
}

/* ===== Footer ===== */
.footer {
  background: var(--c-k);
  color: white;
  padding: 1rem;
}

/* --- WhatsApp --- */
.whatsapp-float {
  position: fixed;
  bottom: 0px;
  /* más alto, deja espacio para Instagram debajo */
  right: 20px;
  z-index: 999;
  text-align: center;
}

.whatsapp-float img {
  width: 55px;
  /* 🔹 más pequeño */
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}


/* --- Instagram debajo --- */
.instagram-float {
  position: fixed;
  bottom: 25px;
  /* 🔹 debajo del WhatsApp */
  right: 20px;
  z-index: 999;
}

.instagram-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  padding: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-float img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(221, 42, 123, 0.8);
}

.whatsapp-float img,
.instagram-float img {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  }
}




.footer-colored {
  background: var(--c-k);
  /* Por ejemplo, tu azul CMYK */
  color: white;
}

.footer-phrase {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

/*Comienzo productos*/
/* Tarjetas de productos */
#productos .product-card {
  width: 200px;
  /* 🔹 ancho menor */
  height: 400px;
  /* 🔹 altura menor */
  border-radius: 14px;
  background: var(--c-k);
  color: #fff;
  margin: 0 8px;
  padding: 1rem 0.5rem;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===== AJUSTE TAMAÑO DE IMAGEN EN MODAL DE OPCIONES ===== */

#productOptionsModal #modalImage {
  /* Define un tamaño máximo para la imagen */
  max-width: 260px;
  max-height: 260px;

  /* La centramos dentro de su columna */
  display: block;
  margin: 0 auto 1rem;
  /* 0 auto para centrar, 1rem de margen inferior */

  /* Asegura que la imagen completa se vea sin ser recortada */
  object-fit: contain;
}

#productos .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* Imagen del producto */
#productos .product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.7rem;
}

/*Animacion de boton*/
/* ============================================================
   ✨ BOTÓN "VER CATÁLOGO COMPLETO"
   ============================================================ */
/* ============================================================
   ✨ BOTÓN "VER CATÁLOGO COMPLETO"
   ============================================================ */
/* ============================================================
   🖤 BOTÓN "VER CATÁLOGO COMPLETO" — NEGRO CON BRILLO
   ============================================================ */

.btn-catalogo {
  position: relative;
  display: inline-block;
  background: #000;
  /* negro sólido */
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.35s ease;
  overflow: hidden;
}

.btn-catalogo:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ✨ brillo diagonal */
.btn-catalogo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75px;
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -75px;
  }

  50% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}







/*CATALOGO*/



/* ===== ESTILOS PARA LA PÁGINA DE CATÁLOGO ===== */

/* Grilla de productos: añade espacio vertical entre filas en móviles */
#productGrid {
  row-gap: 1.5rem;
}


/* Estilo unificado para las tarjetas del catálogo */
#productGrid .product-card {
  border: none;
  border-radius: var(--radius);
  /* Usa tu variable de radio definida */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* Importante para que la imagen no se salga del radio */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

#productGrid .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



/* La clave para imágenes consistentes y de buen tamaño */
#productGrid .product-card img {
  width: 100%;
  max-height: 150px;
  aspect-ratio: 1 / 1;
  /* Proporción cuadrada perfecta. ¡Ajusta si lo necesitas! (ej. 4/3) */
  object-fit: cover;
  /* Rellena el espacio sin deformar la imagen */
  cursor: pointer;
  /* Indica que la imagen es clickeable */
}


/* Cuerpo de la tarjeta para alinear contenido */
#productGrid .card-body {
  padding: 1rem;
  /* Espaciado interno consistente */
}

#productGrid .card-title {
  font-size: 1rem;
  font-weight: 450;
  /* Un poco más de peso al título */
  margin-bottom: 0.5rem;

}

#productGrid .card-text {
  font-size: 0.9rem;
  color: #e0e0e0bb;
  /* Un gris claro para el precio, en lugar de blanco puro */
}

:root {
  --c-c: #00A7E1;
  --c-m: #D72A86;
  --c-y: #F8BD23;
  --c-k: #0f1723;
  --bg: #fafafa;
  --muted: #6b7280;
  --radius: 12px;
}

/* ============================================================
   ✨ NUEVOS ESTILOS PARA TIENDA/CATÁLOGO (Añadir al final)
   ============================================================ */

/* 1. Estilo para el precio en la tarjeta (reemplaza "Ver Opciones") */
.card-price-tag {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-k);
  /* Color negro principal */
  margin: 0;
  padding: 0.5rem 1rem;
  background-color: rgba(248, 189, 35, 0.2);
  /* Fondo amarillo suave (CMYK-Y) */
  border-radius: 0 0 var(--radius) var(--radius);
}

.product-card:hover .card-price-tag {
  background-color: var(--c-y);
  /* Amarillo sólido al pasar el mouse */
  color: var(--c-k);
}

/* 2. Efecto "Galería" en la imagen de la tarjeta */
.product-card-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}




/* Añade un ícono de "múltiples imágenes" */
.product-card-image-wrapper::after {
  content: "🖼️";
  /* Puedes cambiarlo por un ícono de Bootstrap/FontAwesome si prefieres */
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 2px 6px;
  border-radius: 6px;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.product-card:hover .product-card-image-wrapper::after {
  opacity: 1;
  transform: scale(1.1);
}





/*Sugerencias*/
/* ===== ESTILOS PARA SUGERENCIAS DE BÚSQUEDA ===== */
.suggestion-tags {

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* Para que se apilen en móviles */
  gap: 0.5rem;
}

.suggestion-tags span {
  font-weight: 500;
  color: var(--muted);
  margin-right: 0.5rem;
}

.suggestion-tag {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 20px;
  /* Píldoras redondeadas */
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.suggestion-tag:hover {
  background-color: var(--c-k);
  /* Tu color negro */
  color: white;
  border-color: var(--c-k);
}

/*Buscador*/

/* ===== Fijar buscador al escribir ===== */
.search-fixed {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  padding: 0.8rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}


/* ===== Botón Limpiar del buscador ===== */
/* ===== Botón Limpiar del buscador ===== */
.clear-btn {
  position: absolute;
  right: 30px;
  /* 🔹 más hacia la izquierda */
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  /* leve fondo blanco */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  font-size: 1.1rem;
  color: #e63946;
  /* 🔴 rojo suave pero visible */
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.clear-btn:hover {
  background: #e63946;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.clear-btn:active {
  transform: translateY(-50%) scale(0.95);
}


.btn-pago:hover {
  background: #ffc933;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  .selector-aviso {
    max-width: 90%;
    padding: 12px;
  }

  .selector-aviso h3 {
    font-size: 15px;
  }

  .btn-pago {
    font-size: 13px;
  }
}




/* ============================================================
   📱 AJUSTES RESPONSIVE PARA MÓVILES
   ============================================================ */

/* ===== Ajustes Responsivos para Promo Cards (col-6) ===== */
@media (max-width: 767px) {

  .promo-card h5 {
    font-size: 1.0rem;
    /* Título más pequeño */
    padding-top: 0.5rem;
  }

  .promo-card img {
    object-fit: contain;
  }

  .promo-card p {
    font-size: 0.9rem;
    /* Párrafo más pequeño */
    padding-bottom: 0.5rem;
  }

  .adquirir-btn {
    font-size: 0.9rem;
    /* Letra del botón más pequeña */
    padding: 0.6rem 1rem;
    /* Botón menos alto (menos padding) */
  }
}



@media (max-width: 576px) {



  /* 🔹 Header (Hero) más bajo en móvil */
  header.hero {
    min-height: 5vh !important;
    /* antes 25vh */
    padding: 1rem 0 !important;
  }

  header.hero h1 {
    font-size: 1.6rem;
    /* reduce tamaño del título */
    margin-bottom: 0.5rem;
  }


  .suggestion-tags .suggestion-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
    margin: 0.2rem;
  }

  /* 🔹 Buscador más pequeño */
  #productSearch {
    padding: 0px;
    font-size: 0.9rem;
    height: auto;
    border-radius: 25px;
  }


}


/* ESTILOS PARA MODAL DE PRODUCTOS Y PROMOCIONES*/



/* 1. Por defecto (PC): Centrada y con un máximo razonable */
.modal-body .img-fluid {
  max-width: 300px;
  display: block;
  margin: 0 auto 0.75rem;
  /* Centra la imagen horizontalmente */
}

.modal-body img {
  width: 100%;
  height: auto;
  object-fit: contain; /* En lugar de cover */
}


/* 2. Excepción para el modal de Acrílico (que es de 2 columnas) */
#acrilicoModal .img-fluid {
  width: 100%;
  /* Ocupa el 100% de su columna */
  max-height: 180px;
  /* <-- LÍMITE DE ALTURA (ajústalo si quieres) */
  object-fit: cover;
  /* <-- CLAVE: Escala la imagen para que quepa sin cortarse */
  margin-bottom: 1rem;
  /* Le da un respiro abajo */
}

/* Estilo mejorado para las tarjetas de producto (Esto se queda igual) */
.product-card {
  border: 1px solid #eee;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
}

.product-card .btn-ver-opciones {
  margin-top: auto;
  background-color: var(--c-k);
  border-color: var(--c-k);
  color: white;
  font-weight: 600;
}

/* Código actualizado */
.btn-ver-opciones {
  display: inline-flex;
  position: relative;
  background: linear-gradient(90deg, #001536, #001c3f);
  color: #fff;
  padding: 6px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
  animation: pulseButton 3s infinite;
  border: none;

}

.product-card .btn-ver-opciones:hover {
  background-color: #333;
  border-color: #333;
}

.card-price-tag {
  font-size: 1.1rem;
  font-weight: 600;
  color: #555;
}

/* Estilos para el nuevo modal de pago (AQUÍ ESTÁN LOS CAMBIOS) */
.modal-info-col {
  display: flex;
  flex-direction: column;
}

.modal-body p.text-muted {
  font-size: 0.8rem;
  /* <-- Reducido (antes 0.85) */
  line-height: 1.4;
  margin-bottom: 0.75rem;
  /* <-- Menos espacio */
}

.selector-pago h6 {
  font-size: 0.85rem;
  /* <-- Reducido (antes 0.9) */
  margin-bottom: 0.4rem;
}

.selector-pago .form-select,
.selector-pago .form-select-lg {
  font-size: 0.9rem;
  /* <-- Reducido (antes 0.95) */
  padding-top: 0.5rem;
  /* <-- Menos padding */
  padding-bottom: 0.5rem;
  /* <-- Menos padding */
  height: auto;
}

.btn-pago-directo {
  font-size: 0.9rem;
  /* <-- Reducido (antes 0.95) */
  padding: 0.6rem 1rem;
  /* <-- Menos padding */
}

.modal-footer-note {
  font-size: 0.9rem;
  padding: 0.75rem;
  margin-top: 0.75rem;
  /* <-- Menos espacio */
}


.modal-product-title {
  font-weight: 800;
  color: var(--c-k);
  font-size: 1rem;
  /* <-- Reducido (antes era como un h4) */
  margin-bottom: 0.5rem;
  /* <-- Menos espacio */
}

/* --- FIN NUEVOS ESTILOS --- */

/* 3. EN MÓVILES: Hacemos la imagen más pequeña */
@media (max-width: 576px) {
  .modal-body .img-fluid {
    max-width: 220px;
    /* Más compacta para móviles */
  }

  /* La excepción del modal de acrílico se mantiene igual */
  #acrilicoModal .img-fluid {
    max-width: 90%;
  }
}



/* Efecto de destello en movimiento */
.btn-ver-opciones::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  animation: shineButton 3s infinite;
}

/* Destello que cruza el botón */
@keyframes shineButton {
  0% {
    left: -80px;
  }

  60% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

/* Pulso suave del botón */
@keyframes pulseButton {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.7);
  }
}

/* Efecto hover (más brillo) */
.btn-ver-opciones:hover {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.8);
  cursor: pointer;
}


/*COMIENZO DE MODAL PROMOCIONES*/
/* 🔹 Ajusta el tamaño del título principal dentro del modal */
.modal-title {
  font-size: 1rem !important; /* Más pequeño que el tamaño por defecto */
  font-weight: 600;
}

/* 🔹 Ajusta el tamaño del título del producto */
.modal-product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}


/*Fin ver opciones y efectos*/



/* ===== PRODUCTOS ICON-CARD (RESPONSIVO COMO SERVICIOS) ===== */
.product-icon-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.product-icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-icon-card i {
  font-size: 2.5rem;
  color: var(--c-c);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.product-icon-card:hover i {
  color: var(--c-m);
}

.product-icon-card h5 {
  font-weight: 600;
  color: var(--c-k);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.product-icon-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .product-icon-card {
    padding: 1rem 0.8rem;
    max-width: 220px;
  }

  .product-icon-card i {
    font-size: 2rem;
  }

  .product-icon-card h5 {
    font-size: 0.95rem;
  }

  .product-icon-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .product-icon-card {
    padding: 1rem 0.6rem;
    max-width: 200px;
  }

  .product-icon-card i {
    font-size: 1.8rem;
  }

  .product-icon-card h5 {
    font-size: 0.9rem;
  }

  .product-icon-card p {
    font-size: 0.8rem;
  }

  #productos .row {
    --bs-gutter-x: 0.6rem;
    --bs-gutter-y: 0.8rem;
  }
}


/* ==== MARCAS ALIADAS ==== */
.aliados-section {
  background: rgba(255, 255, 255, 0.623);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 25px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}



.aliados-title {
  font-weight: 600;
  color: #222;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.aliado-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
  animation: floatAnimation 4s ease-in-out infinite;
}

.aliado-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.aliado-item:hover .aliado-logo {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  filter: brightness(1.1);
}

.aliado-nombre {
  font-size: 0.8rem;
  font-weight: 500;
  color: #444;
  margin-top: 6px;
  transition: color 0.3s ease;
}

.aliado-item:hover .aliado-nombre {
  color: #007bff;
  /* Color acento Visual Online */
}

/* Animación flotante */
@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }
}


/*PROMO FLASH*/

/* === Cuadro flotante mini === */
.promo-float {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 110px;
  /* 🔸 aún más pequeño */
  background: linear-gradient(135deg, #ff7b00, #ff4500);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 94, 0, 0.5);
  overflow: hidden;
  z-index: 9999;
  animation: bounceIn 0.8s ease;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.2s ease;
}

.promo-float:hover {
  transform: scale(1.05);
}

.promo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 70%);
  animation: glowMove 3s infinite alternate;
  z-index: 0;
}

.promo-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8px;
}

.promo-content h2 {
  font-size: 0.8em;
  font-weight: 700;
  text-shadow: 0 0 4px #fff;
  margin-bottom: 4px;
}

.promo-img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  margin: 4px 0;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
}

.promo-text {
  font-size: 0.7em;
  margin: 4px 0;
}

.promo-text span {
  background: #fff;
  color: #ff4500;
  padding: 1px 4px;
  border-radius: 6px;
  font-weight: bold;
}

.promo-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  margin: 5px 0;
  font-size: 0.8em;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 3px 6px;
  backdrop-filter: blur(4px);
}

.promo-btn {
  background: #fff;
  color: #ff4500;
  border: none;
  font-size: 0.75em;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  animation: shake 3s infinite;
}

.promo-btn:hover {
  background: #ffe3d0;
}

.promo-close {
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
  z-index: 2;
}

.promo-close:hover {
  color: #000;
}

/* === Stock pequeño y llamativo === */
.promo-stock {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: linear-gradient(90deg, #ff8c00, #ffb347);
  color: #fff;
  font-weight: 600;
  font-size: 0.7rem;
  border-radius: 20px;
  padding: 3px 8px;
  box-shadow: 0 2px 6px rgba(255, 140, 0, 0.4);
  animation: pulse 2s infinite;
}

.promo-stock i {
  font-size: 0.75rem;
}

/* === Animaciones === */
@keyframes bounceIn {
  0% {
    transform: scale(0.8) translateY(80px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes glowMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100% 100%;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(2px);
  }
}


/*Ajuste modal promociones*/

/* ===== Unificar estilo de modales en INDEX con catálogo ===== */

/* === Ajustes modales (imagen más grande, texto equilibrado) === */
.modal-content {
  border-radius: 14px;
  overflow: hidden;
}

.modal-header {
  border-bottom: none;
  padding: 0.8rem 1rem;
}

.modal-title {
  font-size: 1rem;
  font-weight: 600;
}

.modal-body {
  padding: 1.2rem;
}

/* Imagen del modal */
.modal-body img {
  width: 100%;
  height: 280px; /* 🔹 más grande que antes */
  object-fit: contain;
  border-radius: 10px;
}

/* Título del producto */
.modal-product-title {
    font-size: 1.1rem !important;

  font-weight: 600;
  margin-bottom: 0.4rem;
}

/* Texto descriptivo */
.modal-body p {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Botón MercadoPago (más pequeño y visualmente igual al catálogo) */
.btn-pago-directo {
  font-size: 0.85rem !important;
  padding: 8px 12px !important;
  border-radius: 8px;
  background: #ffb300;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-whatsapp-directo {
  background-color: #1fbb58da;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-whatsapp-directo:hover {
  background-color: rgba(0, 0, 0, 0.911);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}


.btn-pago-directo:hover {
  background: #ffcc33;
  transform: translateY(-2px);
}

/* Select de medidas */
.modal-body select.form-select {
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 6px;
}

/* Nota inferior */
.modal-footer-note {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.8rem;
}
