:root {
    /* === TUS VARIABLES ORIGINALES (actualizadas con la paleta correcta) === */
    --primary-blue: #010818;           /* Tu color primario azul profundo oscuro */
    --secondary-blue: #1a2332;         /* Azul medianoche complementario */
    --dark-gray: #0d1520;              /* Gris oscuro profundo */
    --light-gray: #2a3a4a;             /* Gris azulado suave */
    --industrial-orange: #d4af37;      /* Dorado elegante (reemplaza naranja) */
    
    /* === VARIACIONES DE LOS COLORES PRINCIPALES === */
    --primary-blue-light: rgba(1, 8, 24, 0.1);
    --primary-blue-medium: rgba(1, 8, 24, 0.5);
    --primary-blue-dark: rgba(1, 8, 24, 0.9);
    
    --secondary-blue-light: rgba(26, 35, 50, 0.1);
    --secondary-blue-medium: rgba(26, 35, 50, 0.5);
    --secondary-blue-dark: rgba(26, 35, 50, 0.9);
    
    --industrial-orange-light: rgba(212, 175, 55, 0.15);
    --industrial-orange-medium: rgba(212, 175, 55, 0.5);
    --industrial-orange-dark: rgba(212, 175, 55, 0.9);
    
    /* === VARIACIONES DEL GRIS TERCIARIO === */
    --light-gray-light: rgba(42, 58, 74, 0.1);
    --light-gray-medium: rgba(42, 58, 74, 0.5);
    --light-gray-dark: rgba(42, 58, 74, 0.9);
    
    /* === GRADIENTES USANDO LA PALETA === */
    --gradient-primary: linear-gradient(135deg, #010818 0%, #0d1520 100%);
    --gradient-secondary: linear-gradient(135deg, #1a2332 0%, #2a3a4a 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #010818 100%);
    --gradient-orange: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-gold: linear-gradient(135deg, #b8860b 0%, #ffd700 50%, #daa520 100%);
    
    /* === COLORES ADICIONALES PARA ARMONÍA === */
    --white: #ffffff;
    --black: #000000;
    --bg-light: #f8f9fa;
    --gold-accent: #f4d03f;            /* Dorado brillante para acentos */
    --gold-muted: #c9a961;             /* Dorado 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(1, 8, 24, 0.6);
    --shadow-secondary: 0 4px 15px rgba(26, 35, 50, 0.5);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);
    
    /* === 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;
}

* {
    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-gold { background-color: var(--industrial-orange); }

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

.border-primary { border-color: var(--primary-blue); }
.border-secondary { border-color: var(--secondary-blue); }
.border-tertiary { border-color: var(--light-gray); }
.border-gold { border-color: var(--industrial-orange); }
/* === 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 */
.footer {
   /* background-color: var(--dark-gray);*/
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--industrial-orange-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-blue);
}

.footer-bottom {
    border-top: 1px solid var(--primary-blue);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: var(--white);
}

/* 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.4s ease;
    border-width: 2px !important;
}

.producto-card-hover:hover {
    transform: translateY(-10px);
    border-color: var(--industrial-orange) !important;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4) !important;
}

.producto-imagen-container {
    position: relative;
    height: 280px;
}

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

.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;
}

/* Cards de productos en categoría */
.producto-card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-width: 2px !important;
}

.producto-card-hover:hover {
    transform: translateY(-12px);
    border-color: var(--industrial-orange) !important;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4) !important;
}

/* Contenedor de imagen con overlay */
.producto-imagen-container {
    position: relative;
    overflow: hidden;
}

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

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

/* Overlay hover */
.producto-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 8, 24, 0.95) 0%, rgba(13, 21, 32, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.producto-overlay-hover .btn {
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.producto-card-hover:hover .producto-overlay-hover .btn {
    transform: translateY(0);
}

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

/* Lista de características */
.list-unstyled li {
    transition: transform 0.2s ease;
}

.list-unstyled li:hover {
    transform: translateX(5px);
}

/* 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(212, 175, 55, 0.3);
}

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

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

/* Animación para las características */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.producto-card-hover:hover .list-unstyled li {
    animation: slideInLeft 0.3s ease forwards;
}

.producto-card-hover:hover .list-unstyled li:nth-child(1) {
    animation-delay: 0.1s;
}

.producto-card-hover:hover .list-unstyled li:nth-child(2) {
    animation-delay: 0.2s;
}

.producto-card-hover:hover .list-unstyled li:nth-child(3) {
    animation-delay: 0.3s;
}

/* 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;
    }
}