/* Variables de diseño VIP */
        :root {
            --gold: #FFD700;
            --gold-dark: #D4AF37;
            --gold-light: #FFEC8B;
            --purple: #800080;
            --purple-dark: #4B0082;
            --purple-light: #9370DB;
            --black: #0A0A0A;
            --black-light: #1A1A1A;
            --gray-dark: #2D2D2D;
            --gray: #4A4A4A;
            --gray-light: #6A6A6A;
            --white: #FFFFFF;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.2);
            --glow: 0 0 25px rgba(255, 215, 0, 0.6);
            --glow-purple: 0 0 25px rgba(128, 0, 128, 0.6);
        }
        
        /* Reset y estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
            min-height: 100vh;
            padding-top: 90px; /* Espacio para el header fijo */
            background-image: 
                linear-gradient(135deg, rgba(10, 10, 10, 0.97) 0%, rgba(26, 26, 26, 0.97) 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M20,20 L180,20 L180,180 L20,180 Z" fill="none" stroke="%23FFD700" stroke-width="2" stroke-opacity="0.1"/><circle cx="100" cy="100" r="40" fill="%23800080" fill-opacity="0.05"/><path d="M50,50 Q100,20 150,50" stroke="%23FFD700" stroke-width="3" stroke-opacity="0.1" fill="none"/></svg>');
            background-size: cover;
        }
        
        /* Fondo animado de partículas */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.3;
        }
        
        /* Contenedor principal */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header VIP FIJADO ARRIBA */
        header {
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
            backdrop-filter: blur(15px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 3px solid var(--gold);
            box-shadow: var(--shadow);
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }
        
        .logo-img {
            height: 60px;
            width: auto;
            border-radius: 10px;
            box-shadow: var(--shadow-light);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-main {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--gold), var(--purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        
        .logo-sub {
            font-size: 0.9rem;
            color: var(--gray-light);
            letter-spacing: 2px;
        }
        
        /* Banner principal */
        .banner {
            width: 100%;
            margin-top: 30px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 3px solid var(--gold);
        }
        
        .banner-img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Información principal */
        .info-section {
            background: linear-gradient(135deg, rgba(128, 0, 128, 0.1), rgba(255, 215, 0, 0.1));
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid rgba(255, 215, 0, 0.3);
            box-shadow: var(--shadow-light);
        }
        
        .info-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
            justify-content: center;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 25px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
            min-width: 300px;
            flex: 1;
        }
        
        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--black);
            flex-shrink: 0;
        }
        
        .info-text {
            flex-grow: 1;
        }
        
        .info-title {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .info-desc {
            color: var(--white);
            font-size: 1.3rem;
            font-weight: 700;
        }
        
        .info-highlight {
            color: var(--gold);
            font-weight: 800;
        }
        
        /* Contactos Section */
        .contacts-section {
            padding: 60px 0;
            background: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
            border-top: 2px solid var(--gray-dark);
            border-bottom: 2px solid var(--gray-dark);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 50px;
            position: relative;
            color: var(--gold);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(to right, var(--gold), var(--purple));
            border-radius: 4px;
        }
        
        /* Contactos Grid */
        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .contact-card {
            background: linear-gradient(145deg, var(--black-light), var(--gray-dark));
            border-radius: 20px;
            padding: 30px;
            transition: var(--transition);
            border: 3px solid var(--gold);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
            border-color: var(--purple);
        }
        
        .contact-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(to right, var(--purple), var(--purple-dark));
            color: var(--white);
        }
        
        .contact-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gray), var(--gray-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--gold);
            border: 4px solid var(--gold);
            margin-bottom: 20px;
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 5px;
        }
        
        .contact-role {
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .contact-phone {
            color: var(--gold);
            font-weight: 700;
            font-size: 1.2rem;
            margin: 15px 0;
            background: rgba(255, 215, 0, 0.1);
            padding: 10px 20px;
            border-radius: 10px;
            border: 2px solid rgba(255, 215, 0, 0.3);
        }
        
        .contact-status {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 10px;
            background: linear-gradient(to right, #25D366, #128C7E);
            color: white;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }
        
        .contact-status.offline {
            background: linear-gradient(to right, #666666, #888888);
            box-shadow: 0 5px 15px rgba(102, 102, 102, 0.3);
        }
        
        /* Mensaje cuando no hay operadores */
        .no-operators {
            text-align: center;
            padding: 60px 20px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            border: 2px dashed var(--gold);
        }
        
        .no-operators-icon {
            font-size: 4rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .no-operators h3 {
            color: var(--gold);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .no-operators p {
            color: var(--gray-light);
            font-size: 1.2rem;
            margin-bottom: 25px;
        }
        
        /* Botones de WhatsApp */
        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 18px 30px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            margin-top: 20px;
            text-decoration: none;
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
            background: linear-gradient(135deg, #128C7E, #25D366);
        }
        
        .whatsapp-btn i {
            font-size: 1.5rem;
        }
        
        .whatsapp-btn.disabled {
            background: linear-gradient(135deg, #666666, #888888);
            cursor: not-allowed;
        }
        
        .whatsapp-btn.disabled:hover {
            transform: none;
            box-shadow: none;
        }
        
        /* Botón flotante de WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: var(--transition);
            animation: float 3s infinite;
            text-decoration: none;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(180deg, var(--black), var(--black-light));
            padding: 60px 0 30px;
            border-top: 3px solid var(--gold);
            position: relative;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gold);
        }
        
        .platforms {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .platform-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 10px;
            text-decoration: none;
            color: var(--white);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        
        .platform-link:hover {
            transform: translateX(10px);
            border-color: var(--gold);
            background: rgba(255, 215, 0, 0.2);
        }
        
        .platform-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold), var(--purple));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
        }
        
        .platform-text {
            flex-grow: 1;
        }
        
        .platform-name {
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 5px;
        }
        
        .platform-desc {
            color: var(--gray-light);
            font-size: 0.9rem;
        }
        
        .footer-about {
            color: var(--gray-light);
            line-height: 1.7;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--gray-dark);
            color: var(--gray-light);
            font-size: 0.9rem;
        }
        
        .copyright strong {
            color: var(--gold);
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: linear-gradient(145deg, var(--black-light), var(--gray-dark));
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            border: 2px solid var(--gold);
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .modal-title {
            color: var(--gold);
            font-size: 1.8rem;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .modal-message {
            color: var(--white);
            text-align: center;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        /* Loading */
        .loading {
            text-align: center;
            padding: 40px;
        }
        
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255, 215, 0, 0.3);
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .contacts-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 120px;
            }
            
            .header-container {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .logo {
                gap: 10px;
            }
            
            .logo-img {
                height: 50px;
            }
            
            .logo-main {
                font-size: 1.4rem;
            }
            
            .logo-sub {
                font-size: 0.8rem;
            }
            
            .banner {
                margin-top: 20px;
            }
            
            .info-container {
                flex-direction: column;
            }
            
            .info-item {
                width: 100%;
                min-width: unset;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding-top: 130px;
            }
            
            .logo-main {
                font-size: 1.2rem;
            }
            
            .logo-sub {
                font-size: 0.7rem;
            }
            
            .logo-img {
                height: 45px;
            }
            
            .contact-card {
                padding: 25px 20px;
            }
            
            .contacts-grid {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-btn {
                padding: 15px 20px;
                font-size: 1.1rem;
            }
        }
         /* Estilos para la sección de recomendaciones */
        .recomendaciones-section {
            padding: 60px 0;
            background: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
            border-top: 2px solid var(--gray-dark);
            border-bottom: 2px solid var(--gray-dark);
        }
        
        .recomendaciones-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .recomendaciones-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .recomendacion-card {
            background: linear-gradient(145deg, var(--black-light), var(--gray-dark));
            border-radius: 15px;
            padding: 25px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            box-shadow: var(--shadow-light);
            transition: var(--transition);
        }
        
        .recomendacion-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: var(--shadow);
        }
        
        .recomendacion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .recomendacion-cliente {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--gold);
        }
        
        .recomendacion-rating {
            color: var(--gold);
        }
        
        .recomendacion-rating i {
            margin-right: 2px;
        }
        
        .recomendacion-text {
            color: var(--white);
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .recomendacion-fecha {
            color: var(--gray-light);
            font-size: 0.9rem;
            text-align: right;
        }
        
        /* Contador de visitas en header */
        .visit-counter {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            color: var(--gold);
            border: 1px solid var(--gold);
        }
        
        .stats-info {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
            padding: 10px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            font-size: 0.9rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            color: var(--gold);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .stat-label {
            color: var(--gray-light);
            font-size: 0.8rem;
        }
        