:root {
    /* === PALETA DE COLORES PRINCIPAL === */
    --primary-blue: #2a55a2;           /* Azul profundo (tu color base) */
    --secondary-blue: #1a3d7a;         /* Azul oscuro complementario */
    --light-blue: #50bee9;             /* Azul cielo brillante (tu color secundario) */
    --dark-gray: #1c2938;              /* Gris azulado oscuro */
    --light-gray: #3a5068;             /* Gris azulado medio */
    --accent-cyan: #50bee9;            /* Cyan brillante (reemplaza el dorado) */
    
    /* === VARIACIONES DE LOS COLORES PRINCIPALES === */
    --primary-blue-light: rgba(42, 85, 162, 0.1);
    --primary-blue-medium: rgba(42, 85, 162, 0.5);
    --primary-blue-dark: rgba(42, 85, 162, 0.9);
    
    --secondary-blue-light: rgba(26, 61, 122, 0.1);
    --secondary-blue-medium: rgba(26, 61, 122, 0.5);
    --secondary-blue-dark: rgba(26, 61, 122, 0.9);
    
    --light-blue-light: rgba(80, 190, 233, 0.15);
    --light-blue-medium: rgba(80, 190, 233, 0.5);
    --light-blue-dark: rgba(80, 190, 233, 0.9);
    
    /* === VARIACIONES DEL GRIS TERCIARIO === */
    --light-gray-light: rgba(58, 80, 104, 0.1);
    --light-gray-medium: rgba(58, 80, 104, 0.5);
    --light-gray-dark: rgba(58, 80, 104, 0.9);
    
    /* === GRADIENTES USANDO LA PALETA === */
    --gradient-primary: linear-gradient(135deg, #2a55a2 0%, #1a3d7a 100%);
    --gradient-secondary: linear-gradient(135deg, #50bee9 0%, #2a55a2 100%);
    --gradient-dark: linear-gradient(135deg, #1c2938 0%, #2a55a2 100%);
    --gradient-cyan: linear-gradient(135deg, #50bee9 0%, #7dd3f0 100%);
    --gradient-blue-sky: linear-gradient(135deg, #2a55a2 0%, #50bee9 50%, #7dd3f0 100%);
    
    /* === COLORES ADICIONALES PARA ARMONÍA === */
    --white: #ffffff;
    --black: #000000;
    --bg-light: #f0f7fb;
    --cyan-accent: #7dd3f0;            /* Cyan claro para acentos */
    --cyan-muted: #3a9ec7;             /* Cyan apagado */
    
    /* === SOMBRAS ELEGANTES === */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-primary: 0 4px 15px rgba(42, 85, 162, 0.6);
    --shadow-secondary: 0 4px 15px rgba(26, 61, 122, 0.5);
    --shadow-cyan: 0 4px 15px rgba(80, 190, 233, 0.4);
    
    /* === TRANSICIONES === */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 400ms ease-in-out;
    
    /* === ESPACIADO === */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* === BORDES === */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* === ALIAS PARA COMPATIBILIDAD (reemplaza las referencias al dorado) === */
    --industrial-orange: #50bee9;
    --industrial-orange-light: rgba(80, 190, 233, 0.15);
    --industrial-orange-medium: rgba(80, 190, 233, 0.5);
    --industrial-orange-dark: rgba(80, 190, 233, 0.9);
    --gold-accent: #7dd3f0;
    --gold-muted: #3a9ec7;
    --gradient-orange: linear-gradient(135deg, #50bee9 0%, #7dd3f0 100%);
    --gradient-gold: linear-gradient(135deg, #2a55a2 0%, #50bee9 50%, #7dd3f0 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === CLASES DE UTILIDAD PARA APLICAR LA PALETA === */
.bg-primary { background-color: var(--primary-blue); }
.bg-secondary { background-color: var(--secondary-blue); }
.bg-tertiary { background-color: var(--light-gray); }
.bg-cyan { background-color: var(--light-blue); }

.text-primary { color: var(--primary-blue); }
.text-secondary { color: var(--secondary-blue); }
.text-tertiary { color: var(--light-gray); }
.text-cyan { color: var(--light-blue); }

.border-primary { border-color: var(--primary-blue); }
.border-secondary { border-color: var(--secondary-blue); }
.border-tertiary { border-color: var(--light-gray); }
.border-cyan { border-color: var(--light-blue); }
/* === COMBINACIONES ELEGANTES RECOMENDADAS === */
.hero-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.card-elegant {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary-color);
}

.button-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
    transition: var(--transition-base);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.accent-bar {
    background: var(--gradient-warm);
    height: 4px;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--secondary-blue-light);
    color: var(--dark-gray);
}

/* BOTONES */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-blue-medium);
}

.btn-outline-primary {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    border-width: 2px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.btn-primary-custom {
    background: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-custom:hover {
    background: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-blue-medium);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--industrial-orange);
    color: var(--industrial-orange);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-custom:hover {
    background: var(--industrial-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--industrial-orange-medium);
}

.btn-contact {
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.btn-contact:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-blue-medium);
}

.btn-quote {
    background: linear-gradient(45deg, var(--industrial-orange), var(--secondary-blue));
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.btn-quote:hover {
    background: linear-gradient(45deg, var(--secondary-blue), var(--industrial-orange));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--industrial-orange-medium);
}

.filter-btn {
    margin: 0 8px 15px 0;
    padding: 10px 25px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* NAVEGACIÃ“N */
.navbar {
    /*background: var(--gradient-primary);*/
    box-shadow: 0 2px 10px var(--primary-blue-light);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-blue) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--primary-blue-medium);
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-blue-light) 100%);
    padding: 15px 0;
    margin-top: 10px;
    min-width: 220px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--secondary-blue-light);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 4px var(--primary-blue-light));
}

.dropdown-item {
    padding: 12px 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: var(--dark-gray);
    border-radius: 0;
    letter-spacing: 0.5px;
    position: relative;
    margin: 2px 10px;
    border-radius: 8px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 8px 0 0 8px;
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
    padding-left: 30px;
}

.dropdown-item:hover::before {
    width: 4px;
}

/* SECCIÃ“N HERO */
.hero-section {
    background: var(--gradient-primary),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ecf0f1" width="1200" height="600"/><g fill="%23bdc3c7"><rect x="0" y="0" width="200" height="100"/><rect x="250" y="150" width="150" height="80"/><rect x="450" y="50" width="180" height="120"/><rect x="700" y="200" width="160" height="90"/><rect x="900" y="80" width="140" height="110"/></g></svg>') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px var(--primary-blue-medium);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-blue-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.industrial-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--primary-blue-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--industrial-orange-dark) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* SECCIONES */
.features-section {
    padding: 100px 0;
    background-color: var(--secondary-blue-light);
}

.services-section {
    padding: 100px 0;
    background: white;
}

.products-section {
    padding: 80px 0;
    background: var(--gradient-secondary);
}

.cta-section {
    padding: 80px 0;
    background: var(--light-gray);
    color: white;
    text-align: center;
}

/* TARJETAS */
.feature-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 10px 30px var(--primary-blue-light);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-blue);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--primary-blue-medium);
}

