        /* === VARIABLES DE COLOR (mantenidas aquí para estilos inline legacy) === */
        :root {
            --primary: #00E5FF;
            --secondary: #00D26A;
            --dark-blue: #001a33;
            --section-blue: #0E3563;
            --dark: #1a1a1a;
            --light: #f0f7ff;
            --white: #ffffff;
        }

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

        body.loading {
            overflow: hidden;
        }

        .w-embed {
            width: 100%;
        }

        /* === PANTALLA DE CARGA (PRELOADER) === */
        #loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            /* FONDO BLANCO SOLICITADO */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            transition: opacity 0.8s ease, visibility 0.8s;
        }

        .loader-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .loader-logo {
            width: 280px;
            /* Logo un poco más grande para destacar en blanco */
            height: auto;
            margin-bottom: 30px;
            /* Sin fondo ni sombra para un look minimalista en fondo blanco */
            animation: fadeInLogo 1.5s ease-out;
        }

        /* BARRA ELEGANTE */
        .loader-line {
            width: 200px;
            height: 2px;
            /* Barra ultra fina */
            background: #f0f0f0;
            /* Fondo gris muy sutil */
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }

        .loader-line::after {
            content: '';
            position: absolute;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--dark-blue);
            /* Color sólido corporativo elegante */
            animation: loadingLine 1.5s infinite cubic-bezier(0.65, 0, 0.35, 1);
        }

        /* TEXTO TIPO AVENIR (Montserrat) */
        .loader-text {
            color: var(--dark-blue);
            /* Texto oscuro para contraste en blanco */
            margin-top: 20px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 4px;
            /* Espaciado elegante */
            font-family: 'Montserrat', sans-serif;
            /* Alternativa a Avenir */
            font-weight: 500;
            opacity: 0.8;
        }

        #loader-wrapper.loader-hidden {
            opacity: 0;
            visibility: hidden;
        }

        @keyframes fadeInLogo {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes loadingLine {
            0% {
                left: -100%;
            }

            50% {
                left: 0;
            }

            100% {
                left: 100%;
            }
        }

        /* --- ANIMACIONES GENERALES --- */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px) translateX(-50%);
            }

            to {
                opacity: 1;
                transform: translateY(0) translateX(-50%);
            }
        }

        @keyframes fadeUpSimple {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes floatContinuous {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes fadeStep {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes blurTextReveal {
            0% {
                opacity: 0;
                filter: blur(10px);
                transform: translate3d(0, -50px, 0);
            }

            100% {
                opacity: 1;
                filter: blur(0);
                transform: translate3d(0, 0, 0);
            }
        }

        .blur-word {
            display: inline-block;
            opacity: 0;
            margin-right: 0.25em;
            will-change: transform, filter, opacity;
        }

        .blur-word.start-anim {
            animation: blurTextReveal 1s cubic-bezier(0.2, 0.65, 0.3, 0.9) forwards;
        }

        /* Estilos Base */
        .custom-web {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: var(--white);
            width: 100%;
            scroll-behavior: smooth;
        }

        .custom-web * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: color 0.3s, background-color 0.3s, transform 0.3s, box-shadow 0.3s, border-color 0.3s, opacity 0.3s, width 0.3s, padding 0.3s;
        }

        .custom-web a {
            text-decoration: none;
        }

        /* === BARRA DE NAVEGACIÓN === */
        nav.custom-nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 92%;
            max-width: 1200px;
            background: rgba(0, 26, 51, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 50px;
            padding: 8px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 15px 35px rgba(0, 26, 51, 0.2);
            z-index: 10000;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo-capsule {
            background-color: var(--white);
            border-radius: 50px;
            padding: 5px 15px;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .nav-logo-img {
            height: 40px;
            width: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        @media (max-width: 900px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 26, 51, 0.98);
                padding: 20px;
                border-radius: 0 0 25px 25px;
                margin: 8px 4% 0;
                gap: 0;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            }

            .nav-links.is-open {
                display: flex;
            }

            .nav-links>a,
            .dropdown-toggle {
                padding: 14px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .dropdown-content {
                left: 0;
                transform: none;
                margin-top: 8px;
            }

            .btn-cotizar {
                margin-left: 0;
                margin-top: 10px;
            }
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
        }

        @media (max-width: 900px) {
            .nav-toggle {
                display: block;
            }
        }

        .nav-links>a,
        .dropdown-toggle {
            color: white;
            font-weight: 600;
            font-size: 14px;
            position: relative;
            text-shadow: 0 1px 4px rgba(0, 26, 51, 0.6);
            display: flex;
            align-items: center;
            cursor: pointer;
            text-decoration: none;
            padding: 10px 0;
        }

        .nav-links>a:hover,
        .dropdown-toggle:hover {
            color: var(--primary);
        }

        .nav-links>a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary);
            transition: width 0.3s;
        }

        .nav-links>a:hover::after {
            width: 100%;
        }

        /* === ESTILOS DEL DROPDOWN === */
        .dropdown {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            min-width: 260px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            padding: 10px 0;
            z-index: 10001;
            text-align: left;
            margin-top: 12px;
        }

        .dropdown-content.show {
            display: block;
            animation: fadeInUp 0.2s ease-out forwards;
        }

        .dropdown-content::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 12px;
            height: 12px;
            background-color: #ffffff;
            border-left: 1px solid rgba(0, 0, 0, 0.08);
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            z-index: -1;
        }

        .dropdown-content a {
            color: #333 !important;
            padding: 14px 25px;
            display: block;
            font-size: 14px;
            border-bottom: 1px solid #f0f0f0;
            text-shadow: none !important;
            font-weight: 500;
            transition: all 0.2s;
            text-align: left;
            white-space: nowrap;
            text-decoration: none;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: #f5f9ff;
            color: var(--secondary) !important;
            padding-left: 30px;
        }

        /* === BOTÓN COTIZAR === */
        .btn-cotizar {
            background: var(--primary) !important;
            color: var(--dark-blue) !important;
            border: none !important;
            padding: 12px 90px !important;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
            margin-left: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        .btn-cotizar:hover {
            background: white !important;
            color: var(--primary) !important;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 229, 255, 0.5);
        }

        /* === HERO SECTION === */
        .hero {
            height: 80vh;
            width: 100%;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 20px;
            padding-top: 120px;
        }

        .hero-slides-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 26, 51, 0.75), rgba(0, 26, 51, 0.55));
            z-index: 2;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }

        .highlight-floating {
            color: var(--secondary);
            font-weight: 800;
            display: inline-block;
            animation: floatContinuous 3s ease-in-out infinite;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.3);
            color: white;
            border: none;
            font-size: 2rem;
            padding: 15px;
            cursor: pointer;
            z-index: 10;
            border-radius: 5px;
            transition: background 0.3s;
            user-select: none;
        }

        .slider-nav:hover {
            background: rgba(0, 229, 255, 0.5);
        }

        .nav-prev {
            left: 20px;
        }

        .nav-next {
            right: 20px;
        }

        .hero h1 {
            font-size: 4.5rem;
            width: 100%;
            text-align: center;
            margin: 0 0 20px 0;
            line-height: 1.1;
            color: white;
            text-shadow: 0 2px 20px rgba(0, 26, 51, 0.5);
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 700px;
            margin: 0 auto 40px auto;
            text-align: center;
            color: rgba(255, 255, 255, 0.9);
            animation: fadeUpSimple 1s ease-out 1.5s both;
        }

        .hero-btn {
            background: var(--primary);
            color: var(--dark-blue);
            padding: 22px 55px;
            font-size: 20px;
            font-weight: 800;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4);
            animation: fadeUpSimple 1s ease-out 1.7s both;
            transition: all 0.3s ease;
            margin: 0 auto;
            display: inline-block;
        }

        .hero-btn:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 229, 255, 0.6);
            background: white;
            color: var(--primary);
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .hero-btn {
                padding: 18px 40px;
                font-size: 18px;
            }
        }

        /* === SECCIONES === */
        .industries {
            padding: 100px 10%;
            text-align: center;
            position: relative;
            z-index: 10;
            background-color: var(--section-blue);
        }

        .features {
            padding: 50px 10%;
            background: white;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .features h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: var(--dark-blue);
        }

        .industries h2 {
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: white;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .feature-card,
        .ind-card {
            padding: 30px;
            border-radius: 20px;
            transition: 0.4s;
            background: white;
        }

        .ind-card {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            aspect-ratio: 1;
            min-height: 0;
        }

        .ind-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 229, 255, 0.1);
            border-color: var(--primary);
        }

        .ind-card {
            position: relative;
            overflow: hidden;
        }

        .ind-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 55%;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.4) 40%, transparent);
            z-index: 0;
            pointer-events: none;
        }

        .ind-card.food-card-bg::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://cdn.jsdelivr.net/gh/dbaires07/corruplesa@main/alimentos.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.38;
            z-index: 0;
            pointer-events: none;
        }

        .ind-card.ecommerce-card-bg::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://raw.githubusercontent.com/dbaires07/Webpcyp2026/main/ecomerce.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.35;
            z-index: 0;
            pointer-events: none;
        }

        .ind-card.industrial-card-bg::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://raw.githubusercontent.com/dbaires07/Webpcyp2026/main/industrial.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.35;
            z-index: 0;
            pointer-events: none;
        }

        .ind-card>* {
            position: relative;
            z-index: 1;
        }

        .ind-card .details-wrap {
            background: transparent;
        }

        .ind-card h3 {
            color: var(--dark-blue);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
        }

        .ind-card p {
            color: #333;
            text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--dark-blue);
        }

        .feature-card p {
            font-size: 1.1rem;
            font-weight: 500;
            color: #333;
            line-height: 1.5;
        }

        .icon-circle {
            width: 90px;
            height: 90px;
            background: #e8ffef;
            color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            margin: 0 auto 25px;
            transition: 0.6s;
        }

        .feature-card:hover .icon-circle {
            background: var(--secondary);
            color: white;
            transform: rotateY(360deg) scale(1.1);
        }

        .tag {
            background: var(--dark-blue);
            padding: 6px 12px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 20px;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
        }

        .feature-highlight {
            color: var(--secondary);
            font-weight: 900;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-top: 15px;
        }

        .benefits-list li {
            font-size: 1.05rem;
            margin-bottom: 12px;
            color: var(--dark-blue);
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .benefits-list li::before {
            content: "✓";
            color: var(--secondary);
            font-weight: 900;
            font-size: 1.3rem;
            margin-right: 12px;
        }

        .details-btn {
            margin-top: 15px;
            padding: 12px 24px;
            border: none;
            background: linear-gradient(135deg, var(--dark-blue) 0%, #002244 100%);
            color: var(--primary);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.5px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.35s ease;
            align-self: flex-start;
            box-shadow: 0 4px 15px rgba(0, 26, 51, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

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

        .details-btn:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

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

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

        /* === MODALES DINÁMICOS === */
        .modal {
            display: none;
            position: fixed;
            z-index: 20000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.show {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background-color: #fff;
            margin: 2% auto;
            padding: 0;
            border-radius: 25px;
            width: 95%;
            max-width: 900px;
            position: relative;
            animation: slideUp 0.4s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header-bar {
            background: var(--dark-blue);
            color: white;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header-bar h3 {
            margin: 0;
            font-size: 1.5rem;
            color: var(--primary);
        }

        .close-modal {
            color: white;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.2s;
        }

        .close-modal:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 0;
            position: relative;
            height: 500px;
            max-height: 70vh;
            background: #f9f9f9;
        }

        .modal-slider-container {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .modal-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            height: 100%;
        }

        .modal-slide {
            min-width: 100%;
            height: 100%;
            box-sizing: border-box;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .slide-text {
            flex: 1;
            text-align: left;
        }

        .slide-title {
            font-size: 2rem;
            color: var(--dark-blue);
            margin-bottom: 5px;
            font-weight: 800;
            line-height: 1.2;
        }

        .slide-material-tag {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 15px;
            margin-top: 5px;
        }

        .slide-desc {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .slide-custom-note {
            background: #eef2ff;
            color: var(--dark-blue);
            padding: 10px;
            border-left: 4px solid var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            border-radius: 4px;
        }

        .slide-business-list-title {
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 10px;
            display: block;
        }

        .slide-business-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            padding: 0;
            list-style: none;
        }

        .slide-business-list li {
            font-size: 0.9rem;
            color: #444;
            position: relative;
            padding-left: 15px;
        }

        .slide-business-list li::before {
            content: "•";
            color: var(--secondary);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .slide-image {
            flex: 1;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-image img {
            max-width: 100%;
            max-height: 350px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            object-fit: cover;
            cursor: zoom-in;
            transition: transform 0.3s;
        }

        .slide-image img:hover {
            transform: scale(1.02);
        }

        .modal-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: var(--dark-blue);
            transition: 0.3s;
            z-index: 10;
        }

        .modal-nav-btn:hover {
            background: var(--primary);
            color: var(--dark-blue);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-modal {
            left: 20px;
        }

        .next-modal {
            right: 20px;
        }

        @media (max-width: 768px) {
            .modal-slide {
                flex-direction: column-reverse;
                text-align: center;
                padding: 20px;
                overflow-y: auto;
            }

            .slide-text {
                text-align: left;
                width: 100%;
            }

            .slide-image img {
                max-height: 180px;
                margin-bottom: 20px;
                width: 100%;
            }

            .modal-body {
                height: 80vh;
            }

            .slide-business-list {
                grid-template-columns: 1fr;
            }
        }

        /* === LIGHTBOX (ZOOM) === */
        .lightbox-modal {
            display: none;
            position: fixed;
            z-index: 25000;
            padding-top: 50px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox-modal.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 85vh;
            border-radius: 5px;
            animation: zoomAnim 0.3s;
        }

        @keyframes zoomAnim {
            from {
                transform: scale(0.8);
                opacity: 0
            }

            to {
                transform: scale(1);
                opacity: 1
            }
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }

        .lightbox-close:hover {
            color: var(--primary);
        }

        /* === COTIZADOR INTELIGENTE (ARREGLADO) === */
        .cotizador-section {
            padding: 100px 10%;
            background: rgba(26, 130, 68, 0.7);
            text-align: center;
            color: white;
        }

        .cotizador-section h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 50px;
        }

        .quiz-container {
            background: white;
            max-width: 900px;
            margin: 40px auto 0;
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            color: var(--dark);
        }

        /* AQUÍ APLICAMOS LA ANIMACIÓN CORREGIDA "fadeStep" */
        .step {
            display: none;
            width: 100%;
            animation: fadeStep 0.5s ease-out;
        }

        .step.active {
            display: block;
        }

        .step h3 {
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 800;
            color: var(--dark-blue);
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }

        .option-btn {
            padding: 20px 15px;
            border: 2px solid #eee;
            border-radius: 15px;
            cursor: pointer;
            background: white;
            color: #555;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.02);
            transition: all 0.2s;
        }

        .option-btn strong {
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--dark-blue);
            display: block;
        }

        .option-btn span {
            font-size: 12px;
            color: #888;
            font-weight: 400;
            line-height: 1.3;
        }

        .option-btn:hover {
            border-color: var(--secondary);
            background: #f0f7ff;
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
        }

        .option-btn:hover strong {
            color: var(--secondary);
        }

        /* === FOOTER MEJORADO === */
        footer.custom-footer {
            background: linear-gradient(180deg, #001f3d 0%, var(--dark-blue) 30%, #001428 100%);
            color: white;
            padding: 0 10% 0;
            position: relative;
            z-index: 10;
            box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
        }

        footer.custom-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0.9;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            justify-content: space-between;
            align-items: start;
            padding: 40px 0 28px;
        }

        .footer-logo {
            max-width: 180px;
            height: auto;
            margin-bottom: 12px;
            background-color: var(--white);
            padding: 10px 18px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 229, 255, 0.15);
            display: inline-block;
        }

        .footer-col>p {
            font-size: 0.95rem;
            color: rgba(170, 184, 194, 0.95);
            line-height: 1.5;
            max-width: 220px;
        }

        .footer-col h4 {
            margin-bottom: 16px;
            color: var(--primary);
            letter-spacing: 1.5px;
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
            opacity: 0.95;
        }

        .footer-col a {
            color: #b8c8d4;
            display: block;
            margin-bottom: 10px;
            font-size: 14px;
            transition: color 0.25s, padding-left 0.25s;
        }

        .footer-col a:hover {
            color: var(--primary);
            padding-left: 6px;
        }

        .footer-col.social-center {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Social icons styles now in styles.css */

        .footer-cta {
            text-align: center;
            padding: 20px 10% 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-cta p {
            color: #aab8c2;
            font-size: 0.95rem;
            margin-bottom: 12px;
        }

        .footer-cta a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 210, 106, 0.2));
            color: var(--primary);
            font-weight: 700;
            font-size: 13px;
            padding: 12px 28px;
            border-radius: 50px;
            border: 1px solid rgba(0, 229, 255, 0.35);
            text-decoration: none;
            transition: background 0.3s, border-color 0.3s, transform 0.2s;
        }

        .footer-cta a:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--dark-blue);
            border-color: transparent;
            transform: translateY(-2px);
        }

        .copyright {
            text-align: center;
            color: rgba(170, 184, 194, 0.8);
            font-size: 12px;
            padding: 18px 0 22px;
            letter-spacing: 0.5px;
        }

        /* === BOTÓN FLOTANTE (OFERTAS) === */
        .floating-promo {
            position: fixed;
            bottom: 170px;
            right: 30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--dark-blue);
            padding: 12px 24px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
            z-index: 9999;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            animation: floatContinuous 3s ease-in-out infinite;
            font-size: 13px;
        }

        .floating-promo:hover {
            transform: scale(1.1) translateY(-5px) !important;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
        }

        /* WhatsApp Floating button styles now in styles.css */

        /* === SECCIÓN DE ESTADÍSTICAS === */
        .stats-section {
            padding: 80px 10%;
            background: var(--dark-blue);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .stats-section h2 {
            color: white;
            font-size: 2rem;
            margin-bottom: 60px;
            opacity: 0.9;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-suffix {
            font-size: 2.5rem;
            font-weight: 900;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.75);
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .stat-divider {
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
            margin: 12px auto 0;
        }

        /* === SCROLL REVEAL === */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal-left.revealed {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal-right.revealed {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        /* === WhatsApp Chat Widget === */
        .wa-chat-wrapper {
            position: fixed;
            bottom: 20px;
            right: 20px;
            font-family: "Inter", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            z-index: 999;
        }

        /* WhatsApp Bubble (Chat preview) */
        .wa-bubble {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 320px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            animation: slideUp 0.3s ease;
        }

        .wa-bubble.visible {
            opacity: 1;
            visibility: visible;
        }

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

        .wa-bubble-header {
            background: linear-gradient(135deg, #25D366 0%, #20BA5F 100%);
            color: white;
            padding: 16px;
            border-radius: 12px 12px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .wa-header-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .wa-header-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .wa-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }

        .wa-close:hover {
            transform: scale(1.2);
        }

        .wa-bubble-body {
            padding: 16px;
            background: white;
            border-radius: 0 0 12px 12px;
        }

        .wa-msg-container {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .wa-msg-container strong {
            color: #075E54;
            font-size: 0.95rem;
        }

        .wa-msg-container p {
            color: #555;
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }

        /* WhatsApp Main Button */
        .wa-btn {
            position: relative;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #20BA5F 100%);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            font-size: 32px;
        }

        .wa-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
        }

        .wa-btn:active {
            transform: scale(0.95);
        }

        .wa-btn svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .wa-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #FF6B6B;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* Responsive */
        @media (max-width: 480px) {
            .wa-chat-wrapper {
                bottom: 15px;
                right: 15px;
            }

            .wa-btn {
                width: 56px;
                height: 56px;
            }

            .wa-btn svg {
                width: 28px;
                height: 28px;
            }

            .wa-bubble {
                width: 280px;
                bottom: 70px;
            }
        }

        @media (max-width: 360px) {
            .wa-bubble {
                width: 260px;
                font-size: 0.9rem;
            }

            .wa-msg-container p {
                font-size: 0.85rem;
            }
        }
