/*===============================
=      ESTILOS PERSONALIZADOS    =
===============================*/

/* Slider área general */
#slider-area {
    padding-top: 80px;
    padding-bottom: 80px;
}

.slider-area .container {
    flex-grow: 1;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Contenedor de imágenes del carrusel */
.slider-image {
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .slider-image {
        max-width: 100%;
    }
    
}

/* Imágenes del slider */
.slider-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Navegación del carrusel */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.owl-nav button {
    background: none;
    border: none;
    outline: none;
    pointer-events: all;
    cursor: pointer;
}

.owl-nav i {
    font-size: 36px;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/*===============================
=       TEXTOS Y BOTÓN         =
===============================*/

.area-heading h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.3;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.area-heading p {
    font-size: 1rem;
    color: #f1f1f1;
    margin-bottom: 20px;
}

.area-heading a {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
}

.area-heading a:hover {
    background-color: #fff;
    color: #000;
}

/*===============================
=       RESPONSIVE - GENERAL    =
===============================*/

@media (max-width: 991.98px) {
    .slider-area .text-md-center {
        text-align: center !important;
    }

    .slider-area .text-right {
        text-align: center !important;
    }

    .area-heading h1 {
        font-size: 2rem;
    }

    #slider-area {
        display: block;
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .slider-area .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (max-width: 767.98px) {
    #slider-area {
        padding-top: 0;
        padding-bottom: 0;
    }

    .area-heading {
        margin-bottom: 0;
    }

    .area-heading h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        text-align: center;
    }

    .area-heading p {
        font-size: 0.95rem;
        text-align: center;
    }

    .slider-image {
        margin-top: 20px;
    }
}




/* BOTÓN FLOTANTE DE WHATSAPP - RESPONSIVE Y MODERNO */
.whatsapp-float-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Botón principal */
.whatsapp-button {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-button:hover {
  background-color: #1ebc57;
  transform: scale(1.05);
}

/* Animación pulso */
.whatsapp-button.pulse {
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Opciones desplegables */
.whatsapp-options {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.whatsapp-options.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Botones secundarios */
.whatsapp-option {
  background-color: #25d366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-option i {
  margin-right: 10px;
  font-size: 18px;
}

.whatsapp-option:hover {
  background-color: #1ebc57;
  transform: translateX(-4px);
}

/* Accesibilidad y consistencia */
.whatsapp-option,
.whatsapp-option:hover,
.whatsapp-button,
.whatsapp-button:hover {
  text-decoration: none !important;
  color: #fff !important;
}

/* Responsive - Pantallas pequeñas */
@media (max-width: 480px) {
  .whatsapp-option {
    font-size: 14px;
    padding: 10px 12px;
  }

  .whatsapp-button {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
}
/* Fin de Styles Whatsapp */

/** Estilos para el producto */
.producto-card {
  background-color: #002450;
  border: 2px solid white;
  border-radius: 16px;
  padding: 20px;
  color: white;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
}

.producto-img-container {
  background-color: white;
  border-radius: 12px;
  height: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 10px;
}

.producto-img-container img {
  max-height: 100px;
  max-width: 90%;
  object-fit: contain;
}

.producto-estrellas {
  color: gold;
  font-size: 16px;
}

.producto-clientes {
  font-size: 12px;
  color: #ccc;
  margin-bottom: 10px;
}

.producto-nombre {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
}

.bullet {
  font-size: 14px;
  color: #9effff;
  margin: 3px 0;
}

.producto-precio {
  margin-top: 10px;
  margin-bottom: 15px;
}

.tachado {
  text-decoration: line-through;
  color: #aaa;
  font-size: 14px;
  margin-right: 5px;
}

.precio-actual {
  color: #00ff88;
  font-weight: bold;
  font-size: 18px;
}

.btn-producto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00c853;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 14px;
  height: 36px;
  transition: background-color 0.3s ease;
}

.btn-producto i {
  margin-right: 6px;
  font-size: 16px;
}

.btn-producto:hover {
  background-color: #00a243;
}


/* Fin de estilos para el producto */

.promo-card {
  background-color: #002450;
  border: 2px solid white;
  border-radius: 16px;
  padding: 20px;
  color: white;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.promo-contenido {
  max-width: 900px;
  margin: auto;
}

.icono-alerta {
  color: #ffc107;
  font-size: 32px;
  margin-bottom: 10px;
}

.promo-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.promo-card p {
  font-size: 16px;
  line-height: 1.5;
}

.resaltado {
  color: #00ff88;
  font-weight: bold;
}


.logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
}

.logo img {
    height: 60px !important;
    width: auto !important; /* Mantiene la proporción del logo */
}

.logo h4 {
    margin: 0 !important;
    font-size: 1.2rem !important;
    color: #002450 !important;
    font-weight: bold !important; /* Negrita */
}