.product-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--primary-blue-light);
    transition: all 0.3s ease;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-blue-light) 0%, #ffffff 100%);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--primary-blue-medium);
}

/* ICONOS */
.feature-icon {
    font-size: 3rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-right: 20px;
    width: 60px;
    text-align: center;
}

/* TÃTULOS */
.section-title {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ELEMENTOS ESPECÃFICOS */
.section-subtitle {
    text-align: center;
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.product-description {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.product-features li {
    padding: 5px 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.product-features li i {
    color: var(--secondary-blue);
    margin-right: 8px;
    width: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--secondary-blue-light);
    border-left: 5px solid var(--secondary-blue);
    transition: background 0.3s ease;
}

.service-item:hover {
    background: var(--primary-blue-light);
}

.service-content h4 {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

/* CARRUSEL */
.custom-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.carousel-item {
    height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.8s ease;
}

.carousel-item.bg-gradient-primary {
    background: var(--gradient-primary);
}

.carousel-item.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.carousel-item.bg-gradient-dark {
    background: var(--gradient-dark);
}

.carousel-item.bg-gradient-orange {
    background: var(--gradient-orange);
}

.carousel-item.bg-gradient-gray {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--dark-gray) 100%);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--industrial-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.carousel-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--primary-blue-medium);
}

.carousel-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px var(--primary-blue-medium);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--primary-blue-light);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-blue-medium);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px var(--primary-blue-medium));
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: var(--secondary-blue-medium);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: var(--industrial-orange);
    transform: scale(1.2);
}

/* ELEMENTOS ESPECÃFICOS DE PRODUCTOS */
.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--gradient-secondary);
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-orange);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}
/* ========================================
   FOOTER MODERNO Y ELEGANTE
======================================== */

.footer-moderno {
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.footer-moderno::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cyan);
}

/* Logo Footer */
.footer-logo-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    display: inline-block;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Secciones del Footer */
.footer-section {
    padding: var(--spacing-md);
    height: 100%;
}

.footer-titulo {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.footer-titulo i {
    color: var(--light-blue);
}

.footer-texto {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Listas del Footer */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: var(--spacing-md);
}

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

.footer-link:hover {
    color: var(--light-blue);
    transform: translateX(5px);
}

.footer-link i {
    transition: transform 0.3s ease;
}

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

/* Información de Contacto */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.footer-contact-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-cyan);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: var(--spacing-md);
}

