/* ====================================================================
   INVERSIONES BERNILLA S.A.C. - ESTILOS EMPRESARIALES MODERNOS
   ==================================================================== */

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

/* Variables CSS - Colores Empresariales */
:root {
    /* Colores corporativos basados en el logotipo */
    --azul-oscuro: #042647;        /* Azul oscuro del logotipo */
    --azul-principal: #054785;     /* Azul principal del logotipo */
    --azul-medio: #0668C5;         /* Azul medio del logotipo */
    --azul-claro: #87CEEB;         /* Azul claro del logotipo */
    --azul-hover: #043667;         /* Azul hover para interacciones */

    /* Verdes corporativos */
    --verde-oscuro: #044F22;       /* Verde oscuro del logotipo */
    --verde-principal: #089949;    /* Verde principal del logotipo */
    --verde-medio: #0ABD5C;        /* Verde medio del logotipo */
    --verde-claro: #90EE90;        /* Verde claro del logotipo */
    --verde-hover: #067A37;        /* Verde hover para interacciones */

    /* Rojos corporativos */
    --rojo-oscuro: #6B1111;        /* Rojo oscuro del logotipo */
    --rojo-principal: #B91C1C;     /* Rojo principal del logotipo */
    --rojo-medio: #DC2626;         /* Rojo medio del logotipo */
    --rojo-claro: #FECACA;         /* Rojo claro del logotipo */
    --rojo-hover: #991B1B;         /* Rojo hover para interacciones */

    /* Grises elegantes */
    --gris-oscuro: #1f2937;
    --gris-medio: #64748b;
    --gris-claro: #94a3b8;
    --gris-muy-claro: #f1f5f9;
    --gris-fondo: #f8fafc;

    /* Blancos y neutros */
    --blanco: #ffffff;
    --negro: #0f172a;

    /* Acentos */
    --verde-exito: var(--verde-principal);
    --rojo-alerta: var(--rojo-principal);
    --naranja-acento: #f59e0b;

    /* Sombras */
    --sombra-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --sombra-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --sombra-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --sombra-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transiciones */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gris-oscuro);
    background-color: var(--gris-fondo);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Estilos generales mejorados */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--azul-oscuro);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gris-medio);
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--azul-oscuro);
    text-align: center;
    padding-bottom: 1rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-medio) 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gris-medio);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.bg-white {
    background-color: var(--blanco) !important;
    box-shadow: var(--sombra-lg);
    border-radius: var(--radio-lg, 12px);
    overflow: hidden;
}

.rounded-custom {
    border-radius: var(--radio-lg, 12px) !important;
}

.shadow-custom {
    box-shadow: var(--sombra-xl) !important;
}

.btn {
    font-weight: 500;
    transition: all var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
}

/* Estilos para cards y secciones */
.card {
    border: none;
    border-radius: var(--radio-lg, 12px);
    box-shadow: var(--sombra-md);
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-xl);
}

/* Estilos para inputs y formularios */
.form-control {
    border-radius: var(--radio-md, 8px);
    border: 1px solid var(--gris-claro);
    padding: 12px 15px;
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--verde-principal);
    box-shadow: 0 0 0 0.25rem rgba(8, 153, 73, 0.15);
}

.form-select {
    border-radius: var(--radio-md, 8px);
    border: 1px solid var(--gris-claro);
    padding: 12px 15px;
    transition: all var(--transition-fast);
}

/* Estilos para alertas */
.alert {
    border-radius: var(--radio-md, 8px);
    border: none;
    box-shadow: var(--sombra-sm);
}

/* ====================================================================
   HEADER - BARRA DE NAVEGACIÓN CORPORATIVA
   ==================================================================== */

