body {
    box-sizing: border-box;
    font-family: sans-serif;
    background-color: #fff;
}

.color {
    background-color: #01325A;
    text-align: center;
    width: 100px;
    height: 100px;
    margin: auto;
    margin-top: 30px;
    padding: 10px 10px;
    border-radius: 8px;
}

.color-2 {
    /* background-color: #008aad; */
}

.color_title {
    font-size: 15px;
    margin: 0;
    margin-top: 20px;
}

.color_subtitle {
    font-size: 20px;
    font-weight: 100;
    letter-spacing: 1px;
    margin: 0;
    margin-top: 5px;
}
/* ============================================================================================================================================
                                                                BARRA DE NAVEGACIÓN
   ============================================================================================================================================ */

.navbar {
    background-color: #0067A0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.navbar-logo {
    flex-shrink: 0;
}

.navbar-logo a {
    display: block;
}

.logo-img {
    height: 25px;
    width: auto;
    object-fit: contain;
}

/* Menú de Navegación - Desktop */
.navbar-menu {
    display: flex;
    align-items: center;
}

/* Contenedor tipo cápsula blanca 
.nav-capsule {
    background-color: #ffffff;
    padding: 8px 25px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}*/

.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 12px 25px;
    color: #ffffffc5;
    text-decoration: none;
    font-weight:300;
    font-size: 14px;
    
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Link activo - Fondo turquesa con bordes redondeados */
.nav-link.active {
    
   font-weight:700;
    /* color: #008aad; */
}

/* Hover en links no activos */
.nav-link:not(.active):hover {
   text-decoration: underline;
   font-weight:700;
   
}

/* Botón Hamburguesa (oculto en desktop) */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.toggle-icon {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===================================
   RESPONSIVE - TABLET Y MÓVIL (≤768px)
   =================================== */

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .navbar .container {
        padding: 0 15px;
    }

    /* Logo más pequeño en móvil */
    .logo-img {
        height: 40px;
    }

    /* Mostrar botón hamburguesa */
    .navbar-toggle {
        display: flex;
    }

    /* Menú móvil - Oculto por defecto */
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #01325A;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .navbar-menu.active {
        right: 0;
    }

    .nav-capsule {
        background-color: transparent;
        padding: 0;
        box-shadow: none;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        background-color: #0067A0;
        padding: 12px 20px;
        text-align: center;
        border-radius: 8px;
        font-size: 13px;
    }

    .nav-link.active,
    .nav-link:hover {
        background-color: #008aad;
        color: #ffffff;
    }

    /* Animación del botón hamburguesa */
    .navbar-toggle.active .toggle-icon:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .navbar-toggle.active .toggle-icon:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active .toggle-icon:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Overlay cuando el menú está abierto */
    .navbar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO (≤480px)
   =================================== */

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }

    .logo-img {
        height: 35px;
    }

    .navbar-menu {
        width: 85%;
        padding: 70px 20px 20px;
    }

    .nav-link {
        padding: 10px 15px;
        font-size: 12px;
    }
}



/* ============================================================================================================================================
                                                           SECCIÓN HIDRÁTATE ESTE VERANO
   ============================================================================================================================================ */

