        :root { 
            /* COLOR DE IDENTIDAD GAY: MORADO NEÓN */
            --neon-color: #bc13fe; 
            --neon-glow: rgba(188, 19, 254, 0.4);
            --bg: #0a0a0a; 
            --glass: rgba(255, 255, 255, 0.05);
        }
        
        * { box-sizing: border-box; scrollbar-width: thin; scrollbar-color: var(--neon-color) var(--bg); }
        
        /* SCROLLBAR PERSONALIZADO MORADO NEÓN */
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: var(--bg); border-left: 1px solid #222; }
        ::-webkit-scrollbar-thumb { background: var(--neon-color); border-radius: 5px; }
        ::-webkit-scrollbar-thumb:hover { background: #fff; }

        /* FIX TRADUCTOR */
        body { 
            margin: 0; padding: 0; background-color: var(--bg); color: white; 
            font-family: 'Segoe UI', sans-serif; display: flex; flex-direction: column; 
            align-items: center; min-height: 100vh; overflow-x: hidden;
            background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
            top: 0 !important; position: static !important;
        }

        body::before { 
            content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
            background-image: url('../udl-home.png'); 
            background-size: 200px; background-repeat: repeat; 
            opacity: 0.03; pointer-events: none; z-index: -1; 
        }

        header {
            width: 100%; padding: 20px 50px; background: rgba(0,0,0,0.95);
            border-bottom: 2px solid var(--neon-color); display: grid; 
            grid-template-columns: 1fr auto 1fr; align-items: center; 
            backdrop-filter: blur(15px); position: sticky; top: 0; z-index: 1000;
            box-shadow: 0 0 20px rgba(0,0,0,0.8);
        }

.translate-area {
    z-index: 5 !important;
}

        .logo { font-family: 'Orbitron'; font-size: 20px; text-decoration: none; color: white; letter-spacing: 2px; }
        .logo span { color: var(--neon-color); }
        .mid-link { font-family: 'Orbitron'; font-size: 20px; color: var(--neon-color); text-shadow: 0 0 10px var(--neon-glow); text-decoration: none; transition: 0.3s; font-weight: bold; }
        .mid-link:hover { text-shadow: 0 0 20px var(--neon-color); transform: scale(1.05); }

        .hero-wrap {
            width: 100%; background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../udl-home.png') center/cover fixed;
            display: flex; flex-direction: column; align-items: center; padding: 60px 20px 40px;
            border-bottom: 1px solid #222; margin-bottom: 20px;
        }
        .hero { max-width: 900px; text-align: center; margin-bottom: 40px; }
        .hero h1 { font-family: 'Orbitron'; font-size: 36px; margin-bottom: 20px; letter-spacing: 5px; text-shadow: 0 0 20px var(--neon-glow); color: #fff; }
        .hero p { color: #ccc; line-height: 1.8; font-size: 16px; margin: 0; }

        /* SHOWCASE GAY CON CARRUSEL */
        .gender-showcase {
            display: grid; grid-template-columns: 1fr 1fr; gap: 30px; 
            width: 100%; max-width: 1100px; align-items: center;
            background: rgba(0,0,0,0.5); border: 1px solid var(--neon-color);
            border-radius: 20px; padding: 30px; box-shadow: 0 0 30px var(--neon-glow);
            backdrop-filter: blur(10px);
        }
        .showcase-text h2 { font-family: 'Orbitron'; font-size: 28px; color: var(--neon-color); margin-top: 0; margin-bottom: 15px; }
        .showcase-text p { color: #aaa; font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
        
        .showcase-img { position: relative; width: 100%; height: 350px; border-radius: 15px; overflow: hidden; border: 2px solid #333; background: #111; }
        .showcase-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out, transform 5s ease-in-out; transform: scale(1); }
        .showcase-img img.active { opacity: 0.8; transform: scale(1.05); }
        .showcase-img:hover img.active { opacity: 1; }

        .translate-area { margin: 20px 0 40px 0; z-index: 500; position: relative; width: 100%; display: flex; justify-content: center; }
        .custom-select-container { min-width: 250px; background: rgba(0,0,0,0.8); border: 1px solid var(--neon-color); border-radius: 30px; cursor: pointer; padding: 12px 20px; text-align: center; font-size: 13px; font-weight: bold; color: #fff; font-family: 'Orbitron'; transition: 0.3s; box-shadow: 0 0 10px var(--neon-glow); position: relative; }
        .custom-select-container:hover { background: var(--neon-color); color: #000; }
        .custom-options { display: none; position: absolute; top: 110%; left: 50%; transform: translateX(-50%); width: 250px; background: #111; border: 1px solid var(--neon-color); border-radius: 15px; overflow-y: auto; max-height: 350px; z-index: 600; box-shadow: 0 10px 30px rgba(0,0,0,0.9); }
        .custom-options div { padding: 12px; cursor: pointer; border-bottom: 1px solid #222; text-align: center; font-size: 12px; color: #ccc; font-family: 'Segoe UI', sans-serif; font-weight: normal; }
        .custom-options div:hover { background: var(--neon-color); color: #000; font-weight: bold; }
        .goog-te-banner-frame, .goog-te-balloon-frame, .goog-te-spinner-pos, .goog-te-menu-value, .goog-te-menu-frame, .skiptranslate, #goog-gt-tt { display: none !important; visibility: hidden !important; }

        .featured-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; width: 100%; max-width: 1100px; margin-bottom: 40px; padding: 0 20px; }
        .service-card { background: var(--glass); border: 1px solid #222; padding: 30px; border-radius: 15px; text-align: center; }
        .service-card h4 { font-family: 'Orbitron'; color: var(--neon-color); margin-bottom: 15px; }
        .btn-view { display: inline-block; padding: 10px 25px; border: 1px solid var(--neon-color); color: white; text-decoration: none; font-family: 'Orbitron'; font-size: 10px; border-radius: 5px; transition: 0.3s; }
        .btn-view:hover { background: white; color: black; }

        .pricing-wrap {
            width: 100%; background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../udl-home.png') center/cover fixed;
            display: flex; flex-direction: column; align-items: center; padding: 60px 20px;
            border-top: 1px solid #222; border-bottom: 1px solid #222; margin-bottom: 40px;
        }
        .pricing-section { width: 100%; max-width: 1200px; text-align: center; }
        .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .price-card { 
            background: rgba(10, 10, 10, 0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 30px 20px; 
            text-align: center; display: flex; flex-direction: column; backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); transition: 0.3s; position: relative;
        }
        .price-card.featured { border: 1px solid var(--neon-color); box-shadow: 0 0 30px var(--neon-glow); transform: scale(1.03); background: rgba(20, 20, 20, 0.7); }
        
        /* ETIQUETAS DE DESCUENTO Y PRECIOS TACHADOS */
        .discount-badge { display: inline-block; background: var(--neon-color); color: #000; font-family: 'Orbitron'; font-size: 10px; font-weight: bold; padding: 4px 10px; border-radius: 12px; margin: 0 auto 15px; letter-spacing: 1px; }
        .cost { font-size: 32px; font-family: 'Orbitron'; display: block; margin-bottom: 25px; color: #fff; }
        .cost span.period { font-size: 14px; color: #aaa; }
        .old-price { font-size: 16px; text-decoration: line-through; color: #ff3333; margin-left: 10px; font-family: 'Segoe UI', sans-serif; font-weight: normal; }

        .price-card ul { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; font-size: 12px; flex-grow: 1; }
        .price-card ul li { margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
        .price-card ul li a { text-decoration: underline; color: inherit; cursor: pointer; transition: 0.3s; }
        .price-card ul li a:hover { color: var(--neon-color); }
        .check { color: var(--neon-color); }
        .cross { color: #ff3333; }
        
        .btn-main { display: block; padding: 15px; border: 1px solid var(--neon-color); color: white; text-decoration: none; font-family: 'Orbitron'; font-size: 11px; border-radius: 5px; font-weight: bold; transition: 0.3s; }
        .btn-main:hover { background: white; color: black; }

        .faq-section { width: 100%; max-width: 900px; padding: 20px 20px 60px; }
        .faq-item { background: rgba(255,255,255,0.02); border: 1px solid #222; border-radius: 15px; padding: 25px; margin-bottom: 15px; }

        footer { width: 100%; padding: 80px 20px 20px; background: #000; border-top: 1px solid #111; margin-top: auto; font-family: 'Orbitron', sans-serif; }
        .footer-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
        .footer-col h5 { color: #fff; margin-bottom: 25px; font-size: 12px; letter-spacing: 1px; }
        .footer-col ul { list-style: none; padding: 0; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #555; text-decoration: none; font-size: 11px; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--neon-color); }
        .bottom-bar { width: 100%; height: 4px; background: var(--neon-color); box-shadow: 0 0 15px var(--neon-glow); margin: 40px 0 20px; }
        .leader-text { text-align: center; color: #444; font-size: 11px; letter-spacing: 2px; }

        @media (max-width: 850px) { .pricing-grid, .footer-container, .featured-services, .gender-showcase { grid-template-columns: 1fr; } header { grid-template-columns: 1fr; gap: 15px; } }