.navbar-corporate {
    background: linear-gradient(135deg, #042647 0%, #054785 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 2px solid #089949;
    transition: box-shadow 0.3s ease;
}

/* Sombra al hacer scroll */
.navbar-corporate.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Logo integrado */
.navbar-brand {
    padding: 15px 0;
    margin-right: 3rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-brand img.logo-img {
    height: 60px;
    width: auto;
}

/* Texto de la marca */
.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name,
.brand-name * {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.brand-subtitle,
.brand-subtitle * {
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.3;
}

/* Forzar color blanco en TODOS los dispositivos */
.navbar-brand .brand-name,
.navbar-brand .brand-subtitle,
.navbar-corporate .brand-name,
.navbar-corporate .brand-subtitle {
    color: #ffffff !important;
}

/* Enlaces de navegación - texto blanco */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 20px 16px !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #089949 !important;
}

/* Botón Cotizar - verde destacado */
.navbar-nav .btn-cotizar {
    background: linear-gradient(135deg, #089949 0%, #0ABD5C 100%);
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 6px;
    font-weight: 600;
    margin: 0 5px;
}

.navbar-nav .btn-cotizar:hover {
    background: linear-gradient(135deg, #0ABD5C 0%, #089949 100%);
    color: #ffffff !important;
}

/* Botón Carrito */
.navbar-nav .btn-carrito-nav {
    position: relative;
    padding: 10px 16px !important;
}

.navbar-nav .btn-carrito-nav i {
    font-size: 1.2rem;
}

.carrito-badge {
    position: absolute;
    top: 5px;
    right: 0;
    background: #089949;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Botón hamburguesa - minimalista y moderno, alineado con el texto */
.navbar-toggler,
.navbar-corporate .navbar-toggler,
button.navbar-toggler {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: auto;
    align-self: center;
}

/* Ocultar hamburguesa en desktop */
@media (min-width: 992px) {
    .navbar-toggler,
    .navbar-corporate .navbar-toggler,
    button.navbar-toggler {
        display: none !important;
    }
}

.navbar-toggler:hover {
    background: transparent !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Eliminar cualquier ícono por defecto de Bootstrap */
.navbar-toggler-icon,
.navbar-toggler .navbar-toggler-icon,
button.navbar-toggler .navbar-toggler-icon,
.navbar-corporate .navbar-toggler .navbar-toggler-icon {
    background-image: none !important;
    width: 24px !important;
    height: 24px !important;
    opacity: 1 !important;
}

/* Crear ícono personalizado con 3 líneas blancas */
.navbar-toggler::before,
.navbar-corporate .navbar-toggler::before {
    content: '' !important;
    position: absolute !important;
    width: 24px !important;
    height: 2px !important;
    background: #ffffff !important;
    top: 8px !important;
    left: 4px !important;
    box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff !important;
    border-radius: 2px !important;
}

/* Menú desplegable móvil */
.navbar-collapse {
    background: #042647;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive para tablets */
@media (max-width: 991px) {
    .navbar-corporate {
        padding: 8px 0;
    }

    .navbar-brand {
        margin-right: 0;
        padding: 12px 0;
    }

    .navbar-brand img.logo-img {
        height: 50px;
    }

    .brand-name {
        font-size: 1rem;
        color: #ffffff !important;
    }

    .brand-subtitle {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .navbar-toggler {
        padding: 10px 14px !important;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-nav .btn-cotizar {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .navbar-nav .btn-carrito-nav {
        width: 100%;
        text-align: center;
    }
}

/* Responsive específico para móvil - Header mejorado */
@media (max-width: 576px) {
    .navbar-corporate {
        padding: 10px 0;
    }

    .navbar-brand {
        gap: 8px;
        padding: 18px 0;
        margin-right: auto;
        align-items: center;
    }

    .navbar-brand img.logo-img {
        height: 44px;
    }

    .navbar-brand .brand-name,
    .navbar-brand .brand-subtitle,
    .navbar-brand span.brand-name,
    .navbar-brand span.brand-subtitle,
    .brand-text .brand-name,
    .brand-text .brand-subtitle {
        color: #ffffff !important;
        text-shadow: none !important;
    }

    .brand-name {
        font-size: 0.9rem;
        font-weight: 700;
        color: #ffffff !important;
        line-height: 1.3;
    }

    .brand-subtitle {
        display: block !important;
        color: #ffffff !important;
        font-size: 0.75rem;
    }

    .navbar-toggler {
        padding: 0 !important;
        margin-left: auto;
        align-self: center;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .navbar-toggler:hover {
        background: transparent !important;
    }

    .navbar-toggler-icon {
        width: 22px !important;
        height: 22px !important;
    }

    .navbar-nav .nav-link {
        padding: 14px 15px !important;
        font-size: 0.95rem !important;
    }

    .navbar-nav .btn-cotizar {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }

    .navbar-nav .btn-carrito-nav {
        padding: 12px 16px !important;
    }
}

/* ====================================================================
   MENÚ HAMBURGUESA MÓVIL - DISEÑO MODERNO
   ==================================================================== */

/* Botón hamburguesa moderno */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    transition: all 0.3s ease !important;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 24px !important;
    height: 24px !important;
}

/* Menú desplegable moderno */
.navbar-collapse {
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul-principal) 100%);
    border-radius: 16px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enlaces del menú móvil */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 14px 18px !important;
    margin: 5px 0;
    border-radius: 12px;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link i {
    margin-right: 12px;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateX(5px);
    color: var(--blanco) !important;
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--verde-principal);
}

/* Botón de carrito en móvil */
.navbar-nav .btn-carrito {
    background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-medio) 100%) !important;
    color: var(--blanco) !important;
    border: none;
    padding: 14px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    margin-top: 10px;
    box-shadow: 0 6px 20px rgba(8, 153, 73, 0.4);
    transition: all 0.3s ease !important;
    justify-content: center;
}

.navbar-nav .btn-carrito:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 35px rgba(8, 153, 73, 0.6) !important;
}

.navbar-nav .carrito-badge {
    background-color: var(--blanco) !important;
    color: var(--azul-principal) !important;
    padding: 4px 10px !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Separador visual */
.navbar-nav .nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-nav .nav-item:last-child {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(8, 153, 73, 0.3);
}

/* Responsive específico para móvil */
@media (max-width: 991px) {
    .navbar-empresarial {
        padding: 12px 0;
        background: #ffffff !important;
    }

    .navbar-brand {
        font-size: 1.3rem;
        color: var(--azul-oscuro) !important;
    }

    .navbar-brand img.logo-img {
        height: 50px;
    }

    .brand-subtitle {
        display: none;
    }

    .navbar-toggler {
        padding: 8px 12px !important;
        border-color: rgba(0, 0, 0, 0.1) !important;
        background: rgba(0, 0, 0, 0.05) !important;
    }

    .navbar-toggler:hover {
        background: rgba(0, 0, 0, 0.1) !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(4, 38, 71, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .navbar-collapse {
        padding: 15px;
        background: #ffffff !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        color: var(--azul-oscuro) !important;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(8, 153, 73, 0.1) !important;
    }
}

@media (max-width: 576px) {
    .navbar-empresarial {
        padding: 10px 0;
        background: #ffffff !important;
    }

    .navbar-brand {
        font-size: 1.1rem;
        color: var(--azul-oscuro) !important;
    }

    .navbar-brand img.logo-img {
        height: 45px;
    }

    .navbar-brand .brand-subtitle {
        color: var(--gris-medio) !important;
    }

    .navbar-toggler {
        padding: 6px 10px !important;
        border-color: rgba(0, 0, 0, 0.1) !important;
        background: rgba(0, 0, 0, 0.05) !important;
    }

    .navbar-toggler-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .navbar-collapse {
        padding: 12px;
        margin-top: 10px;
        background: #ffffff !important;
    }

    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        font-size: 0.95rem !important;
        color: var(--azul-oscuro) !important;
    }

    .navbar-nav .nav-link i {
        font-size: 1rem;
        margin-right: 10px;
    }

    .navbar-nav .btn-carrito {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }
}

/* ====================================================================
   CARRUSEL - HERO SECTION EMPRESARIAL
   ==================================================================== */

.carousel-hero {
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.carousel-hero .carousel-item {
    height: 600px;
}

.carousel-hero .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.5s ease;
}

.carousel-hero .carousel-item.active img {
    transform: scale(1.05);
}

/* ====================================================================
   HERO SECTION CON VIDEO DE FONDO - MODERNO
   ==================================================================== */

.hero-video-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video de fondo */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Capa oscura sobre el video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(4, 38, 71, 0.85) 0%,
        rgba(8, 153, 73, 0.75) 100%
    );
    z-index: 2;
}

/* Contenido del hero */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
}

/* Título principal */
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInDown 1s ease-out;
}

/* Divider decorativo */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    animation: fadeIn 1s ease-out 0.3s both;
}

.divider-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #089949, transparent);
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    backdrop-filter: blur(10px);
}

.divider-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
    white-space: nowrap;
}