.hidratate-section {
    position: relative;
    /* 🔑 IMAGEN DE FONDO PARA ESCRITORIO */
    background-image: url('../img/BKG_Home.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hidratate-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 40px 0;
}



/* Botón */
.hidratate-button-wrapper {
    display: flex;
    justify-content: center;
}

.btn-registra-compras {
    display: inline-block;
    background-color: #ffffff;
    color: #01325A;
    font-weight: 800;
    font-size: 1rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-registra-compras:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Productos */
.hidratate-productos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* padding: 40px 0; */
}

.hidratate-productos-img {
    max-width: 96%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
   
}

/* ===================================
   RESPONSIVE - TABLET (≤991px)
   =================================== */

@media (max-width: 991px) {
     .hidratate-section {
        background-image: url('../img/BKG_Home_mb.png');
        background-size: cover;
        background-position: center center;
        background-attachment: scroll; /* Mejor rendimiento en móvil */
    }

    .hidratate-content {
        /* padding: 30px 0; */
        text-align: center;
        align-items: center;
    }

   
    .hidratate-button-wrapper {
        justify-content: center;
    }

    .hidratate-productos-wrapper {
        /* padding: 30px 0; */
    }

    .hidratate-productos-img {
        max-height: 400px;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL (≤767px)
   =================================== */

@media (max-width: 767px) {
    .hidratate-section {
        /* padding: 50px 0; */
    }

    .hidratate-content {
        /* padding: 20px 0; */
    }

    .hidratate-title-img {
        max-width: 95%;
        max-height: 100px;
    }

    .hidratate-productos-img {
        max-height: 350px;
    }

    .hidratate-button-wrapper {
        margin-top: 5px !important; /* 🔑 Botón hasta el final */
        padding-top: 5px;
    }

    .btn-registra-compras {
        padding: 12px 35px;
        font-size: 0.95rem;
        width: 90%;
        max-width: 300px;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO (≤575px)
   =================================== */

@media (max-width: 575px) {
    .hidratate-section {
        /* padding: 40px 0; */
    }

   
    .hidratate-title-img {
        max-width: 100%;
        max-height: 265px;
    }

    .hidratate-productos-img {
        max-width: 100%;
        max-height: 300px;
        
        
    }

    .btn-registra-compras {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
    .hidratate-button-wrapper{
        text-align: center;
        padding-bottom: 20px; 
    }
}

/* ============================================================================================================================================
                                                              SECCIÓN DINÁMICA
   ============================================================================================================================================ */

.dinamica-section {
   position: relative;
    /* 🔑 IMAGEN DE FONDO PARA ESCRITORIO */
    background-image: url('../img/BKG.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.pasos-promocion {
    background: white;
    border-radius: 15px;
    padding: 30px 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.paso-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.paso-item:last-child {
    margin-bottom: 0;
}

.paso-numero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
   
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.paso-contenido {
    font-size: 2rem;
    line-height: 1.6;
    color: #333;
    flex: 1;
}

.paso-contenido strong {
    color: #01325A;
    font-weight: 800;
   font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 767px) {
    .pasos-promocion {
        padding: 25px 20px;
    }
    
    .paso-item {
        gap: 12px;
        flex-direction: column;
    }
    
    .paso-numero {
        width: 30px;
        height: 30px;
        font-size:70px;
    }
    
    .paso-contenido {
        font-size: 0.95rem;
    }
 
}


/* Logo */
.dinamica-logo-wrapper {
    margin-bottom: 4rem;
}

.dinamica-logo {
    max-width: 300px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Contenedor de tarjetas */
.dinamica-cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjeta de Paso */
.paso-card-dinamica {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 162, 177, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid rgba(0, 162, 177, 0.1);
}

.paso-card-dinamica:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 162, 177, 0.25);
    border-color: rgba(0, 162, 177, 0.3);
}

/* Icono */
.paso-icono-wrapper {
    width: 120px;
    height: 120px;
    background-color: #008BB0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 20px;
}

.paso-icono {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    
}

/* Número de paso */
.paso-numero {
    font-size: 60px;
    font-weight: 700;
    color: #A5DAE8;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Título del paso */
.paso-titulo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Descripción */
.paso-descripcion {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Footer de la sección */
.dinamica-footer {
    margin-top: 4rem;
}

.dinamica-final-text {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* ===================================
   RESPONSIVE - TABLET (≤991px)
   =================================== */

@media (max-width: 991px) {
    .dinamica-section {
        padding: 60px 0;
    }

    .dinamica-logo-wrapper {
        margin-bottom: 3rem;
    }

    .dinamica-logo {
        max-width: 250px;
        max-height: 70px;
    }

    .paso-card-dinamica {
        padding: 35px 25px;
    }

    .paso-icono-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .paso-titulo {
        /* font-size: 1.2rem; */
    }

    .paso-descripcion {
        font-size: 0.95rem;
    }

    .dinamica-final-text {
        font-size: 1.6rem;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL (≤767px) - COLUMNAS
   =================================== */

@media (max-width: 767px) {
    .dinamica-section {
        padding: 50px 0;
    }

    .dinamica-logo-wrapper {
        margin-bottom: 2.5rem;
    }

    .dinamica-logo {
        max-width: 220px;
        max-height: 65px;
    }

    .dinamica-cards-wrapper {
        max-width: 100%;
    }

    .paso-card-dinamica {
        padding: 30px 20px;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .paso-icono-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }
/* 
    .paso-numero {
        font-size: 20px;
    } */

    .paso-titulo {
        font-size: 1.1rem;
    }

    .paso-descripcion {
        font-size: 20px;
    }

    .dinamica-footer {
        margin-top: 3rem;
    }

    .dinamica-final-text {
        font-size: 30px;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO (≤575px)
   =================================== */

@media (max-width: 575px) {
    .dinamica-section {
        padding: 40px 0;
    }

    .dinamica-logo {
        max-width: 200px;
        max-height: 60px;
    }

    .paso-card-dinamica {
        padding: 25px 18px;
    }

    .paso-icono-wrapper {
        width: 80px;
        height: 80px;
    }

    .paso-titulo {
        font-size: 1rem;
    }

    .paso-descripcion {
       font-size: 20px;
    }

    .dinamica-final-text {
        /* font-size: 1.2rem; */
    }
}

/* ============================================================================================================================================
                                                           SECCIÓN PREMIOS - VERSIÓN 2
   ============================================================================================================================================ */

.premios-section-v2 {
    position: relative;
    /* 🔑 IMAGEN DE FONDO PARA ESCRITORIO */
    background-image: url('../img/BKG.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}



/* Header */
.premios-header-v2 {
    margin-bottom: 4rem;
}

.premios-title-v2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 3px;
}

/* Carrusel */
.premios-carousel-wrapper-v2 {
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-inner {
    border-radius: 30px;
}

.carousel-item {
    padding: 20px;
}

/* Tarjeta de Premio */
.premio-card-v2 {
    background: transparent;
    padding: 40px 30px;
    text-align: center;
    min-height: 60vh;
}

/* Círculo de imagen - Desktop */
.premio-imagen-circle {
    width: 350px;
    height: 350px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.premio-img-v2 {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Información del premio - Desktop */
.premio-info-v2 {
    width: 100%;
    text-align: left;
    padding-left: 40px;
}

.premio-lugar-v2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.premio-nombre-v2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.premio-detalle-v2 {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
    text-align: left;
}

/* Indicadores */
.carousel-indicators-v2 {
    bottom: -50px;
    margin-bottom: 0;
    z-index: 10;
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.carousel-indicators-v2 button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5); /* Blanco semi-transparente */
    opacity: 1;
    margin: 0 8px;
    padding: 0;
    transition: all 0.3s ease;
    text-indent: -999px; /* Ocultar texto */
    cursor: pointer;
}
.carousel-indicators button.active {
    background-color: #ffffff; /* Blanco sólido cuando está activo */
    transform: scale(1.3);
    opacity: 1;
}
.carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   RESPONSIVE - TABLET (≤991px)
   =================================== */

@media (max-width: 991px) {
    .premios-section-v2 {
        padding: 60px 0 80px;
        min-height: auto;
    }

    .premios-header-v2 {
        margin-bottom: 3rem;
    }

    .premios-title-v2 {
        font-size: 2.5rem;
    }

    .premio-card-v2 {
        padding: 30px 20px;
        min-height: 50vh;
    }

    .premio-imagen-circle {
        width: 300px;
        height: 300px;
        margin-bottom: 30px;
    }

    .premio-info-v2 {
        text-align: center;
        padding-left: 0;
    }

    .premio-lugar-v2,
    .premio-nombre-v2,
    .premio-detalle-v2 {
        text-align: center;
    }

    .premio-lugar-v2 {
        font-size: 2.5rem;
    }

    .premio-nombre-v2 {
        font-size: 2rem;
    }

    .premio-detalle-v2 {
        font-size: 1.1rem;
    }
      .carousel-indicators {
        bottom: -40px;
    }
    
    .carousel-indicators button {
        width: 12px;
        height: 12px;
        margin: 0 6px;
    }
    
    .carousel-indicators-productos {
        bottom: -40px;
    }
    
    .carousel-indicators-productos button {
        width: 12px;
        height: 12px;
        margin: 0 6px;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL (≤767px) - COLUMNA VERTICAL
   =================================== */

@media (max-width: 767px) {
    .premios-section-v2 {
        padding: 50px 0 60px;
        min-height: 100vh;
    }

    .premios-header-v2 {
        margin-bottom: 2.5rem;
    }

    .premios-title-v2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .premios-carousel-wrapper-v2 {
        max-width: 100%;
    }

    .premio-card-v2 {
        padding: 25px 15px;
        min-height: 70vh;
        display: flex;
        flex-direction: column;
    }

    .premio-imagen-circle {
        width: 250px;
        height: 250px;
        margin: 0 auto 25px;
        order: 1;
    }

    .premio-info-v2 {
        order: 2;
        width: 100%;
        text-align: center;
        padding-left: 0;
    }

    .premio-lugar-v2 {
        font-size: 2rem;
        margin-bottom: 10px;
        text-align: center;
        order: 1;
    }

    .premio-nombre-v2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        text-align: center;
        order: 2;
    }

    .premio-detalle-v2 {
        font-size: 1rem;
        text-align: center;
        order: 3;
    }

    .carousel-indicators-v2 {
        bottom: -40px;
    }

    .carousel-indicators-v2 button {
        width: 12px;
        height: 12px;
    }
      .carousel-indicators {
        bottom: -40px;
    }
    
    .carousel-indicators button {
        width: 12px;
        height: 12px;
        margin: 0 6px;
    }
    
    .carousel-indicators-productos {
        bottom: -40px;
    }
    
    .carousel-indicators-productos button {
        width: 12px;
        height: 12px;
        margin: 0 6px;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO (≤575px)
   =================================== */

@media (max-width: 575px) {
    .premios-section-v2 {
        padding: 40px 0 50px;
    }

    .premios-title-v2 {
        font-size: 1.8rem;
    }

    .premio-card-v2 {
        padding: 20px 10px;
        min-height: 75vh;
    }

    .premio-imagen-circle {
        width: 220px;
        height: 220px;
        margin-bottom: 20px;
    }

    .premio-lugar-v2 {
        font-size: 1.8rem;
    }

    .premio-nombre-v2 {
        font-size: 1.4rem;
    }

    .premio-detalle-v2 {
        font-size: 0.95rem;
    }
      .carousel-indicators {
        bottom: -30px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .carousel-indicators-productos {
        bottom: -30px;
    }
    
    .carousel-indicators-productos button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

/* ============================================================================================================================================
                                                                 SECCIÓN PRODUCTOS
   ============================================================================================================================================ */

.productos-section {
    position: relative;
    /* 🔑 IMAGEN DE FONDO PARA ESCRITORIO */
    background-image: url('../img/BKG.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* Header */
.productos-header {
    margin-bottom: 4rem;
}

.productos-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}



/* ===================================
   CARRUSEL DE PRODUCTOS - DESKTOP
   =================================== */

.productos-carousel-desktop {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px; /* Espacio para las flechas */
}

.productos-carousel-desktop .carousel-inner {
    border-radius: 0;
}

.productos-carousel-desktop .carousel-item {
    padding: 10px 0;
}

/* Flechas discretas */
.productos-carousel-desktop .carousel-control-prev,
.productos-carousel-desktop .carousel-control-next {
    width: 45px;
    height: 45px;
    top: 45%;
    transform: translateY(-50%);
    opacity: 2.1; /* 🔑 Discretas: baja opacidad */
    transition: opacity 0.3s ease;
    z-index: 20;
}

.productos-carousel-desktop .carousel-control-prev {
     left: -10px;
}

.productos-carousel-desktop .carousel-control-next {
     right: -10px;
}

.productos-carousel-desktop .carousel-control-prev:hover,
.productos-carousel-desktop .carousel-control-next:hover {
    opacity: 5; /* 🔑 Se hacen más visibles al hover */
}

.productos-carousel-desktop .carousel-control-prev-icon,
.productos-carousel-desktop .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: #3591FF; /* Turquesa */
    border-radius: 50%;
    background-size: 20px 20px;
   
}

/* Mantener el estilo de las tarjetas de producto */
.productos-carousel-desktop .producto-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 25px;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 162, 177, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid rgba(0, 162, 177, 0.1);
}

.productos-carousel-desktop .producto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 162, 177, 0.25);
    border-color: rgba(0, 162, 177, 0.3);
}

.productos-carousel-desktop .producto-imagen-wrapper {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 20px;
}

.productos-carousel-desktop .producto-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.productos-carousel-desktop .producto-nombre {
    font-size: 1rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productos-carousel-desktop .btn-comprar {
    display: inline-block;
    background-color: #3591FF;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #3591FF;
}

.productos-carousel-desktop .btn-comprar:hover {
    background-color: transparent;
    color: #3591FF;
    transform: translateY(-3px);
}


/* Centrar productos cuando hay menos de 4 */
.productos-carousel-desktop .carousel-item .row {
    display: flex;
    justify-content: center;
}

/* Si hay 2 productos, que ocupen el centro */
.productos-carousel-desktop .carousel-item:last-child .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

/* ===================================
   CARRUSEL PRODUCTOS - MÓVIL
   =================================== */

.productos-carousel-mobile {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 10px;
}

.productos-carousel-mobile .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

.productos-carousel-mobile .carousel-item {
    padding: 10px 0;
}

/* Tarjeta de producto móvil */
.producto-card-mobile {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 162, 177, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid rgba(0, 162, 177, 0.1);
    margin: 0 10px; /* 🔑 Espacio lateral para que no se pegue */
}

.producto-card-mobile .producto-imagen-wrapper {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px;
}

.producto-card-mobile .producto-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.producto-card-mobile .producto-nombre {
    font-size: 1rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.4;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.producto-card-mobile .btn-comprar {
    display: inline-block;
    background-color: #3591FF;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 35px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #3591FF;
}

.producto-card-mobile .btn-comprar:hover {
    background-color: transparent;
    color: #3591FF;
    transform: translateY(-2px);
}

/* Indicadores del carrusel móvil */
.carousel-indicators-productos {
    bottom: -40px;
    margin-bottom: 0;
    z-index: 10;
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.carousel-indicators-productos button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #3591FF;
    opacity: 0.5;
    margin: 0 6px;
    padding: 0;
    transition: all 0.3s ease;
    text-indent: -999px;
    cursor: pointer;
}

.carousel-indicators-productos button.active {
    opacity: 1;
    transform: scale(1.3);
}

.carousel-indicators-productos button:hover {
    opacity: 0.8;
}

/* Flechas del carrusel móvil (opcionales, discretas) */
.productos-carousel-mobile .carousel-control-prev,
.productos-carousel-mobile .carousel-control-next {
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.productos-carousel-mobile .carousel-control-prev {
    left: 5px;
}

.productos-carousel-mobile .carousel-control-next {
    right: 5px;
}

.productos-carousel-mobile .carousel-control-prev:hover,
.productos-carousel-mobile .carousel-control-next:hover {
    opacity: 0.9;
}

.productos-carousel-mobile .carousel-control-prev-icon,
.productos-carousel-mobile .carousel-control-next-icon {
    width: 25px;
    height: 25px;
    background-color: #3591FF;
    border-radius: 50%;
    background-size: 12px 12px;
    /* filter: brightness(0) invert(1); */
}
/* ===================================
   RESPONSIVE - TABLET (≤991px)
   =================================== */

@media (max-width: 991px) {
    .productos-section {
        padding: 60px 0;
    }

    .productos-header {
        margin-bottom: 3rem;
    }

    .productos-title {
        font-size: 2.5rem;
    }

    .producto-card {
        padding: 35px 20px;
    }

    .producto-imagen-wrapper {
        height: 220px;
    }

    .producto-nombre {
        font-size: 0.95rem;
        min-height: 45px;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL (≤767px)
   =================================== */

@media (max-width: 767px) {
    .productos-section {
        padding: 50px 0;
    }

    .productos-header {
        margin-bottom: 2.5rem;
    }

    .productos-title {
        font-size: 2rem;
    }

    .productos-carousel {
        max-width: 100%;
        padding: 15px;
    }

    .producto-card-mobile {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .producto-card-mobile .producto-imagen-wrapper {
        height: 250px;
    }

    .producto-card-mobile .producto-nombre {
        font-size: 1rem;
        min-height: 55px;
    }

    .producto-card-mobile .btn-comprar {
        padding: 12px 40px;
        font-size: 0.95rem;
    }

    .carousel-indicators-productos {
        bottom: -40px;
    }

    .carousel-indicators-productos button {
        width: 12px;
        height: 12px;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO (≤575px)
   =================================== */

@media (max-width: 575px) {
    .productos-section {
        padding: 40px 0;
    }

    .productos-title {
        font-size: 45px;
    }

    .producto-card-mobile {
        padding: 25px 15px;
    }

    .producto-card-mobile .producto-imagen-wrapper {
        height: 220px;
    }

    .producto-card-mobile .producto-nombre {
        font-size: 0.9rem;
        min-height: 50px;
    }

    .producto-card-mobile .btn-comprar {
        padding: 10px 35px;
        font-size: 0.9rem;
    }
}


/* ============================================================================================================================================
                                                                  SECCIÓN PREGUNTAS FRECUENTES
   ============================================================================================================================================ */

.faq-section {
    position: relative;
    background-color: #3591FF;
    padding: 80px 0;
    min-height: 600px;
}

.faq-header {
    margin-bottom: 4rem;
}

.faq-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 1px;
}

/* Acordeón */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question[aria-expanded="true"] {
    background: #01325A;
    color: #ffffff;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    background: #ffffff;
}

/* ===================================
   RESPONSIVE - TABLET (≤991px)
   =================================== */

@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-question {
        padding: 20px 25px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 25px 20px;
        font-size: 0.95rem;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL (≤767px)
   =================================== */

@media (max-width: 767px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-header {
        margin-bottom: 2.5rem;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-accordion {
        max-width: 100%;
    }

    .faq-item {
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    .faq-answer {
        padding: 0 20px 18px;
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO (≤575px)
   =================================== */

@media (max-width: 575px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 15px 18px;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 18px 15px;
        font-size: 0.85rem;
    }
}

/* ============================================================================================================================================
                                                        FOOTER - STA. MARÍA
   ============================================================================================================================================ */

.site-footer {
    background-color: #1D1D1D; /* Azul oscuro corporativo */
    padding: 30px 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.footer-logo-wrapper {
    flex: 0 0 auto;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    /* filter: brightness(0) invert(1); Vuelve el logo blanco */
}

/* Fecha de vigencia */
.footer-fecha {
    flex: 1;
    text-align: center;
}

.footer-fecha-text {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

/* Términos y Condiciones */
.footer-terminos {
    flex: 0 0 auto;
}

.footer-terminos-link {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-terminos-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ===================================
   RESPONSIVE - TABLET (≤991px)
   =================================== */

@media (max-width: 991px) {
    .site-footer {
        padding: 25px 0;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer-fecha-text {
        font-size: 0.9rem;
    }

    .footer-terminos-link {
        font-size: 0.9rem;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL (≤767px)
   =================================== */

@media (max-width: 767px) {
    .site-footer {
        padding: 20px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-fecha {
        width: 100%;
    }

    .footer-fecha-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .footer-terminos {
        width: 100%;
    }

    .footer-terminos-link {
        font-size: 0.85rem;
        display: inline-block;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO (≤575px)
   =================================== */

@media (max-width: 575px) {
    .site-footer {
        padding: 15px 0;
    }

    .footer-logo-img {
        height: 35px;
    }

    .footer-fecha-text {
        font-size: 0.8rem;
    }

    .footer-terminos-link {
        font-size: 0.8rem;
    }
}