.footer-contact-icon i {
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.footer-contact-text {
    flex: 1;
}

.footer-contact-text strong {
    color: var(--white);
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.footer-contact-text span,
.footer-contact-text a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    text-decoration: none;
}

.footer-contact-text a:hover {
    color: var(--light-blue);
}

/* Redes Sociales */
.footer-social {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-btn:hover {
    background: var(--gradient-cyan);
    color: var(--primary-blue);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 25px rgba(80, 190, 233, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-copyright strong {
    color: var(--white);
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--light-blue);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-cyan);
    border: none;
    border-radius: var(--radius-full);
    color: var(--primary-blue);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(80, 190, 233, 0.3);
    z-index: 998;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(80, 190, 233, 0.6);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-section {
        padding: var(--spacing-md) 0;
        margin-bottom: var(--spacing-lg);
    }

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

    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .footer-legal span {
        display: none;
    }

    .scroll-top-btn {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 767px) {
    .footer-logo {
        height: 50px;
    }

    .footer-contact-icon {
        width: 40px;
        height: 40px;
    }

    .footer-contact-icon i {
        font-size: 1.1rem;
    }

    .footer-social-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-copyright,
    .footer-legal {
        text-align: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 575px) {
    .footer-titulo {
        font-size: 1rem;
    }

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

    .footer-link {
        font-size: 0.85rem;
    }
}

/* FILTROS */
.filter-buttons {
    margin-bottom: 3rem;
}

/* ELEMENTOS DECORATIVOS */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, var(--secondary-blue-light) 0%, transparent 70%);
    pointer-events: none;
}

/* ANIMACIONES */
.animate__animated {
    animation-duration: 1s;
}

.animate__delay-1s {
    animation-delay: 0.3s;
}

.animate__delay-2s {
    animation-delay: 0.6s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-title {
        margin-top: 40px;
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .btn-contact,
    .btn-quote {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .carousel-item {
        height: 400px;
    }
    
    .carousel-content h1 {
        font-size: 2.5rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.object-fit-cover {
    object-fit: cover;
}

.bg-primary-subtle {
    background-color: var(--light-gray) !important;
}
        /* Estilos para los botones flotantes */
        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 1000;
        }
        
        .main-floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .main-floating-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(0,0,0,0.4);
        }
        
        .floating-menu {
            position: absolute;
            bottom: 70px;
            right: 0;
            display: none;
            flex-direction: column;
            gap: 10px;
        }
        
        .floating-menu.active {
            display: flex;
            animation: fadeInUp 0.5s ease;
        }
        
        .sub-floating-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .floating-menu.active .sub-floating-btn {
            opacity: 1;
            transform: translateY(0);
        }
        
        .sub-floating-btn:nth-child(1) { transition-delay: 0.1s; background: #4267B2; } /* Facebook */
        .sub-floating-btn:nth-child(2) { transition-delay: 0.2s; background: #E1306C; } /* Instagram */
        .sub-floating-btn:nth-child(3) { transition-delay: 0.3s; background: #25D366; } /* WhatsApp */
        .sub-floating-btn:nth-child(4) { transition-delay: 0.4s; background: #1DA1F2; } /* Twitter */
        .sub-floating-btn:nth-child(5) { transition-delay: 0.5s; background: #0077B5; } /* LinkedIn */
        .sub-floating-btn:nth-child(6) { transition-delay: 0.6s; background: #FF0000; } /* YouTube */
        .sub-floating-btn.phone { background: #28a745; } /* TelÃ©fono */
        .sub-floating-btn.whatsapp { background: #25D366; } /* WhatsApp especÃ­fico */
        
        .sub-floating-btn:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        
        .tooltip {
            position: absolute;
            right: 60px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        
        .sub-floating-btn:hover .tooltip {
            opacity: 1;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Animaciones especÃ­ficas */
        .animate-pulse {
            animation: pulse 2s infinite;
        }
        
        .animate-bounce-in {
            animation: bounceIn 0.6s ease;
        }
        
        .animate-shake {
            animation: shake 0.5s ease;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .contacto-container {
            max-width: 1400px;
            margin: 90px 40px 40px 40px;
            padding: 20px;
        }

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

        .contacto-header h1 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
        }

        .contacto-header p {
            font-size: 1.1rem;
            color:var(--light-gray);
        }

        .contacto-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        @media (max-width: 992px) {
            .contacto-grid {
                grid-template-columns: 1fr !important;
            }
        }

        /* InformaciÃ³n de contacto */
        .info-contacto {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .info-contacto h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--gradient-dark);
        }

        .info-item {
            display: flex;
            align-items: start;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #e0e0e0;
        }

        .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--industrial-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-right: 20px;
        }

        .info-content h3 {
            margin: 0 0 8px 0;
            font-size: 1.2rem;
            color: var(--dark-gray);
        }

        .info-content p {
            margin: 0;
            color: var(--light-gray);
            line-height: 1.6;
        }

        .horarios-lista {
            list-style: none;
            padding: 0;
            margin: 10px 0 0 0;
        }

        .horarios-lista li {
            padding: 5px 0;
            color: var(--dark-gray);
        }

        .horarios-lista strong {
            color: var(--dark-gray);
            display: inline-block;
            width: 120px;
        }

        /* Formulario */
        .formulario-contacto {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .formulario-contacto h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--dark-gray);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-gray);
        }

        .form-group label .required {
            color: #dc3545;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--industrial-orange);
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .btn-enviar {
            background: var(--industrial-orange);
            color: white;
            border: none;
            padding: 14px 40px;
            font-size: 1.1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
        }

        .btn-enviar:hover {
            background: var(--primary-blue);
        }

        .btn-enviar:disabled {
            background: var(--dark-gray);
            cursor: not-allowed;
        }

        .alert {
            padding: 15px 20px;
            border-radius: 6px;
            margin-bottom: 20px;
        }

        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        /* Mapa */
        .mapa-container {
            margin-top: 50px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .mapa-container h2 {
            background: #f8f9fa;
            padding: 20px;
            margin: 0 0 0 0;
            font-size: 1.8rem;
            color: #333;
        }

        .mapa-wrapper {
            height: 450px;
            width: 100%;
        }

        .mapa-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .tipo-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-left: 10px;
        }

        .badge-soporte {
            background: #ffc107;
            color: #000;
        }

        .badge-ventas {
            background: #28a745;
            color: white;
        }

        .badge-consulta {
            background: #17a2b8;
            color: white;
        }
        .hero-categorias {
  position: relative;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-categorias::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-categorias > * {
  position: relative;
  z-index: 2;
}

/* Tablets */
@media (min-width: 768px) {
  .hero-categorias {
    min-height: 300px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .hero-categorias {
    min-height: 300px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .hero-categorias {
    min-height: 350px;
  }
}
        .product-section {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .product-header {
            background: var(--gradient-gold);
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .product-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            opacity: 0.3;
        }

        .product-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1;
        }

        .product-subtitle {
            font-size: 1.5rem;
            color: var(--secondary-blue);
            font-weight: 600;
            margin-top: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .product-image {
            padding: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        }

        .product-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
            transition: transform var(--transition-base);
        }

        .product-image img:hover {
            transform: scale(1.05) rotateY(5deg);
        }

        .info-section {
            padding: 2rem;
        }

        .section-title {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 3px solid var(--industrial-orange);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .section-title i {
            color: var(--industrial-orange);
            font-size: 1.5rem;
        }

        .info-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-bottom: 1.5rem;
        }

        .info-table table {
            margin: 0;
        }

        .info-table thead {
            background: var(--primary-blue);
            color: white;
        }

        .info-table thead th {
            padding: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border: none;
        }

        .info-table tbody td {
            padding: 0.9rem 1rem;
            border-bottom: 1px solid #e9ecef;
            vertical-align: middle;
        }

        .info-table tbody tr:last-child td {
            border-bottom: none;
        }

        .info-table tbody tr:hover {
            background: var(--industrial-orange-light);
            transition: var(--transition-base);
        }

        .label-cell {
            font-weight: 600;
            color: var(--secondary-blue);
            width: 40%;
        }

        .value-cell {
            color: var(--dark-gray);
        }

        .barcode-section {
            background: var(--primary-blue-light);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            margin-top: 2rem;
        }

        .barcode-label {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .barcode-code {
            font-size: 1.5rem;
            color: var(--industrial-orange);
            font-weight: 800;
            font-family: 'Courier New', monospace;
            letter-spacing: 2px;
        }

        .badge-custom {
            background: var(--gradient-gold);
            color: var(--primary-blue);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
        }

        .dimension-card {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            transition: all var(--transition-base);
            height: 100%;
        }

        .dimension-card:hover {
            border-color: var(--industrial-orange);
            box-shadow: var(--shadow-gold);
            transform: translateY(-5px);
        }

        .dimension-card i {
            font-size: 2.5rem;
            color: var(--industrial-orange);
            margin-bottom: 1rem;
        }

        .dimension-label {
            font-weight: 700;
            color: var(--primary-blue);
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
        }

        .dimension-value {
            color: var(--secondary-blue);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .highlight-box {
            background: var(--industrial-orange-light);
            border-left: 4px solid var(--industrial-orange);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin-top: 1.5rem;
        }

        .highlight-box i {
            color: var(--industrial-orange);
            margin-right: 0.5rem;
        }

        @media (max-width: 768px) {
            .product-title {
                font-size: 2rem;
            }
            
            .product-subtitle {
                font-size: 1.2rem;
            }
        }
        /* === PRODUCTO - ESTILOS PROFESIONALES === */

/* Breadcrumb personalizado */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "â€º";
    color: var(--industrial-orange);
    font-size: 1.2rem;
}

/* GalerÃ­a de imÃ¡genes */
.producto-imagen-principal {
    cursor: zoom-in;
    transition: transform 0.4s ease;
}

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

.miniatura-producto {
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.miniatura-producto::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.miniatura-producto:hover::after {
    opacity: 1;
}

.miniatura-producto.activa {
    border-color: var(--industrial-orange);
}

.miniatura-producto.activa::after {
    opacity: 0;
}

/* DescripciÃ³n del producto */
.descripcion-producto {
    line-height: 1.8;
    font-size: 1.05rem;
}

.descripcion-producto img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.descripcion-producto h1,
.descripcion-producto h2,
.descripcion-producto h3 {
    color: var(--industrial-orange);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.descripcion-producto p {
    margin-bottom: 1rem;
}

.descripcion-producto ul,
.descripcion-producto ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.descripcion-producto table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.descripcion-producto table thead {
    background: var(--primary-blue);
}

.descripcion-producto table th,
.descripcion-producto table td {
    padding: 12px;
    border: 1px solid var(--light-gray);
}

/* Botones mejorados */
.btn-warning {
    background: var(--gradient-gold);
    border: none;
    transition: all 0.3s ease;
}

.btn-warning:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-warning {
    border: 2px solid var(--industrial-orange);
    color: var(--industrial-orange);
    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    background: var(--industrial-orange);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Animaciones suaves */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
}
/* === INDEX - ESTILOS MODERNOS === */

/* Hero mejorado */
#inicio {
    position: relative;
    overflow: hidden;
}

#inicio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(212,175,55,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.3;
}

/* Cards de productos con hover elegante */
.producto-card-hover {
    transition: all 0.3s ease;
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.producto-card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(42, 85, 162, 0.15) !important;
}

.producto-imagen-container {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.producto-imagen-container img {
    transition: transform 0.5s ease;
}

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

.producto-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 85, 162, 0.75) 0%, rgba(80, 190, 233, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

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

/* Cards de servicios */
.servicio-card-hover {
    transition: all 0.4s ease;
    border-width: 2px !important;
}

.servicio-card-hover:hover {
    transform: translateY(-8px);
    border-color: var(--industrial-orange) !important;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3) !important;
}

/* Features modernas */
.feature-card-modern {
    background: rgba(26, 35, 50, 0.5);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card-modern:hover {
    background: rgba(26, 35, 50, 0.8);
    border-color: var(--industrial-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

.feature-icon-modern i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.feature-card-modern:hover .feature-icon-modern {
    transform: rotateY(360deg);
}

/* PaginaciÃ³n elegante */
.pagination .page-link {
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

/* Badges personalizados */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Botones mejorados */
.btn-warning {
    background: var(--gradient-gold);
    border: none;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline-warning {
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

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

/* Responsive */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .feature-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-modern i {
        font-size: 2rem;
    }
}
/* === CATEGORÃAS - ESTILOS PROFESIONALES === */

/* Hero de categorÃ­a con parallax */
.hero-categoria-bg {
    position: relative;
    transition: background-position 0.5s ease;
}

/* Breadcrumb personalizado para categorÃ­as */
.breadcrumb-item + .breadcrumb-item::before {
    content: "â€º";
    color: var(--industrial-orange);
    font-size: 1.3rem;
    font-weight: 600;
}

/* Badges */
.badge {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Estado vacÃ­o (sin productos) */
.fas.fa-box-open {
    animation: float 3s ease-in-out infinite;
}

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

/* PaginaciÃ³n mejorada */
.pagination {
    gap: 0.5rem;
}

.pagination .page-link {
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px !important;
}

.pagination .page-link:hover:not(.active) {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(42, 85, 162, 0.2);
}

.pagination .page-item.active .page-link {
    box-shadow: 0 4px 15px rgba(42, 85, 162, 0.3);
}

/* Efectos de texto */
.display-2 {
    letter-spacing: -1px;
}

/* Responsive */
@media (max-width: 768px) {
    .display-2 {
        font-size: 2.5rem;
    }
    
    .hero-categoria-bg {
        min-height: 300px !important;
        background-attachment: scroll !important;
    }
    
    .producto-card-hover:hover {
        transform: translateY(-5px);
    }
}

/* Efecto parallax mejorado */
@media (min-width: 769px) {
    .hero-categoria-bg {
        background-attachment: fixed;
    }
}
/* === PÃGINAS DINÃMICAS - ESTILOS PROFESIONALES === */

/* Hero de pÃ¡gina con parallax */
.hero-pagina-bg {
    position: relative;
    transition: background-position 0.5s ease;
}

@media (min-width: 769px) {
    .hero-pagina-bg {
        background-attachment: fixed;
    }
}

/* Breadcrumb personalizado */
.breadcrumb-item + .breadcrumb-item::before {
    content: "â€º";
    color: var(--industrial-orange);
    font-size: 1.3rem;
    font-weight: 600;
}

/* Contenido de la pÃ¡gina */
.contenido-pagina {
    font-size: 1.1rem;
    line-height: 1.9;
}

.contenido-pagina h1,
.contenido-pagina h2,
.contenido-pagina h3,
.contenido-pagina h4,
.contenido-pagina h5,
.contenido-pagina h6 {
    color: var(--industrial-orange);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contenido-pagina h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--industrial-orange);
    padding-bottom: 0.5rem;
}

.contenido-pagina h2 {
    font-size: 2rem;
}

.contenido-pagina h3 {
    font-size: 1.75rem;
}

.contenido-pagina p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.contenido-pagina ul,
.contenido-pagina ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.contenido-pagina li {
    margin-bottom: 0.75rem;
}

.contenido-pagina a {
    color: var(--industrial-orange);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.contenido-pagina a:hover {
    color: var(--gold-accent);
    text-decoration: none;
}

.contenido-pagina blockquote {
    border-left: 4px solid var(--industrial-orange);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--light-gray);
}

.contenido-pagina table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.contenido-pagina table thead {
    background: var(--primary-blue);
}

.contenido-pagina table th,
.contenido-pagina table td {
    padding: 12px;
    border: 1px solid var(--light-gray);
}

.contenido-pagina table th {
    color: var(--industrial-orange);
    font-weight: 700;
}

/* ImÃ¡genes de contenido */
.imagen-contenido-left,
.imagen-contenido-right,
.imagen-contenido-center {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    margin: 1.5rem 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.imagen-contenido-left {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1.5rem;
    max-width: 45%;
}

.imagen-contenido-right {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    max-width: 45%;
}

.imagen-contenido-center {
    display: block;
    margin: 2rem auto;
    max-width: 80%;
}

.imagen-contenido-left:hover,
.imagen-contenido-right:hover,
.imagen-contenido-center:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

/* GalerÃ­a */
.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--secondary-blue);
    transition: transform 0.4s ease;
}

.galeria-item:hover {
    transform: translateY(-8px);
}

.galeria-imagen-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.galeria-imagen-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.galeria-item:hover .galeria-imagen-wrapper img {
    transform: scale(1.15);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 8, 24, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.galeria-overlay i {
    color: var(--industrial-orange);
    transform: scale(0.5);
    transition: transform 0.4s ease 0.1s;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-item:hover .galeria-overlay i {
    transform: scale(1);
}

/* Limpiar floats */
.contenido-pagina::after {
    content: "";
    display: table;
    clear: both;
}

/* Carousel personalizado */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--industrial-orange);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--industrial-orange);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-pagina-bg {
        min-height: 350px !important;
        background-attachment: scroll !important;
    }

    .display-2 {
        font-size: 2rem;
    }

    .imagen-contenido-left,
    .imagen-contenido-right {
        float: none;
        margin: 1.5rem auto;
        max-width: 100%;
    }

    .imagen-contenido-center {
        max-width: 100%;
    }

    .contenido-pagina {
        font-size: 1rem;
    }

    .contenido-pagina h1 {
        font-size: 1.75rem;
    }

    .contenido-pagina h2 {
        font-size: 1.5rem;
    }

    .contenido-pagina p {
        text-align: left;
    }
}

/* AnimaciÃ³n para el contenido */
@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contenido-pagina > * {
    animation: fadeInContent 0.6s ease forwards;
}
/* === CONTACTO - ESTILOS PROFESIONALES === */

/* InformaciÃ³n de contacto */
.contacto-info-item {
    padding: 1.5rem;
    background: rgba(26, 35, 50, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contacto-info-item:hover {
    background: rgba(26, 35, 50, 0.8);
    transform: translateX(5px);
}

.contacto-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contacto-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

/* Formulario moderno */
.formulario-contacto-moderno .form-control,
.formulario-contacto-moderno .form-select {
    transition: all 0.3s ease;
}

.formulario-contacto-moderno .form-control:focus,
.formulario-contacto-moderno .form-select:focus {
    background-color: #0d1520 !important;
    border-color: var(--industrial-orange) !important;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
    color: white !important;
}

.formulario-contacto-moderno .form-control::placeholder {
    color: #6c757d;
}

.formulario-contacto-moderno textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.formulario-contacto-moderno .btn-warning {
    transition: all 0.3s ease;
}

.formulario-contacto-moderno .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Mapa wrapper */
.mapa-wrapper-moderno {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--industrial-orange);
    position: relative;
}

.mapa-wrapper-moderno iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Alertas personalizadas */
.alert {
    border-radius: 8px;
    padding: 1.25rem;
}

.alert i {
    font-size: 1.2rem;
    vertical-align: middle;
}

/* AnimaciÃ³n para iconos */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.contacto-icon {
    animation: pulse 2s ease-in-out infinite;
}

.contacto-info-item:hover .contacto-icon {
    animation: none;
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

/* Select personalizado */
.formulario-contacto-moderno .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d4af37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* Responsive */
@media (max-width: 768px) {
    .contacto-icon {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }

    .contacto-icon i {
        font-size: 1.2rem;
    }

    .contacto-info-item {
        padding: 1rem;
    }

    .mapa-wrapper-moderno iframe {
        height: 350px;
    }

    .formulario-contacto-moderno .btn-warning {
        font-size: 1rem;
    }
}

/* Efecto hover en form groups */
.formulario-contacto-moderno .form-label {
    transition: color 0.3s ease;
}

.formulario-contacto-moderno .form-control:focus + .form-label,
.formulario-contacto-moderno .form-select:focus + .form-label {
    color: var(--industrial-orange);
}
/* === HISTORIA - ESTILOS ESPECÃFICOS === */

.historia-bloque {
    position: relative;
}

.historia-year-badge {
    flex-shrink: 0;
}

.historia-icon-badge {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.historia-icon-badge i {
    color: var(--primary-blue);
}

/* Timeline visual */
.historia-bloque:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 100%;
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.5) 0%, transparent 100%);
}

/* Hover effects */
.historia-bloque:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .historia-bloque::after {
        display: none;
    }
    
    .historia-year-badge .badge {
        font-size: 1rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    .historia-icon-badge {
        width: 60px;
        height: 60px;
    }
}
/* === NAVBAR ELEGANTE Y PROFESIONAL === */

/* Navbar base */
.navbar-elegant {
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-elegant .container-fluid {
    max-width: 1400px;
}

/* Logo */
.navbar-logo {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

/* Nav Links Elegantes */
.nav-link-elegant {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.25rem !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-link-elegant::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link-elegant:hover::before,
.nav-link-elegant.active::before {
    width: 80%;
}

.nav-link-elegant:hover {
    color: #d4af37 !important;
}

.nav-link-elegant.active {
    color: #d4af37 !important;
}

/* Dropdown Mega Menu */
.dropdown-mega {
    position: static;
}

.dropdown-menu-mega {
    background: linear-gradient(135deg, #010818 0%, #1a2332 100%);
    border: 2px solid #d4af37;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    margin-top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    padding: 0;
    animation: slideDown 0.3s ease;
}

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

/* Mega Menu Title */
.dropdown-mega-title {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

/* Mega Menu Items */
.dropdown-item-mega {
    color: #ffffff !important;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-bottom: 0.25rem;
    background: transparent;
}

.dropdown-item-mega:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37 !important;
    transform: translateX(5px);
    padding-left: 1.5rem;
}

.dropdown-item-mega i.fa-angle-right {
    transition: transform 0.3s ease;
}

.dropdown-item-mega:hover i.fa-angle-right {
    transform: translateX(5px);
}

/* BotÃ³n CTA en Navbar */
.btn-navbar-cta {
    background: var(--gradient-gold);
    border: none;
    color: #010818;
    font-weight: 700;
    padding: 0.65rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-navbar-cta:hover {
    background: #f4d03f;
    color: #010818;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Navbar Toggler */
.navbar-toggler {
    padding: 0.5rem 0.75rem;
    border: 2px solid #d4af37 !important;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.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(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Scrolled */
.navbar-elegant.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.7);
}

.navbar-elegant.scrolled .navbar-logo {
    width: 120px;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-elegant {
        background: #010818 !important;
    }

    .nav-link-elegant {
        padding: 1rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link-elegant::before {
        display: none;
    }

    .dropdown-menu-mega {
        position: relative !important;
        width: 100%;
        border: none;
        border-radius: 0;
        margin-top: 0.5rem !important;
        padding: 1rem;
    }

    .dropdown-mega-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .dropdown-item-mega {
        padding: 0.75rem 0.5rem;
    }

    .btn-navbar-cta {
        width: 100%;
        margin-top: 1rem;
    }

    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
}

@media (max-width: 575px) {
    .navbar-logo {
        width: 120px;
    }

    .nav-link-elegant {
        font-size: 0.9rem;
    }
}

/* Floating Buttons (mejorados) */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-menu {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
}

.sub-floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.sub-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.sub-floating-btn.phone {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.sub-floating-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.sub-floating-btn .tooltip {
    position: absolute;
    right: 60px;
    background: #010818;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid #d4af37;
}

.sub-floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.main-floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-floating-btn i {
    font-size: 1.8rem;
    color: #010818;
}

.main-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.main-floating-btn.active {
    background: #010818;
    border: 2px solid #d4af37;
}

.main-floating-btn.active i {
    color: #d4af37;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .main-floating-btn {
        width: 55px;
        height: 55px;
    }

    .sub-floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
/* === FOOTER ELEGANTE === */

.footer-elegant {
    position: relative;
    overflow: hidden;
}

.footer-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

/* Footer Sections */
.footer-section {
    padding: 1.5rem;
    height: 100%;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    opacity: 0.8;
}

.footer-link:hover {
    color: #d4af37;
    opacity: 1;
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-contact li i {
    font-size: 1.25rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact li strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

/* Footer Social */
.footer-social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-btn:hover {
    background: var(--gradient-gold);
    color: #010818;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
}

.footer-copyright {
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-legal-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-legal-link:hover {
    color: #d4af37;
    opacity: 1;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: #010818;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal span {
        display: none;
    }

    .scroll-top-btn {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .footer-bottom {
        text-align: center !important;
    }

    .footer-copyright,
    .footer-legal {
        justify-content: center !important;
        text-align: center !important;
    }
}
/* ========================================
   HERO SECTION AMIGABLE - ESTILOS PERSONALIZADOS
   CSS COMPLETO - Usando variables del CSS original
======================================== */

/* === HERO PRINCIPAL === */
.hero-amigable {
    min-height: 90vh;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

/* === DECORACIÓN DE FONDO === */
.hero-decoracion-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.icono-flotante {
    position: absolute;
}

.icono-1 {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.icono-2 {
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.icono-3 {
    bottom: 15%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

.icono-4 {
    top: 60%;
    right: 20%;
    animation: float 9s ease-in-out infinite;
    animation-delay: 0.5s;
}

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

/* === CONTENIDO CON Z-INDEX === */
.hero-contenido-z {
    z-index: 2;
    position: relative;
}

/* === BADGE SUPERIOR === */
.hero-badge-custom {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--radius-full);
    display: inline-block;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.hero-badge-custom:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* === TÍTULOS === */
.hero-titulo-principal {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.hero-titulo-destacado {
    display: block;
    color: var(--light-blue);
    text-shadow: 0 0 30px var(--light-blue-medium);
}

.hero-descripcion {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.6;
}

/* === LISTA DE BENEFICIOS === */
.hero-beneficios {
    margin-bottom: 2.5rem;
}

.hero-beneficio-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    animation: slideInLeft 0.5s ease-out backwards;
}

.hero-beneficio-item:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-beneficio-item:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-beneficio-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-check-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.hero-beneficio-item:hover .hero-check-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.hero-check-icon i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.hero-beneficio-item span {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

/* === BOTONES === */
.hero-botones {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.btn-hero-primario {
    background: var(--gradient-gold);
    color: var(--primary-blue);
    border: none;
    padding: var(--spacing-md) 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-cyan);
}

.btn-hero-primario:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--light-blue-medium);
    color: var(--primary-blue);
}

.btn-hero-secundario {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: var(--spacing-md) 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-hero-secundario:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* === STATS CARDS === */
.hero-stat-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    transition: var(--transition-base);
    cursor: default;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-stat-numero {
    color: var(--white);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.hero-stat-texto {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* === CONTENEDOR DE IMAGEN === */
.hero-imagen-contenedor {
    position: relative;
    padding: var(--spacing-xl);
}

.hero-circulo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--light-blue-light) 0%, transparent 70%);
    border-radius: var(--radius-full);
    filter: blur(40px);
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* === GRID DE CARDS - CORREGIDO PARA ELIMINAR BRINCOS === */
.hero-cards-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 600px;
    margin: 0 auto;
}

.hero-card-wrapper {
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.hero-card-1 {
    animation-delay: 0.2s;
    grid-column: 1;
    grid-row: 1;
}

.hero-card-2 {
    animation-delay: 0.4s;
    grid-column: 2;
    grid-row: 1;
    margin-top: var(--spacing-xl);
}

.hero-card-3 {
    animation-delay: 0.6s;
    grid-column: 1;
    grid-row: 2;
}

.hero-card-4 {
    animation-delay: 0.8s;
    grid-column: 2;
    grid-row: 2;
    margin-top: var(--spacing-xl);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* === CARDS DE SERVICIO === */
.hero-servicio-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.hero-servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero-servicio-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: var(--transition-base);
}

.hero-servicio-card:hover .hero-servicio-icon {
    transform: scale(1.1) rotate(5deg);
}

.bg-primary-light {
    background: var(--primary-blue-light);
}

.bg-warning-light {
    background: rgba(255, 193, 7, 0.1);
}

.bg-success-light {
    background: rgba(25, 135, 84, 0.1);
}

.bg-info-light {
    background: rgba(13, 202, 240, 0.1);
}

.hero-servicio-titulo {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.hero-servicio-desc {
    color: var(--light-gray);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* === BADGE FLOTANTE DE OFERTAS - 100% CORREGIDO === */
.hero-badge-oferta {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    transform: rotate(12deg);
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    white-space: nowrap;
    animation: pulse-badge 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: rotate(12deg) scale(1);
        box-shadow: var(--shadow-lg);
    }
    50% {
        transform: rotate(12deg) scale(1.08);
        box-shadow: 0 12px 35px rgba(220, 53, 69, 0.8);
    }
}

.hero-badge-oferta:hover {
    transform: rotate(12deg) scale(1.12);
    animation-play-state: paused;
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.9);
}

.hero-badge-oferta i {
    margin-right: var(--spacing-sm);
    display: inline-block;
}

/* === ONDAS DECORATIVAS === */
.hero-ondas-decorativas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-ondas-decorativas svg {
    display: block;
    width: 100%;
    height: auto;
}

/* === INDICADOR DE SCROLL === */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-indicator a {
    text-decoration: none;
    transition: var(--transition-base);
}

.hero-scroll-indicator a:hover {
    opacity: 0.8;
    transform: translateY(5px);
}

.hero-scroll-indicator small {
    color: var(--white);
    font-size: 0.875rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.hero-scroll-indicator i {
    color: var(--white);
}

/* === RESPONSIVE === */

/* Tablets y pantallas medianas (768px - 991px) */
@media (max-width: 991px) {
    .hero-amigable {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-titulo-principal {
        font-size: 2.5rem;
    }

    .hero-descripcion {
        font-size: 1.1rem;
    }

    .hero-botones {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-hero-primario,
    .btn-hero-secundario {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
    }

    .hero-circulo-glow {
        width: 300px;
        height: 300px;
    }

    .hero-cards-grid {
        max-width: 500px;
        gap: 0.75rem;
    }

    .hero-card-2,
    .hero-card-4 {
        margin-top: var(--spacing-lg);
    }

    .hero-servicio-card {
        padding: 1.25rem;
    }

    .hero-servicio-icon {
        width: 60px;
        height: 60px;
    }

    .hero-servicio-icon i {
        font-size: 1.5rem !important;
    }

    .hero-badge-oferta {
        top: 10px;
        right: 10px;
        transform: rotate(0deg);
        font-size: 0.8rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    @keyframes pulse-badge {
        0%, 100% {
            transform: rotate(0deg) scale(1);
            box-shadow: var(--shadow-lg);
        }
        50% {
            transform: rotate(0deg) scale(1.08);
            box-shadow: 0 12px 35px rgba(220, 53, 69, 0.8);
        }
    }

    .hero-stat-card {
        padding: 0.75rem;
    }

    .hero-stat-numero {
        font-size: 1.75rem;
    }
}

/* Móviles (576px - 767px) */
@media (max-width: 767px) {
    .hero-titulo-principal {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }

    .hero-descripcion {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }

    .hero-beneficios {
        margin-bottom: var(--spacing-xl);
    }

    .hero-beneficio-item span {
        font-size: 0.9rem;
    }

    .hero-check-icon {
        width: 35px;
        height: 35px;
    }

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

    .hero-cards-grid {
        gap: var(--spacing-sm);
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }

    .hero-card-2,
    .hero-card-4 {
        margin-top: var(--spacing-md);
    }

    .hero-servicio-card {
        padding: var(--spacing-md);
    }

    .hero-servicio-titulo {
        font-size: 1rem;
    }

    .hero-servicio-desc {
        font-size: 0.8rem;
    }

    .hero-imagen-contenedor {
        padding: var(--spacing-md);
    }
}

/* Móviles pequeños (hasta 575px) */
@media (max-width: 575px) {
    .hero-amigable {
        min-height: 100vh;
    }

    .hero-titulo-principal {
        font-size: 1.75rem;
    }

    .hero-badge-custom {
        font-size: 0.875rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .btn-hero-primario,
    .btn-hero-secundario {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-stat-numero {
        font-size: 1.5rem;
    }

    .hero-stat-texto {
        font-size: 0.75rem;
    }

    .icono-flotante {
        display: none;
    }

    .hero-badge-oferta {
        font-size: 0.7rem;
        padding: var(--spacing-xs) 0.8rem;
        top: 5px;
        right: 5px;
    }
    
    .hero-badge-oferta i {
        font-size: 0.7rem;
        margin-right: var(--spacing-xs);
    }

    .hero-scroll-indicator {
        bottom: var(--spacing-md);
    }

    .hero-scroll-indicator small {
        font-size: 0.75rem;
    }

    .hero-servicio-icon {
        width: 50px;
        height: 50px;
    }

    .hero-servicio-icon i {
        font-size: 1.25rem !important;
    }
}

/* Pantallas muy pequeñas (hasta 375px) */
@media (max-width: 375px) {
    .hero-titulo-principal {
        font-size: 1.5rem;
    }

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

    .hero-servicio-card {
        padding: 0.75rem;
    }

    .hero-servicio-titulo {
        font-size: 0.9rem;
    }

    .hero-servicio-desc {
        font-size: 0.75rem;
    }
}

/* === ACCESIBILIDAD === */

/* Focus visible para navegación por teclado */
.btn-hero-primario:focus,
.btn-hero-secundario:focus,
.btn-hero-primario:focus-visible,
.btn-hero-secundario:focus-visible {
    outline: 3px solid var(--light-blue);
    outline-offset: 3px;
}

/* Reducir animaciones para usuarios con preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .hero-amigable *,
    .hero-amigable *::before,
    .hero-amigable *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-card-wrapper {
        animation: none !important;
        opacity: 1 !important;
    }
    
    .hero-badge-oferta {
        animation: none !important;
    }
    
    .hero-circulo-glow {
        animation: none !important;
    }
}

/* === MODO OSCURO (opcional) === */
@media (prefers-color-scheme: dark) {
    .hero-servicio-card {
        background: rgba(255, 255, 255, 0.98);
    }
}

/* ========================================
   PÁGINA DE PRODUCTO - ESTILOS MODERNOS
   Usando variables del sistema
======================================== */

/* === GALERÍA DE PRODUCTO === */
.producto-galeria-moderna {
    position: relative;
}

.sin-imagen-container {
    background: var(--light-gray-light);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed var(--light-gray);
}

.sin-imagen-container i {
    font-size: 6rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.sin-imagen-container p {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin: 0;
}

.imagen-principal-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-blue-light);
}

.imagen-principal,
.imagen-principal-unica {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: var(--transition-base);
}

.imagen-principal:hover,
.imagen-principal-unica:hover {
    transform: scale(1.05);
}

.miniaturas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: var(--spacing-md);
}

.miniatura-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition-base);
    aspect-ratio: 1;
}

.miniatura-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.miniatura-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-blue-dark);
    opacity: 0;
    transition: var(--transition-base);
}

.miniatura-item:hover::after {
    opacity: 0.3;
}

.miniatura-item.activa {
    border-color: var(--primary-blue);
}

.miniatura-item.activa::after {
    opacity: 0;
}

/* === CARD DE INFORMACIÓN === */
.producto-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-blue-light);
}

/* === PRECIO === */
.precio-container {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--primary-blue-light);
}

.precio-etiqueta {
    display: block;
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.precio-principal {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.precio-moneda {
    font-size: 1.5rem;
    color: var(--light-gray);
    font-weight: 600;
}

/* === STOCK === */
.stock-container {
    margin-bottom: var(--spacing-xl);
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid;
}

.stock-badge.disponible {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border-color: #198754;
}

.stock-badge.agotado {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: #dc3545;
}

/* === BOTONES DE ACCIÓN === */
.acciones-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.btn-producto-primario {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-primary);
}

.btn-producto-primario:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-blue-medium);
    color: white;
}

.btn-producto-secundario {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-producto-secundario:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.btn-producto-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-producto-whatsapp:hover {
    background: #1ebe5d;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* === INFO ADICIONAL === */
.info-adicional {
    border-top: 2px solid var(--primary-blue-light);
    padding-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.info-item:hover {
    background: var(--primary-blue-light);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-cyan);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.info-texto {
    display: flex;
    flex-direction: column;
}

.info-texto strong {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.info-texto span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* === CARACTERÍSTICAS RÁPIDAS === */
.caracteristicas-rapidas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.caracteristica-tag {
    background: var(--light-blue-light);
    color: var(--primary-blue);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--light-blue);
    display: inline-flex;
    align-items: center;
}

/* === DESCRIPCIÓN === */
.seccion-titulo-moderna {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.icono-titulo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icono-titulo i {
    font-size: 2.5rem;
}

.titulo-seccion {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
}

.subtitulo-seccion {
    color: var(--light-gray);
    font-size: 1rem;
    margin: 0;
}

.descripcion-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-blue-light);
}

.descripcion-producto {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.descripcion-producto h1,
.descripcion-producto h2,
.descripcion-producto h3 {
    color: var(--primary-blue);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.descripcion-producto p {
    margin-bottom: var(--spacing-md);
}

.descripcion-producto ul,
.descripcion-producto ol {
    margin-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.descripcion-producto img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow-cyan);
}

/* === ESPECIFICACIONES === */
.especificacion-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-blue-light);
    transition: var(--transition-base);
    height: 100%;
}

.especificacion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.especificacion-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-cyan);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.especificacion-icon i {
    font-size: 1.75rem;
    color: var(--primary-blue);
}

.especificacion-info {
    display: flex;
    flex-direction: column;
}

.especificacion-label {
    color: var(--light-gray);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
}

.especificacion-valor {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
}

/* === CTA FINAL === */
.cta-producto-final {
    padding: var(--spacing-2xl);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .producto-info-card {
        margin-top: var(--spacing-xl);
    }

    .precio-principal {
        font-size: 2.5rem;
    }

    .seccion-titulo-moderna {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .precio-principal {
        font-size: 2rem;
    }

    .acciones-container {
        gap: var(--spacing-sm);
    }

    .btn-producto-primario,
    .btn-producto-secundario {
        font-size: 1rem;
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .miniaturas-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-sm);
    }

    .icono-titulo {
        width: 60px;
        height: 60px;
    }

    .titulo-seccion {
        font-size: 1.5rem;
    }
}
/* ========================================
   NAVBAR MODERNO Y ELEGANTE
======================================== */

.navbar-moderno {
    background: var(--gradient-primary);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-moderno.scrolled {
    padding: 0;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.45rem 0;
    position: relative;
}

/* Logo */
.navbar-logo-link {
    z-index: 1001;
}

.navbar-logo {
    height: 38px;
    width: auto;
    transition: var(--transition-base);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Menu Desktop */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1px;
}

.nav-item-moderno {
    position: relative;
}

.nav-link-moderno {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.4px;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-base);
    position: relative;
}

.nav-link-moderno::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-cyan);
    transition: width 0.3s ease;
}

.nav-link-moderno:hover::before,
.nav-link-moderno.active::before {
    width: 70%;
}

.nav-link-moderno:hover {
    color: var(--light-blue) !important;
}

.dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item-moderno:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Mega Dropdown - Full width */
.mega-dropdown {
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid var(--light-blue);
    z-index: 999;
}

.nav-item-moderno:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
}

.mega-dropdown-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}

.mega-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dark-gray);
    text-decoration: none;
    padding: 0.5rem 0.3rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.25;
    word-break: break-word;
    border: 1px solid rgba(42, 85, 162, 0.12);
    background: rgba(42, 85, 162, 0.04);
}

.mega-dropdown-link:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(42, 85, 162, 0.25);
}

.mega-dropdown-link i {
    display: none;
}

.mega-dropdown-sep {
    display: none;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .mega-dropdown-content {
        max-width: 960px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .mega-dropdown-content {
        max-width: 720px;
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Botón CTA */
.btn-navbar-cta {
    background: var(--gradient-cyan);
    color: var(--primary-blue);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(80, 190, 233, 0.4);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-navbar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(80, 190, 233, 0.6);
    color: var(--primary-blue);
}

/* Mobile Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 2px solid var(--light-blue);
    padding: 8px 10px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 1001;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-base);
    border-radius: 3px;
}

.navbar-toggle:hover {
    border-color: var(--light-blue);
}

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

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

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

/* ========================================
   BOTONES FLOTANTES
======================================== */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-menu {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
}

.sub-floating-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    transform: scale(0);
}

.floating-menu.active .sub-floating-btn {
    transform: scale(1);
}

.sub-floating-btn:nth-child(1) {
    background: linear-gradient(135deg, #4267B2 0%, #365899 100%);
    transition-delay: 0.1s;
}

.sub-floating-btn:nth-child(2) {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
    transition-delay: 0.15s;
}

.sub-floating-btn.phone {
    background: linear-gradient(135deg, #2a55a2 0%, #1a3d7a 100%);
    transition-delay: 0.2s;
}

.sub-floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    transition-delay: 0.25s;
}

.sub-floating-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.sub-floating-btn .tooltip {
    position: absolute;
    right: 65px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--light-blue);
    box-shadow: var(--shadow-md);
}

.sub-floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 60px;
}

.main-floating-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-cyan);
    border: none;
    box-shadow: 0 6px 25px rgba(80, 190, 233, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-floating-btn i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: var(--transition-base);
}

.main-floating-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(80, 190, 233, 0.7);
}

.main-floating-btn.active {
    background: var(--primary-blue);
    border: 3px solid var(--light-blue);
    transform: rotate(45deg);
}

.main-floating-btn.active i {
    color: var(--light-blue);
}

/* ========================================
   RESPONSIVE NAVBAR
======================================== */

@media (max-width: 991px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--gradient-primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        overflow-y: auto;
        transition: right 0.4s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    }

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

    .navbar-nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item-moderno {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link-moderno {
        width: 100%;
        padding: 1rem 0;
        justify-content: space-between;
    }

    .nav-link-moderno::before {
        display: none;
    }

    /* Mega Dropdown Mobile */
    .mega-dropdown {
        position: static;
        transform: none;
        min-width: 100%;
        max-width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0;
        border: none;
        margin-top: 0;
        transition: max-height 0.4s ease;
    }

    .nav-item-moderno.active .mega-dropdown {
        max-height: 800px;
        margin-top: 0.5rem;
    }

    .mega-dropdown-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.35rem;
        padding: 0.75rem;
    }

    .mega-dropdown-link {
        color: rgba(255, 255, 255, 0.85);
        padding: 0.4rem 0.25rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.06);
        border-radius: 8px;
        font-size: 0.78rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .mega-dropdown-link:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        border-color: var(--light-blue);
        transform: none;
        box-shadow: none;
    }

    .mega-dropdown-sep {
        display: none;
    }

    .btn-navbar-cta {
        width: 100%;
        margin-top: 1.5rem;
        justify-content: center;
    }

    /* Prevenir scroll cuando el menú está abierto */
    body.menu-open {
        overflow: hidden;
    }

    /* Dropdown icon mobile */
    .nav-item-moderno.active .dropdown-icon {
        transform: rotate(180deg);
    }
}

@media (max-width: 767px) {
    .navbar-logo {
        height: 34px;
    }

    .navbar-menu {
        max-width: 100%;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .main-floating-btn {
        width: 55px;
        height: 55px;
    }

    .sub-floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .navbar-logo {
        height: 30px;
    }

    .nav-link-moderno {
        font-size: 0.82rem;
        padding: 0.8rem 0;
    }

    .mega-dropdown-content {
        grid-template-columns: repeat(2, 1fr);
    }
}