/* Lista de productos */
.hero-products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.product-item {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.product-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.product-separator {
    color: #089949;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Botones CTA */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary {
    background: linear-gradient(135deg, #089949 0%, #0ABD5C 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #0ABD5C 0%, #089949 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(8, 153, 73, 0.4);
    color: #ffffff;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 3px solid #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 12px;
    background: #ffffff;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

.scroll-text {
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Delay para animaciones en cascada */
.animate-fade-in {
    animation: fadeInDown 1s ease-out;
}

.animate-fade-in-delay-1 {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.animate-fade-in-delay-4 {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.carousel-caption {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 250, 252, 0.25) 100%);
    padding: 2.8rem;
    border-radius: 20px;
    bottom: 50%;
    transform: translate(-50%, 50%);
    max-width: 520px;
    left: 50%;
    right: auto;
    position: absolute;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-caption h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: var(--azul-oscuro);
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
}

.carousel-caption h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--verde-principal), var(--verde-medio));
    border-radius: 2px;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.7;
    color: var(--azul-oscuro);
    font-weight: 500;
}

.btn-cta {
    background: linear-gradient(135deg, var(--azul-principal) 0%, var(--azul-medio) 100%);
    color: var(--blanco);
    border: none;
    padding: 14px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(30, 64, 175, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.4);
    color: var(--blanco);
    background: linear-gradient(135deg, var(--azul-medio) 0%, var(--azul-oscuro) 100%);
}

.btn-cta:active {
    transform: translateY(1px);
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-cta:hover::after {
    left: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 30px;
    backdrop-filter: blur(10px);
}

/* ====================================================================
   PÁGINA DE PRODUCTOS - DISEÑO MODERNO
   ==================================================================== */

/* Encabezado de página */
.products-page {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

.products-header {
    padding: 30px 0 40px;
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul-principal) 100%);
    color: var(--blanco);
    margin-bottom: 40px;
    border-radius: 20px 20px 0 0;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--blanco);
}

.products-title i {
    color: var(--verde-principal);
}

.products-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.products-subtitle .highlight {
    color: var(--verde-principal);
    font-weight: 700;
}

.products-subtitle .count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Layout principal */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Sidebar de filtros */
.products-sidebar {
    position: relative;
}

.sidebar-content {
    background: var(--blanco);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(8, 153, 73, 0.1);
}

/* Barra de búsqueda en sidebar */
.search-box {
    position: relative;
    margin-bottom: 25px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gris-medio);
    font-size: 1.1rem;
    z-index: 1;
}

.search-box form {
    display: flex;
}

.search-input {
    flex: 1;
    padding: 14px 45px 14px 45px;
    border: 2px solid rgba(8, 153, 73, 0.2);
    border-radius: 12px 0 0 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--verde-principal);
    box-shadow: 0 0 0 3px rgba(8, 153, 73, 0.1);
}

.search-btn {
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-medio));
    border: none;
    border-radius: 0 12px 12px 0;
    color: var(--blanco);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--verde-medio), var(--verde-principal));
    transform: translateX(2px);
}

/* Secciones de filtros */
.filter-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(8, 153, 73, 0.1);
}

.filter-section:last-of-type {
    border-bottom: none;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.filter-title i {
    color: var(--verde-principal);
}

/* Lista de categorías */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--gris-medio);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-link:hover {
    background: rgba(8, 153, 73, 0.05);
    color: var(--verde-principal);
    padding-left: 20px;
}

.category-link.active {
    background: linear-gradient(135deg, rgba(8, 153, 73, 0.1), rgba(8, 153, 73, 0.05));
    color: var(--verde-principal);
    font-weight: 600;
}

.category-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(3px);
}

.category-count {
    margin-left: auto;
    background: rgba(8, 153, 73, 0.1);
    color: var(--verde-principal);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Opciones de ordenamiento */
.sort-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sort-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--gris-medio);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sort-link:hover {
    background: rgba(8, 153, 73, 0.05);
    color: var(--verde-principal);
}

.sort-link.active {
    background: linear-gradient(135deg, rgba(8, 153, 73, 0.1), rgba(8, 153, 73, 0.05));
    color: var(--verde-principal);
    font-weight: 600;
}

.sort-link i {
    color: var(--verde-principal);
}

/* Botón limpiar filtros */
.filter-actions {
    margin-top: 20px;
}

.btn-clear-filters {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid rgba(220, 39, 67, 0.3);
    color: var(--rojo-principal);
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-clear-filters:hover {
    background: var(--rojo-principal);
    border-color: var(--rojo-principal);
    color: var(--blanco);
}

/* Botón de filtros móvil */
.btn-filter-toggle {
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-medio));
    color: var(--blanco) !important;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(8, 153, 73, 0.3);
}

/* Grid de productos (sobrescribe estilos anteriores) */
.products-main .productos-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Cards de productos (sobrescribe estilos anteriores) */
.products-main .producto-card {
    background: var(--blanco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(8, 153, 73, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.products-main .producto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(8, 153, 73, 0.15);
    border-color: rgba(8, 153, 73, 0.3);
}

/* Badge de oferta */
.products-main .producto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: var(--blanco);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Link del producto */
.products-main .producto-link {
    text-decoration: none;
    color: inherit;
}

/* Contenedor de imagen */
.products-main .producto-imagen-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.products-main .producto-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.products-main .producto-card:hover .producto-imagen {
    transform: scale(1.1);
}

/* Overlay */
.products-main .producto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 38, 71, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-main .producto-card:hover .producto-overlay {
    opacity: 1;
}

.products-main .overlay-text {
    color: var(--blanco);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Body del producto */
.products-main .producto-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products-main .producto-categoria {
    font-size: 0.85rem;
    color: var(--verde-principal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.products-main .producto-nombre {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--azul-oscuro);
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Precios */
.products-main .producto-precios {
    margin-bottom: 12px;
}

.products-main .producto-precio {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--verde-principal);
}

.products-main .producto-precio-promo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--verde-principal);
    margin-right: 10px;
}

.products-main .producto-precio-original {
    font-size: 1rem;
    color: var(--gris-medio);
    text-decoration: line-through;
    font-weight: 400;
}

/* Stock */
.products-main .producto-stock {
    font-size: 0.9rem;
    color: var(--gris-medio);
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Acciones del producto */
.products-main .producto-actions {
    padding: 0 20px 20px;
}

.btn-add-cart {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-medio));
    border: none;
    border-radius: 12px;
    color: var(--blanco);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--verde-medio), var(--verde-principal));
    box-shadow: 0 8px 25px rgba(8, 153, 73, 0.4);
    transform: translateY(-2px);
}

/* Paginación */
.products-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.products-pagination .pagination {
    gap: 8px;
}

.products-pagination .page-link {
    border: 2px solid rgba(8, 153, 73, 0.2);
    color: var(--gris-medio);
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.products-pagination .page-link:hover {
    background: var(--verde-principal);
    border-color: var(--verde-principal);
    color: var(--blanco);
    transform: translateY(-2px);
}

.products-pagination .active .page-link {
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-medio));
    border-color: var(--verde-principal);
    color: var(--blanco);
}

/* Estado vacío */
.products-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--blanco);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(8, 153, 73, 0.1), rgba(8, 153, 73, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-cart 3s ease-in-out infinite;
}

.empty-icon i {
    font-size: 3.5rem;
    color: var(--verde-principal);
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: 10px;
}

.empty-text {
    font-size: 1rem;
    color: var(--gris-medio);
    margin-bottom: 25px;
}

.btn-cta-empty {
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-medio));
    color: var(--blanco) !important;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(8, 153, 73, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-empty:hover {
    box-shadow: 0 12px 35px rgba(8, 153, 73, 0.4);
    transform: translateY(-3px);
}

/* Responsive para página de productos */
@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        margin-bottom: 20px;
    }

    .products-main .productos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .products-header {
        padding: 25px 0 30px;
        margin-bottom: 30px;
        border-radius: 15px 15px 0 0;
    }

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

    .products-subtitle {
        font-size: 1rem;
    }

    .sidebar-content {
        padding: 20px;
    }

    .products-main .productos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .products-main .producto-imagen-container {
        height: 180px;
    }

    .products-main .producto-body {
        padding: 15px;
    }

    .products-main .producto-nombre {
        font-size: 1rem;
    }

    .products-main .producto-precio {
        font-size: 1.2rem;
    }

    .btn-add-cart {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .products-page {
        padding: 20px 0;
    }

    .products-main .productos-grid {
        grid-template-columns: 1fr;
    }

    .empty-icon {
        width: 100px;
        height: 100px;
    }

    .empty-icon i {
        font-size: 2.5rem;
    }

    .empty-title {
        font-size: 1.3rem;
    }

    .btn-cta-empty {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* ====================================================================
   PRODUCTOS DESTACADOS - DISEÑO MODERNO
   ==================================================================== */

/* Sección de destacados */
.featured-products-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--azul-oscuro);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title-modern i {
    color: #f59e0b;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: var(--gris-medio);
    margin-bottom: 20px;
}

.btn-view-all {
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-medio));
    color: var(--blanco) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(8, 153, 73, 0.3);
}

.btn-view-all:hover {
    box-shadow: 0 10px 35px rgba(8, 153, 73, 0.5);
    transform: translateY(-3px);
}

/* Grid de productos destacados */
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Tarjeta de producto moderna */
.modern-product-card {
    background: var(--blanco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(8, 153, 73, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(8, 153, 73, 0.15);
    border-color: rgba(8, 153, 73, 0.3);
}

/* Badge moderno de oferta */
.modern-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: var(--blanco);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Link de toda la tarjeta */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Contenedor de imagen */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.modern-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-product-card:hover .modern-product-image {
    transform: scale(1.1);
}

/* Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 38, 71, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-text {
    color: var(--blanco);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Body del producto */
.modern-product-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modern-product-categoria {
    font-size: 0.85rem;
    color: var(--verde-principal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.modern-product-nombre {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--azul-oscuro);
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Precios */
.modern-product-precios {
    margin-bottom: 12px;
}

.modern-precio {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--verde-principal);
}

.modern-precio-promo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--verde-principal);
    margin-right: 10px;
}

.modern-precio-original {
    font-size: 1rem;
    color: var(--gris-medio);
    text-decoration: line-through;
    font-weight: 400;
}

/* Stock */
.modern-product-stock {
    font-size: 0.9rem;
    color: var(--gris-medio);
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Acciones del producto */
.modern-product-actions {
    padding: 0 20px 20px;
}

.btn-modern-add-cart {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-medio));
    border: none;
    border-radius: 12px;
    color: var(--blanco);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-modern-add-cart:hover {
    background: linear-gradient(135deg, var(--verde-medio), var(--verde-principal));
    box-shadow: 0 8px 25px rgba(8, 153, 73, 0.4);
    transform: translateY(-2px);
}

/* Estado vacío */
.no-products {
    text-align: center;
    padding: 60px 20px;
    background: var(--blanco);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.no-products i {
    font-size: 4rem;
    color: var(--gris-claro);
    margin-bottom: 20px;
}

.no-products p {
    font-size: 1.1rem;
    color: var(--gris-medio);
}

/* Responsive para productos destacados */
@media (max-width: 992px) {
    .featured-products-section {
        padding: 40px 0;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .featured-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 30px;
    }

    .section-title-modern {
        font-size: 1.8rem;
    }

    .section-subtitle-modern {
        font-size: 1rem;
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-image-wrapper {
        height: 180px;
    }

    .modern-product-body {
        padding: 15px;
    }

    .modern-product-nombre {
        font-size: 1rem;
    }

    .modern-precio {
        font-size: 1.2rem;
    }

    .btn-modern-add-cart {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .featured-products-section {
        padding: 30px 0;
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-title-modern {
        font-size: 1.5rem;
    }

    .btn-view-all {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    /* Ajustes para cards en móvil de 2 columnas */
    .product-image-wrapper {
        height: 150px;
    }

    .modern-product-body {
        padding: 12px;
    }

    .modern-product-categoria {
        font-size: 0.7rem;
    }

    .modern-product-nombre {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .modern-precio {
        font-size: 1.1rem;
    }

    .modern-precio-promo {
        font-size: 1.2rem;
    }

    .modern-product-stock {
        font-size: 0.75rem;
    }

    .btn-modern-add-cart {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .modern-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
        top: 10px;
        right: 10px;
    }
}

/* ====================================================================
   SECCIÓN DE PRODUCTOS - DISEÑO EMPRESARIAL (estilos anteriores)
   ==================================================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gris-medio);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.producto-card {
    background: var(--blanco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sombra-sm);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.producto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.producto-card:hover::before {
    left: 100%;
}

.producto-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(8, 153, 73, 0.2),
                0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(8, 153, 73, 0.3);
}

.producto-imagen {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--gris-muy-claro);
    transition: all var(--transition-slow);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.producto-imagen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 60%,
        transparent 70%
    );
    transform: rotate(30deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.producto-card:hover .producto-imagen::after {
    opacity: 1;
    left: 100%;
}

.producto-imagen:hover {
    transform: scale(1.08);
}

.producto-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.producto-categoria {
    font-size: 0.85rem;
    color: var(--verde-principal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.producto-nombre {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--azul-oscuro);
    margin-bottom: 15px;
    line-height: 1.4;
}

.producto-precio {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--verde-principal);
    margin-bottom: 10px;
}

.producto-precio-anterior {
    font-size: 1.1rem;
    color: var(--rojo-principal);
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 500;
}

.producto-stock {
    font-size: 0.9rem;
    color: var(--gris-medio);
    margin-bottom: 15px;
    font-weight: 500;
}

.producto-acciones {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.btn-ver, .btn-agregar {
    flex: 1;
    padding: 12px;
    font-weight: 500;
    border-radius: 8px;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.btn-ver {
    background: rgba(4, 120, 87, 0.1);
    color: var(--verde-principal);
    border: 1px solid var(--verde-principal);
}

.btn-ver:hover {
    background: var(--verde-principal);
    color: var(--blanco);
}

.btn-agregar {
    background: var(--verde-principal);
    color: var(--blanco);
    border: 1px solid var(--verde-principal);
}

.btn-agregar:hover {
    background: var(--verde-hover);
    border-color: var(--verde-hover);
    transform: translateY(-2px);
}

.producto-card:hover .producto-imagen {
    transform: scale(1.05);
}

.producto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--rojo-principal) 0%, var(--rojo-medio) 100%);
    color: var(--blanco);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: var(--sombra-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.producto-body {
    padding: 24px;
}

.producto-categoria {
    color: var(--verde-principal);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.producto-nombre {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gris-oscuro);
    margin-bottom: 12px;
    min-height: 54px;
    line-height: 1.4;
}

.producto-precio {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--azul-principal);
    margin-bottom: 5px;
}

.producto-precio-anterior {
    font-size: 1rem;
    color: var(--gris-claro);
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

.producto-stock {
    font-size: 0.85rem;
    color: var(--gris-medio);
    margin-bottom: 15px;
    font-weight: 500;
}

.producto-acciones {
    display: flex;
    gap: 10px;
}

.btn-ver {
    flex: 1;
    background-color: var(--blanco);
    color: var(--azul-principal);
    border: 2px solid var(--azul-principal);
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.btn-ver:hover {
    background-color: var(--azul-principal);
    color: var(--blanco);
    transform: translateY(-2px);
    box-shadow: var(--sombra-md);
}

.btn-agregar {
    flex: 1;
    background: linear-gradient(135deg, var(--azul-principal) 0%, var(--azul-medio) 100%);
    color: var(--blanco);
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    box-shadow: var(--sombra-sm);
}

.btn-agregar:hover {
    transform: translateY(-2px);
    box-shadow: var(--sombra-md);
}

/* ====================================================================
   FOOTER EMPRESARIAL MODERNO
   ==================================================================== */

.footer-empresarial {
    background: linear-gradient(135deg, #042647 0%, #054785 50%, #042647 100%);
    color: var(--blanco);
    padding: 80px 0 40px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer-empresarial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--verde-principal), var(--verde-medio), var(--verde-principal));
}

/* Logo del footer */
.footer-logo {
    height: 70px;
    width: auto;
    max-width: 180px;
    margin-bottom: 20px;
    /* Quitamos el filtro para que se vea el logo original */
    filter: none;
    opacity: 1;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-location {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-location i {
    color: var(--verde-principal);
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Títulos del footer */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--blanco);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.footer-title i {
    color: var(--verde-principal);
    font-size: 1.2rem;
}

/* Enlaces rápidos */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--verde-principal);
    padding-left: 8px;
}

.footer-links a i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Contacto */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-item i {
    color: var(--verde-principal);
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
    flex-shrink: 0;
}

.footer-phone {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.footer-phone:hover {
    color: var(--verde-principal) !important;
    padding-left: 5px;
}

.footer-email {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    word-break: break-all;
}

.footer-email:hover {
    color: var(--verde-principal) !important;
}

.footer-hours span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* Redes sociales */
.footer-social-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    color: var(--blanco);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover i {
    transform: scale(1.2) rotate(10deg);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877F2, #0d5bca);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #0d5bca, #1877F2);
    box-shadow: 0 6px 25px rgba(24, 119, 242, 0.5);
    transform: translateY(-5px);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    transform: translateY(-5px);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.social-link.instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(220, 39, 67, 0.5);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0A66C2, #004182);
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
}

.social-link.linkedin:hover {
    background: linear-gradient(135deg, #004182, #0A66C2);
    box-shadow: 0 6px 25px rgba(10, 102, 194, 0.5);
    transform: translateY(-5px);
}

/* Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 40px 0;
}

/* Copyright */
.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

.footer-developed {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

.footer-developed i {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Responsive para footer */
@media (max-width: 992px) {
    .footer-empresarial {
        padding: 60px 0 30px;
    }

    .footer-logo {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .footer-empresarial {
        padding: 50px 0 25px;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .footer-copyright,
    .footer-developed {
        font-size: 0.85rem;
    }
}

/* ====================================================================
   NOTIFICACIÓN SIDEBAR - CARRITO
   ==================================================================== */

.cart-notification-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: var(--blanco);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.cart-notification-sidebar.show {
    right: 0;
}

.cart-notification-content {
    padding: 25px;
    position: relative;
}

.cart-notification-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(8, 153, 73, 0.1);
    margin-bottom: 20px;
}

.cart-notification-header i {
    font-size: 1.5rem;
    color: var(--verde-principal);
}

.cart-notification-header span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--azul-oscuro);
}

.cart-notification-body {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(8, 153, 73, 0.05);
    border-radius: 12px;
    margin-bottom: 25px;
}

.cart-notification-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(8, 153, 73, 0.2);
    flex-shrink: 0;
}

.cart-notification-info {
    flex: 1;
}

.cart-notification-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--azul-oscuro);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cart-notification-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--verde-principal);
    margin: 0;
}

.cart-notification-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-view-cart,
.btn-continue-shopping {
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
}

.btn-view-cart {
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-medio));
    color: var(--blanco) !important;
    box-shadow: 0 6px 20px rgba(8, 153, 73, 0.3);
}

.btn-view-cart:hover {
    box-shadow: 0 10px 35px rgba(8, 153, 73, 0.5);
    transform: translateY(-2px);
}

.btn-continue-shopping {
    background: transparent;
    border: 2px solid rgba(100, 116, 139, 0.3) !important;
    color: var(--gris-medio) !important;
}

.btn-continue-shopping:hover {
    background: var(--gris-medio) !important;
    border-color: var(--gris-medio) !important;
    color: var(--blanco) !important;
    transform: translateY(-2px);
}

.cart-notification-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(100, 116, 139, 0.3);
    background: transparent;
    color: var(--gris-medio);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cart-notification-close:hover {
    background: var(--gris-medio);
    border-color: var(--gris-medio);
    color: var(--blanco);
    transform: rotate(90deg);
}

/* Overlay para oscurecer el fondo */
.cart-notification-sidebar::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cart-notification-sidebar.show::before {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive para notificación */
@media (max-width: 576px) {
    .cart-notification-sidebar {
        width: 100%;
        max-width: 100vw;
        right: -100%;
    }

    .cart-notification-content {
        padding: 20px 15px;
    }

    .cart-notification-img {
        width: 70px;
        height: 70px;
    }

    .cart-notification-title {
        font-size: 0.95rem;
    }

    .cart-notification-price {
        font-size: 1.1rem;
    }

    .btn-view-cart,
    .btn-continue-shopping {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* ====================================================================
   CARRITO DE COMPRAS MODERNO
   ==================================================================== */

/* Contenedor del carrito */
.cart-container {
    background: var(--blanco);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(8, 153, 73, 0.1);
    height: 100%;
}

/* Carrito vacío */
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(8, 153, 73, 0.1), rgba(8, 153, 73, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-cart 3s ease-in-out infinite;
}

.empty-cart-icon i {
    font-size: 3.5rem;
    color: var(--verde-principal);
}

@keyframes float-cart {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.empty-cart-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: 10px;
}

.empty-cart-text {
    font-size: 1rem;
    color: var(--gris-medio);
    margin-bottom: 25px;
}

.btn-cta-carrito {
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-medio));
    color: var(--blanco) !important;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(8, 153, 73, 0.3);
}

.btn-cta-carrito:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(8, 153, 73, 0.4);
}

/* Títulos del carrito */
.cart-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.cart-section-title i {
    color: var(--verde-principal);
}

/* Cards de productos en el carrito */
.cart-product-card {
    background: var(--blanco);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(8, 153, 73, 0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-product-card:hover {
    border-color: rgba(8, 153, 73, 0.3);
    box-shadow: 0 8px 25px rgba(8, 153, 73, 0.1);
    transform: translateX(5px);
}

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(8, 153, 73, 0.1);
    flex-shrink: 0;
}

.cart-product-details {
    flex: 1;
}

.cart-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--azul-oscuro);
    margin-bottom: 8px;
}

.cart-product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--verde-principal);
    margin-bottom: 12px;
}

/* Controles de cantidad */
.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gris-medio);
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(8, 153, 73, 0.3);
    background: var(--blanco);
    color: var(--verde-principal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.quantity-btn:hover {
    background: var(--verde-principal);
    border-color: var(--verde-principal);
    color: var(--blanco);
    transform: scale(1.1);
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 2px solid rgba(8, 153, 73, 0.2);
    border-radius: 8px;
    padding: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--azul-oscuro);
}

.cart-product-subtotal {
    text-align: right;
    min-width: 100px;
}

.subtotal-label {
    font-size: 0.85rem;
    color: var(--gris-medio);
    display: block;
    margin-bottom: 5px;
}

.subtotal-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-oscuro);
}

.cart-product-remove {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(220, 39, 67, 0.3);
    background: var(--blanco);
    color: var(--rojo-principal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    margin-left: 15px;
}

.cart-product-remove:hover {
    background: var(--rojo-principal);
    border-color: var(--rojo-principal);
    color: var(--blanco);
    transform: scale(1.1) rotate(10deg);
}

/* Acciones del carrito */
.cart-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-clear-cart,
.btn-continue-shopping {
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.btn-clear-cart {
    border: 2px solid rgba(220, 39, 67, 0.3);
    color: var(--rojo-principal);
    background: transparent;
}

.btn-clear-cart:hover {
    background: var(--rojo-principal);
    border-color: var(--rojo-principal);
    color: var(--blanco);
    transform: translateY(-2px);
}

.btn-continue-shopping {
    border: 2px solid rgba(100, 116, 139, 0.3);
    color: var(--gris-medio);
    background: transparent;
}

.btn-continue-shopping:hover {
    background: var(--gris-medio);
    border-color: var(--gris-medio);
    color: var(--blanco);
    transform: translateY(-2px);
}

/* Resumen de compra */
.cart-summary {
    background: var(--blanco);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(8, 153, 73, 0.1);
    position: sticky;
    top: 100px;
}

.cart-summary-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.cart-summary-title i {
    color: var(--verde-principal);
}

.cart-summary-items {
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--gris-medio);
}

.summary-row strong {
    font-weight: 600;
    color: var(--azul-oscuro);
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(8, 153, 73, 0.2), transparent);
    margin: 10px 0;
}

.summary-total {
    background: linear-gradient(135deg, rgba(8, 153, 73, 0.05), rgba(8, 153, 73, 0.1));
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
}

.summary-total span:first-child {
    font-weight: 700;
    color: var(--azul-oscuro);
    font-size: 1.1rem;
}

.summary-total #total {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--verde-principal);
}

/* Botones de acción del resumen */
.cart-summary-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-whatsapp-pedido,
.btn-procesar-pedido {
    padding: 16px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.btn-whatsapp-pedido {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--blanco);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-pedido:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    transform: translateY(-3px);
}

.btn-procesar-pedido {
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-medio));
    color: var(--blanco);
    box-shadow: 0 6px 20px rgba(8, 153, 73, 0.3);
}

.btn-procesar-pedido:hover {
    background: linear-gradient(135deg, var(--verde-medio), var(--verde-principal));
    box-shadow: 0 10px 35px rgba(8, 153, 73, 0.5);
    transform: translateY(-3px);
}

/* Información del carrito */
.cart-summary-info {
    background: rgba(8, 153, 73, 0.05);
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid var(--verde-principal);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cart-summary-info i {
    color: var(--verde-principal);
    font-size: 1.1rem;
    margin-top: 2px;
}

.cart-summary-info small {
    color: var(--gris-medio);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Responsive para carrito */
@media (max-width: 992px) {
    .cart-product-card {
        flex-direction: column;
        text-align: center;
    }

    .cart-product-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .cart-product-subtotal {
        text-align: center;
        margin: 15px 0;
    }

    .cart-product-remove {
        margin: 0;
    }

    .cart-quantity-controls {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cart-container {
        padding: 20px;
    }

    .cart-summary {
        padding: 20px;
    }

    .empty-cart-icon {
        width: 100px;
        height: 100px;
    }

    .empty-cart-icon i {
        font-size: 2.5rem;
    }

    .cart-product-card {
        padding: 15px;
    }

    .cart-product-image {
        width: 100px;
        height: 100px;
    }

    .quantity-btn {
        width: 32px;
        height: 32px;
    }

    .quantity-input {
        width: 50px;
    }

    .cart-actions {
        flex-direction: column;
    }

    .btn-clear-cart,
    .btn-continue-shopping {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================================================
   BOTONES EMPRESARIALES
   ==================================================================== */

.btn-azul {
    background: linear-gradient(135deg, var(--azul-principal) 0%, var(--azul-medio) 100%);
    color: var(--blanco);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: var(--sombra-sm);
}

.btn-azul:hover {
    transform: translateY(-2px);
    box-shadow: var(--sombra-lg);
    color: var(--blanco);
}

.btn-outline-azul {
    background: transparent;
    color: var(--azul-principal);
    border: 2px solid var(--azul-principal);
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-outline-azul:hover {
    background: var(--azul-principal);
    color: var(--blanco);
    transform: translateY(-2px);
}

/* ====================================================================
   ALERTAS MODERNAS
   ==================================================================== */

.alert {
    border-radius: 12px;
    border: none;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: var(--sombra-sm);
    font-weight: 500;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

.alert-info {
    background-color: #dbeafe;
    color: #1e40af;
}

/* ====================================================================
   CARDS INFORMATIVAS - CATEGORÍAS
   ==================================================================== */

.stat-card {
    background: var(--blanco);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(8, 153, 73, 0.1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--verde-principal), var(--verde-medio));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(8, 153, 73, 0.15);
    border-color: rgba(8, 153, 73, 0.3);
}

.stat-card .icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-medio) 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(8, 153, 73, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(8, 153, 73, 0.4);
}

.stat-card.azul .icon {
    background: linear-gradient(135deg, var(--azul-principal) 0%, var(--azul-medio) 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(5, 71, 133, 0.3);
}

.stat-card.azul:hover .icon {
    box-shadow: 0 12px 35px rgba(5, 71, 133, 0.4);
}

.stat-card.verde .icon {
    background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-medio) 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(8, 153, 73, 0.3);
}

.stat-card.verde:hover .icon {
    box-shadow: 0 12px 35px rgba(8, 153, 73, 0.4);
}

.stat-card.naranja .icon {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.stat-card.naranja:hover .icon {
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.stat-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--azul-oscuro);
    margin-bottom: 5px;
    text-transform: capitalize;
}

.stat-card p {
    font-size: 0.85rem;
    color: var(--gris-medio);
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive para categorías - 2 tarjetas por fila en móvil */
@media (max-width: 576px) {
    .stat-card {
        padding: 20px 15px;
    }

    .stat-card .icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .stat-card h5 {
        font-size: 0.9rem;
    }

    .stat-card p {
        font-size: 0.8rem;
    }
}

/* ====================================================================
   UTILIDADES
   ==================================================================== */

.shadow-custom {
    box-shadow: var(--sombra-lg);
}

.rounded-custom {
    border-radius: 16px;
}

.bg-gris-claro {
    background-color: var(--gris-muy-claro);
}

/* ====================================================================
   RESPONSIVE DESIGN
   ==================================================================== */

@media (max-width: 1200px) {
    .productos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-caption h2 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .carousel-hero,
    .carousel-hero .carousel-item {
        height: 400px;
    }

    .carousel-caption {
        padding: 2rem;
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }

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

    .navbar-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Ajustes para HERO con video en móvil */
    .hero-video-section {
        height: auto;
        min-height: 100vh;
        padding: 60px 0 40px 0;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-divider {
        margin: 15px 0;
    }

    .divider-line {
        width: 50px;
    }

    .divider-icon {
        width: 35px;
        height: 35px;
        margin: 0 8px;
    }

    .divider-icon i {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
        white-space: nowrap;
    }

    .hero-products {
        gap: 8px;
        margin-bottom: 25px;
    }

    .product-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .product-separator {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 25px;
        font-size: 0.95rem;
        justify-content: center;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-text {
        font-size: 0.7rem;
    }

    /* Ajustes para tarjetas de producto en móvil */
    .producto-card {
        font-size: 0.85rem;
    }

    .producto-imagen {
        height: 120px;
    }

    .producto-body {
        padding: 10px;
    }

    .producto-nombre {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .producto-categoria {
        font-size: 0.7rem;
    }

    .producto-precio {
        font-size: 0.9rem;
    }

    .producto-acciones {
        gap: 5px;
    }

    .producto-acciones .btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }

    .carousel-hero,
    .carousel-hero .carousel-item {
        height: 350px;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }
}

/* ====================================================================
   BOTÓN FLOTANTE DE WHATSAPP
   ==================================================================== */

.btn-whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.btn-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive para botón de WhatsApp */
@media (max-width: 576px) {
    .btn-whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 1.7rem;
    }
}

/* ====================================================================
   SECCIÓN DE TESTIMONIOS DE CLIENTES
   ==================================================================== */

.testimonios-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.testimonio-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(8, 153, 73, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonio-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(8, 153, 73, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8, 153, 73, 0.15);
    border-color: rgba(8, 153, 73, 0.3);
}

.testimonio-foto {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(8, 153, 73, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonio-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonio-estrellas {
    margin-bottom: 20px;
}

.testimonio-estrellas i {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonio-texto {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gris-medio);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonio-autor h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--azul-oscuro);
    margin-bottom: 5px;
}

.testimonio-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--verde-principal);
    background: rgba(8, 153, 73, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Responsive para testimonios */
@media (max-width: 992px) {
    .testimonios-section {
        padding: 60px 0;
    }
}

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

    .testimonio-card {
        padding: 25px 20px;
    }

    .testimonio-foto {
        width: 80px;
        height: 80px;
    }

    .testimonio-estrellas i {
        font-size: 1rem;
    }

    .testimonio-texto {
        font-size: 0.95rem;
    }

    .testimonio-autor h5 {
        font-size: 1rem;
    }
}

/* ====================================================================
   ESTILOS ESPECÍFICOS PARA EL MODAL DE WHATSAPP
   ==================================================================== */

.btn-whatsapp-horario {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); /* Verde WhatsApp original */
    color: var(--blanco);
    border: none;
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-horario::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-whatsapp-horario:hover::before {
    left: 100%;
}

.btn-whatsapp-horario:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(37, 211, 102, 0.4);
    color: var(--blanco);
}

.btn-whatsapp-horario i {
    font-size: 1.8rem;
    margin-right: 18px;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-header .fab.fa-whatsapp {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-option-title {
    font-weight: 700;
    color: var(--blanco);
    font-size: 1.1rem;
    margin-bottom: 4px;
    display: block;
}

.whatsapp-option-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    display: block;
}

/* Estilo adicional para el cuerpo del modal */
.modal-body {
    padding: 25px;
    background: linear-gradient(160deg, #f8f9fa 0%, #ffffff 100%);
}

/* Estilo para el título del modal */
#whatsappModalLabel {
    color: #25D366;
    font-weight: 700;
}

/* ====================================================================
   CORRECCIÓN RESPONSIVE - 100% VIEWPORT EN MÓVILES
   ==================================================================== */

/* Eliminar cualquier overflow horizontal */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Forzar que el container ocupe 100% en móviles */
@media (max-width: 767px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Asegurar que el navbar también ocupe 100% */
    .navbar-empresarial {
        width: 100% !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .navbar-empresarial .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Footer 100% viewport */
    .footer-empresarial {
        width: 100% !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .footer-empresarial .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Secciones principales */
    main {
        width: 100%;
        overflow-x: hidden;
    }

    /* Carousel 100% viewport */
    .carousel-hero {
        width: 100% !important;
        margin: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* Grid de productos sin márgenes laterales */
    .productos-grid {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    /* Ajustar imágenes al 100% */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Eliminar márgenes negativos de Bootstrap */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .row > * {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* Para móviles muy pequeños */
@media (max-width: 575px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Header moderno con glass effect */
    .navbar-empresarial {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        padding: 12px 0;
        border-bottom: 1px solid rgba(8, 153, 73, 0.1);
    }

    /* Ajustar el navbar para que el texto no se salga y se vea completo */
    .navbar-brand {
        font-size: 1rem !important;
        max-width: calc(100vw - 100px);
        flex: 1;
        color: var(--azul-oscuro) !important;
    }

    .navbar-brand img.logo-img {
        height: 45px !important;
        max-width: 80px !important;
        margin-right: 10px !important;
    }

    .navbar-brand .brand-subtitle {
        font-size: 0.6rem !important;
        display: block;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        max-width: 100%;
        line-height: 1.2;
        word-break: break-word;
        color: rgba(4, 38, 71, 0.7) !important;
    }

    /* Menú hamburguesa moderno - FORZAR COLOR NEGRO */
    .navbar-toggler {
        border: 2px solid rgba(4, 38, 71, 0.2) !important;
        background: transparent !important;
        border-radius: 8px;
        padding: 8px 12px !important;
        transition: all 0.3s ease;
    }

    .navbar-toggler:hover {
        background: rgba(4, 38, 71, 0.1) !important;
        border-color: rgba(4, 38, 71, 0.3) !important;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(4, 38, 71, 0.2) !important;
    }

    /* Forzar icono negro con filter SVG */
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23042647' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        width: 24px !important;
        height: 24px !important;
        display: inline-block !important;
    }

    /* Fallback con filter para navegadores que no rendericen el SVG */
    .navbar-toggler-icon::before {
        content: '☰' !important;
        font-size: 28px !important;
        color: #042647 !important;
        font-weight: bold !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        width: 100% !important;
    }

    /* Menú desplegable con glass effect */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin-top: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 15px;
    }

    .navbar-nav .nav-link {
        color: var(--azul-oscuro) !important;
        padding: 12px 15px !important;
        border-radius: 8px;
        margin: 5px 0;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(8, 153, 73, 0.1);
    }
}

    .navbar-toggler {
        padding: 4px 8px !important;
        font-size: 1rem !important;
        flex-shrink: 0;
        background-color: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
}
