:root {
    --oro-solido: #9B7824;
    --oro-foil: linear-gradient(120deg, #8B6508 0%, #D4AF37 35%, #FFF3B0 50%, #D4AF37 65%, #8B6508 100%);
    --gris-texto: #222222;
    --blanco-cristal: rgba(255, 255, 255, 0.7); 
    --cristal-ahumado: rgba(10, 10, 10, 0.88);
    --neon-rosa: #FF00FF;
    --neon-cyan: #00FFFF;
    --neon-azul: #0000FF;
}

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

@keyframes backgroundDriftPan {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-3%, -3%); }
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gris-texto);
    font-weight: 300;
    transition: all 1s ease;
    position: relative;
    z-index: 0; 
    min-height: 100vh;
    padding: 40px 20px;
    overflow-x: hidden;
    background-color: transparent !important; 
}

body::after {
    content: "";
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: -2; 
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('https://i.postimg.cc/fWrmJHVM/marble-white-powerpoint-background-52b22a21a4-960-540.jpg');
    background-size: cover;
    background-position: center;
    animation: backgroundDriftPan 150s linear infinite alternate;
    will-change: transform; 
}

body::before {
    content: "";
    position: fixed;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid var(--oro-solido);
    pointer-events: none;
    z-index: 9999;
    transition: all 1s ease;
}

.oro-texto, .text-shine {
    background-image: var(--oro-foil);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 700;
    animation: brillarOroBarrido 4s linear infinite;
}

@keyframes brillarOroBarrido { to { background-position: 200% center; } }

h1, h2, h3, .viewer-title { font-family: 'Cinzel', serif; font-weight: 700; }

header { text-align: center; margin-bottom: 40px; position: relative; z-index: 100; perspective: 1000px; }

.logo-img {
    width: 150px;
    height: auto;
    margin: 0 auto 5px auto;
    display: block;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.2));
    animation: rotarLogo3D 8s ease-in-out infinite;
}

@keyframes rotarLogo3D {
    0% { transform: rotateY(0deg); }
    25% { transform: rotateY(35deg); }
    50% { transform: rotateY(0deg); }
    75% { transform: rotateY(-35deg); }
    100% { transform: rotateY(0deg); }
}

.logo-container h1 { font-size: 3.8rem; letter-spacing: 6px; text-transform: uppercase; margin-bottom: 5px; transition: all 0.8s ease; }
.studio-subtitle { font-size: 0.95rem; letter-spacing: 8px; text-transform: uppercase; color: #333; font-weight: 700; transition: all 0.8s ease; }

.main-container {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 50px;
    background: var(--blanco-cristal); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(155, 120, 36, 0.4);
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    transition: all 0.8s ease;
    position: relative;
    z-index: 10;
}

.tania-profile-img {
    display: block;
    margin: 0 auto 30px auto;
    width: 225px; 
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.15));
    animation: fadeInProfile 1.5s ease-in-out;
}

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

.tab-menu { display: flex; flex-direction: column; align-items: center; gap: 15px; margin-bottom: 30px; }

.tab-btn { 
    background: rgba(255, 255, 255, 0.5); 
    border: 1px solid transparent; 
    font-family: 'Montserrat', sans-serif; 
    cursor: pointer; 
    padding: 15px 25px; 
    width: 100%;
    max-width: 500px;
    border-radius: 6px;
    transition: all 0.4s ease; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.tab-btn:hover { background: rgba(255, 255, 255, 0.9); border-color: var(--oro-solido); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(155, 120, 36, 0.15); }
.tab-btn.active { background: rgba(255, 255, 255, 0.95); border: 1px solid var(--oro-solido); box-shadow: 0 10px 25px rgba(155, 120, 36, 0.15); transform: translateY(0); }
.btn-title { font-size: 1.05rem; letter-spacing: 2px; text-transform: uppercase; color: #444; font-weight: 700; transition: all 0.3s ease; }
.tab-btn.active .btn-title { background-image: var(--oro-foil); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: brillarOroBarrido 4s linear infinite; }
.btn-desc { font-size: 0.8rem; color: #666; font-style: italic; font-weight: 400; text-align: center; }

.btn-volver-inicio { display: inline-block; background: transparent; border: 1px solid var(--oro-solido); color: var(--oro-solido); padding: 8px 20px; border-radius: 30px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.85rem; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 30px; transition: all 0.3s; }
.btn-volver-inicio:hover { background-image: var(--oro-foil); color: #2b1b02; border-color: transparent; }

.seccion-content { animation: fadeInOpacity 0.8s; }
@keyframes fadeInOpacity { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }

.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 40px; color: #111; }
.services-list { display: flex; flex-direction: column; gap: 20px; }
.service-row { display: flex; justify-content: space-between; align-items: center; padding: 25px 40px; border: 1px solid rgba(155, 120, 36, 0.2); background: rgba(255, 255, 255, 0.8); border-radius: 2px; transition: all 0.3s ease; cursor: pointer; }
.service-info { padding-right: 30px; }
.service-row:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(155, 120, 36, 0.15); border-color: rgba(155, 120, 36, 0.7); background: #fff; }
.service-info h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; margin-bottom: 6px; color: #000; font-weight: 700;}
.service-info p { font-size: 0.9rem; color: #444; font-style: italic; line-height: 1.5; }
.action-icon { color: var(--oro-solido); font-size: 1.2rem; transition: transform 0.3s; }
.service-row:hover .action-icon { transform: translateX(5px); }

.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.course-card { padding: 40px 30px; text-align: center; border: 1px solid rgba(155, 120, 36, 0.3); background: rgba(255, 255, 255, 0.8); border-radius: 2px; transition: all 0.4s ease; cursor: pointer; }
.course-card:hover { background: #fff; border-color: var(--oro-solido); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(155, 120, 36, 0.15); }
.course-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.course-card p { font-size: 0.9rem; margin-bottom: 25px; font-style: italic; color: #333; }
.btn-outline { display: inline-block; padding: 10px 25px; border: 1px solid var(--oro-solido); color: var(--gris-texto); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; font-weight: 600; transition: all 0.3s; background: none; cursor: pointer; }
.course-card:hover .btn-outline { background-image: var(--oro-foil); background-size: 200% auto; animation: brillarOroBarrido 4s linear infinite; color: #2b1b02; border-color: transparent; }

.social-container { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
.social-btn { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; border: 1px solid var(--oro-solido); border-radius: 50%; color: var(--oro-solido); font-size: 1.1rem; text-decoration: none; transition: all 0.4s ease; background: var(--blanco-cristal); backdrop-filter: blur(5px); position: relative; z-index: 100; }
.social-btn:hover { background-image: var(--oro-foil); background-size: 200% auto; animation: brillarOroBarrido 4s linear infinite; color: #2b1b02; border-color: transparent; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(155, 120, 36, 0.2); }

/* --- ESTILOS DEL FOOTER Y BOTÓN MAPS --- */
footer { text-align: center; padding-bottom: 30px; position: relative; z-index: 100; margin-top: 20px;}
.footer-info {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(155, 120, 36, 0.3);
    border-radius: 8px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto 20px auto;
    backdrop-filter: blur(10px);
}
.footer-info p {
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}
.footer-info p:last-child { margin-bottom: 0; }
.footer-info i { color: var(--oro-solido); width: 25px; font-size: 1rem; }
.copyright-text { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: #222; font-weight: 600; background: rgba(255,255,255,0.7); padding: 5px 15px; border-radius: 20px; display: inline-block; }

.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-image: var(--oro-foil);
    background-size: 200% auto;
    animation: brillarOroBarrido 4s linear infinite;
    color: #2b1b02;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-maps:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 101, 8, 0.3);
}

/* --- GALERÍA 3D --- */
.album-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 20px; }
.album-card { position: relative; height: 250px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 1px solid var(--oro-solido); box-shadow: 0 15px 30px rgba(0,0,0,0.2); transition: transform 0.4s; }
.album-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(155, 120, 36, 0.4); }
.album-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.album-card:hover img { transform: scale(1.1); }
.album-overlay-title { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); padding: 30px 15px 15px 15px; color: #fff; font-family: 'Cinzel', serif; font-size: 1.3rem; text-align: center; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

.viewer-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 11000; flex-direction: column; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.viewer-header { position: absolute; top: 20px; left: 20px; right: 20px; display: flex; justify-content: space-between; align-items: center; }
.btn-volver-visor { background: none; border: 1px solid var(--oro-solido); color: var(--oro-solido); padding: 8px 20px; border-radius: 30px; font-family: 'Montserrat', sans-serif; cursor: pointer; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; font-weight: 600;}
.btn-volver-visor:hover { background-image: var(--oro-foil); color: #2b1b02; border-color: transparent; }

.slider-container { position: relative; width: 100%; max-width: 800px; height: 60vh; perspective: 1500px; display: flex; align-items: center; justify-content: center; margin-top: 20px; }
.slide { position: absolute; width: auto; max-width: 90%; height: 100%; max-height: 100%; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s; opacity: 0; visibility: hidden; }
.slide.active { opacity: 1; visibility: visible; transform: rotateY(0deg) scale(1) translateX(0); z-index: 10; }
.slide.prev { opacity: 0; visibility: visible; transform: rotateY(60deg) scale(0.8) translateX(-100%); z-index: 5; }
.slide.next { opacity: 0; visibility: visible; transform: rotateY(-60deg) scale(0.8) translateX(100%); z-index: 5; }

.slide img { width: auto; height: 100%; max-height: 55vh; object-fit: contain; border-radius: 4px; box-shadow: 0 15px 40px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); 
    -webkit-box-reflect: below 5px linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(255,255,255,0.2)); 
}

.slider-controls { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); padding: 0 20px; z-index: 20; pointer-events: none; }
.ctrl-btn { background: rgba(0,0,0,0.5); color: var(--oro-solido); border: 1px solid var(--oro-solido); width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; pointer-events: auto; transition: all 0.3s; backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center;}
.ctrl-btn:hover { background: var(--oro-solido); color: #fff; }

/* --- MODALES GENERALES --- */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 10000; justify-content: center; align-items: center; padding: 20px; backdrop-filter: blur(8px); }
.modal-content { background: var(--blanco-cristal); border: 1px solid var(--oro-solido); border-radius: 4px; width: 100%; max-width: 650px; max-height: 85vh; overflow-y: auto; position: relative; padding: 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: slideUp 0.4s ease; display: flex; flex-direction: column; }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-btn { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 1.8rem; color: var(--oro-solido); cursor: pointer; transition: color 0.3s; z-index: 10; }
.close-btn:hover { color: #000; }

.modal-body h3 { font-size: 1.8rem; margin-bottom: 10px; color: #111; text-align: center; }
.modal-body .subtitle { text-align: center; font-style: italic; color: #555; margin-bottom: 25px; font-size: 0.95rem; }
.modal-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.modal-gallery img { width: 100%; height: 150px; object-fit: cover; border-radius: 4px; border: 1px solid rgba(155, 120, 36, 0.3); }

.scroll-down-hint, .main-scroll-hint {
    position: absolute;
    right: 30px;
    width: 35px; 
    height: 35px;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--oro-solido);
    border-radius: 50%;
    display: flex; 
    justify-content: center; 
    align-items: center;
    color: var(--oro-solido);
    font-size: 1rem;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.main-scroll-hint { position: fixed; bottom: 30px; z-index: 1000; }
.bounce-icon { animation: bounceArrow 1.5s infinite; }
@keyframes bounceArrow { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }

.curso-beneficios { background: rgba(155, 120, 36, 0.08); border: 1px solid rgba(155, 120, 36, 0.3); border-radius: 4px; padding: 15px; margin-bottom: 20px; }
.curso-beneficios p { font-size: 0.9rem; color: #333; margin-bottom: 5px; font-weight: 600; }
.curso-beneficios p:last-child { margin-bottom: 0; }
.curso-beneficios i { width: 20px; color: var(--oro-solido); }

.complemento-box { background: rgba(212, 175, 55, 0.1); border: 1px dashed var(--oro-solido); border-radius: 4px; padding: 15px; margin: 20px 0; text-align: center; }
.complemento-box h4 { margin: 0 0 5px 0 !important; border: none !important; padding: 0 !important; font-size: 1.1rem; }
.complemento-box p { font-size: 0.85rem; color: #444; margin-bottom: 0; }

.normas-box {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(155, 120, 36, 0.2);
    border-radius: 4px;
    padding: 15px;
    margin-top: 15px;
}
.normas-box p { font-size: 0.85rem; color: #444; margin-bottom: 8px; line-height: 1.4; }
.normas-box p:last-child { margin-bottom: 0; }
.normas-box i { color: var(--oro-solido); width: 20px; text-align: center; }

.politica-reserva { background: rgba(139, 101, 8, 0.08); border-left: 3px solid var(--oro-solido); padding: 12px; text-align: left; margin: 15px 0 25px 0; border-radius: 0 4px 4px 0; }
.politica-reserva-titulo { font-size: 0.85rem; color: var(--oro-solido); font-weight: 700; margin-bottom: 5px; }
.politica-reserva-texto { font-size: 0.75rem; color: #444; line-height: 1.4; }

.modal-body h4 { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: var(--oro-solido); margin-top: 25px; margin-bottom: 10px; border-bottom: 1px solid rgba(155, 120, 36, 0.2); padding-bottom: 5px; }
.modal-body ul { list-style: none; margin-bottom: 15px; padding-left: 10px; }
.modal-body li { font-size: 0.95rem; margin-bottom: 10px; position: relative; padding-left: 25px; line-height: 1.5; font-weight: 500; color: #333;}
.modal-body li i { position: absolute; left: 0; top: 3px; color: var(--oro-solido); font-size: 1rem; }

.modal-action-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(155, 120, 36, 0.2); gap: 20px; }
.modal-price-tag { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--oro-solido); }

.btn-agendar { 
    background-image: var(--oro-foil); 
    background-size: 200% auto; 
    animation: brillarOroBarrido 4s linear infinite; 
    color: #2b1b02; 
    text-decoration: none; 
    padding: 12px 30px; 
    border-radius: 4px; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.9rem; 
    letter-spacing: 1px; 
    transition: transform 0.3s, box-shadow 0.3s; 
    text-align: center;
    border: none;
    font-family: inherit;
    cursor: pointer;
}
.btn-agendar:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(139, 101, 8, 0.3); }

.input-lujo { width: 100%; padding: 12px 15px; margin: 10px 0; border: 1px solid var(--oro-solido); border-radius: 4px; font-family: 'Montserrat', sans-serif; font-size: 1rem; background: rgba(255, 255, 255, 0.9); color: #333; outline: none; transition: all 0.3s; }
.input-lujo:focus { box-shadow: 0 0 10px rgba(139, 101, 8, 0.3); border-color: #D4AF37; }

@media (max-width: 768px) {
    body { padding: 20px 10px; }
    body::before { top: 5px; left: 5px; right: 5px; bottom: 5px; }
    .logo-img { width: 120px; }
    .logo-container h1 { font-size: 2.2rem; letter-spacing: 3px; } .studio-subtitle { font-size: 0.75rem; letter-spacing: 4px; }
    .main-container { padding: 30px 20px; margin-bottom: 30px; }
    
    .tania-profile-img { width: 180px; margin-bottom: 20px; }

    .tab-menu { gap: 10px; margin-bottom: 25px; } 
    .tab-btn { padding: 12px 15px; }
    .btn-title { font-size: 0.95rem; }
    .btn-desc { font-size: 0.75rem; }
    
    .section-title { font-size: 1.8rem; margin-bottom: 25px; }
    .service-row { padding: 20px; flex-direction: column; align-items: flex-start; gap: 10px;}
    .service-info { padding-right: 0; width: 100%;} .service-info h3 { font-size: 1.15rem; } .service-info p { font-size: 0.85rem; line-height: 1.4; }
    .action-icon { align-self: flex-end;}
    .modal-content { padding: 30px 20px; } .modal-body h3 { font-size: 1.5rem; }
    .modal-gallery { grid-template-columns: 1fr; gap: 10px; }
    .modal-action-footer { flex-direction: column; gap: 15px; text-align: center; }
    .btn-agendar { width: 100%; text-align: center; }
    
    .viewer-header { flex-direction: column; gap: 10px; }
    .slider-container { height: 50vh; margin-top: 60px; }
    .slide img { max-height: 45vh; }
    .ctrl-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    .slider-controls { padding: 0 5px; }
    
    .scroll-down-hint, .main-scroll-hint { right: 20px; }
    .footer-info { padding: 15px; }
    
    .bio-box { padding: 20px !important; }
}

/* =========================================
   MODO NEÓN - OVERRIDES (SIEMPRE AL FINAL)
   ========================================= */
.glitter-rose-vip { background: linear-gradient(45deg, #902C4E, #B76E79, #902C4E, #9B7824, #902C4E); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0px 1px 1px rgba(0,0,0,0.1); animation: shine-glitter 3s linear infinite; font-weight: 700; }
.neon-chic { color: #006B6B; font-weight: 600; }

body.mode-neon-active { background-image: none !important; }
body.mode-neon-active::after { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://i.postimg.cc/fWrmJHVM/marble-white-powerpoint-background-52b22a21a4-960-540.jpg') !important; }
body.mode-neon-active::before { border: 2px solid transparent !important; animation: borderNeonFlow 4s linear infinite, borderGlowVIP 2s ease-in-out infinite alternate !important; }

@keyframes borderNeonFlow { 0% { border-color: var(--neon-rosa) var(--neon-azul) var(--neon-cyan) var(--neon-azul); } 25% { border-color: var(--neon-azul) var(--neon-cyan) var(--neon-azul) var(--neon-rosa); } 50% { border-color: var(--neon-cyan) var(--neon-azul) var(--neon-rosa) var(--neon-azul); } 75% { border-color: var(--neon-azul) var(--neon-rosa) var(--neon-azul) var(--neon-cyan); } 100% { border-color: var(--neon-rosa) var(--neon-azul) var(--neon-cyan) var(--neon-azul); } }
@keyframes borderGlowVIP { from { box-shadow: 0 0 10px rgba(255, 0, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.3); } to { box-shadow: 0 0 25px var(--neon-rosa), inset 0 0 15px var(--neon-cyan); } }

body.mode-neon-active .logo-img { filter: brightness(1.5) contrast(1.2) !important; }
body.mode-neon-active .logo-container h1 { background: none !important; -webkit-background-clip: unset !important; -webkit-text-fill-color: #fff !important; color: #fff !important; text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--neon-rosa), 0 0 25px var(--neon-rosa), 0 0 45px var(--neon-azul), 0 0 65px var(--neon-azul) !important; filter: none !important; }
body.mode-neon-active .studio-subtitle { color: #fff !important; text-shadow: 0 0 5px #fff, 0 0 10px var(--neon-cyan) !important; }
body.mode-neon-active .main-container { background: var(--cristal-ahumado) !important; backdrop-filter: blur(20px) !important; border-color: rgba(255,255,255,0.08) !important; color: #fff !important; animation: auraNeonTrasera 6s linear infinite alternate !important; }

@keyframes auraNeonTrasera { 0% { box-shadow: 0 0 40px rgba(255, 0, 255, 0.4), 0 0 80px rgba(255, 0, 255, 0.2); } 33% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.4), 0 0 80px rgba(0, 255, 255, 0.2); } 66% { box-shadow: 0 0 40px rgba(138, 43, 226, 0.4), 0 0 80px rgba(138, 43, 226, 0.2); } 100% { box-shadow: 0 0 40px rgba(255, 0, 255, 0.4), 0 0 80px rgba(255, 0, 255, 0.2); } }

body.mode-neon-active .tab-btn { background: rgba(0, 0, 0, 0.4) !important; border-color: transparent !important; }
body.mode-neon-active .tab-btn:hover { background: rgba(0, 0, 0, 0.7) !important; border-color: var(--neon-rosa) !important; box-shadow: 0 0 20px rgba(255,0,255,0.2) !important; }
body.mode-neon-active .tab-btn.active { background: rgba(0, 0, 0, 0.85) !important; border-color: var(--neon-rosa) !important; box-shadow: 0 0 25px rgba(255,0,255,0.2) !important; }
body.mode-neon-active .btn-title { color: #aaa !important; }
body.mode-neon-active .tab-btn.active .btn-title { -webkit-text-fill-color: #fff !important; background: none !important; text-shadow: 0 0 10px var(--neon-rosa) !important; }
body.mode-neon-active .btn-desc { color: #888 !important; }
body.mode-neon-active .btn-volver-inicio { border-color: var(--neon-cyan) !important; color: var(--neon-cyan) !important; }
body.mode-neon-active .btn-volver-inicio:hover { background: var(--neon-rosa) !important; color: #fff !important; border-color: transparent !important; box-shadow: 0 0 15px var(--neon-rosa) !important; }

body.mode-neon-active .section-title { color: #fff !important; }
body.mode-neon-active .service-row { background: rgba(255, 255, 255, 0.05) !important; border-color: rgba(255, 255, 255, 0.08) !important; }
body.mode-neon-active .service-row:hover { border-color: #ff9ee5 !important; box-shadow: 0 0 30px rgba(255, 158, 229, 0.25) !important; background: rgba(255, 255, 255, 0.1) !important; }
body.mode-neon-active .service-row h3 { color: #fff !important; } 
body.mode-neon-active .service-row p { color: #bbb !important; }
body.mode-neon-active .action-icon { color: var(--neon-cyan) !important; }

body.mode-neon-active .neon-chic { color: #fff !important; font-weight: 600 !important; text-shadow: 0 0 8px rgba(0, 255, 255, 0.8), 0 0 15px rgba(0, 255, 255, 0.4) !important; }
body.mode-neon-active .glitter-rose-vip { background: linear-gradient(45deg, #FF00FF, #F0E2E1, #FF1493, #FCF6BA, #FF00FF) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; text-shadow: 0 0 10px rgba(255,0,255,0.4) !important; }

body.mode-neon-active .course-card { background: rgba(0,0,0,0.6) !important; border-color: rgba(255,255,255,0.15) !important; color: #fff !important; }
body.mode-neon-active .course-card:hover { border-color: #00FFFF !important; box-shadow: 0 0 25px rgba(0, 255, 255, 0.3) !important; }
body.mode-neon-active .course-card h3 { color: #fff !important; } 
body.mode-neon-active .course-card p { color: #aaa !important; }
body.mode-neon-active .btn-outline { border-color: #fff !important; color: #fff !important; } 
body.mode-neon-active .course-card:hover .btn-outline { background: #fff !important; color: #000 !important; border-color: #fff !important; }

body.mode-neon-active .social-btn { background: rgba(0, 0, 0, 0.5) !important; color: #fff !important; border-color: rgba(255,255,255,0.3) !important; }
body.mode-neon-active .social-btn:hover { background: var(--neon-rosa) !important; border-color: transparent !important; color: #fff !important; box-shadow: 0 0 20px var(--neon-rosa) !important; }

body.mode-neon-active .footer-info { background: rgba(0,0,0,0.7) !important; border-color: rgba(0,255,255,0.3) !important; box-shadow: 0 0 15px rgba(0,255,255,0.1) !important; }
body.mode-neon-active .footer-info p { color: #eee !important; }
body.mode-neon-active .footer-info i { color: var(--neon-cyan) !important; text-shadow: 0 0 5px var(--neon-cyan) !important; }
body.mode-neon-active .copyright-text { color: #fff !important; background: rgba(0,0,0,0.7) !important; }
body.mode-neon-active .btn-maps { background: #fff !important; color: #000 !important; box-shadow: 0 0 10px rgba(255,255,255,0.5) !important; animation: none !important; }
body.mode-neon-active .btn-maps:hover { background: var(--neon-rosa) !important; color: #fff !important; box-shadow: 0 0 20px var(--neon-rosa) !important; }

/* NEON OVERRIDES PARA MODALES */
body.mode-neon-active .modal-content { background: var(--cristal-ahumado) !important; border-color: var(--neon-cyan) !important; box-shadow: 0 0 30px rgba(0,255,255,0.15) !important; }
body.mode-neon-active .modal-body h3 { color: #fff !important; text-shadow: 0 0 10px var(--neon-rosa) !important; }
body.mode-neon-active .modal-body .subtitle { color: #ccc !important; }
body.mode-neon-active .modal-gallery img { border-color: var(--neon-cyan) !important; }
body.mode-neon-active .scroll-down-hint, body.mode-neon-active .main-scroll-hint { background: rgba(0,0,0,0.8) !important; border-color: var(--neon-cyan) !important; color: var(--neon-cyan) !important; box-shadow: 0 0 10px var(--neon-cyan) !important; }

body.mode-neon-active .curso-beneficios { background: rgba(255, 0, 255, 0.08) !important; border-color: rgba(255, 0, 255, 0.3) !important; }
body.mode-neon-active .curso-beneficios p { color: #eee !important; }
body.mode-neon-active .curso-beneficios i { color: var(--neon-rosa) !important; text-shadow: 0 0 5px var(--neon-rosa) !important; }

body.mode-neon-active .complemento-box { background: rgba(0,255,255,0.1) !important; border-color: var(--neon-cyan) !important; }
body.mode-neon-active .complemento-box p { color: #ccc !important; }

body.mode-neon-active .normas-box { background: rgba(0,0,0,0.5) !important; border-color: rgba(0,255,255,0.2) !important; }
body.mode-neon-active .normas-box p { color: #bbb !important; }
body.mode-neon-active .normas-box i { color: var(--neon-cyan) !important; text-align: center; }

body.mode-neon-active .modal-body h4 { color: var(--neon-cyan) !important; border-color: rgba(0,255,255,0.2) !important; text-shadow: 0 0 5px rgba(0,255,255,0.5) !important; }
body.mode-neon-active .modal-body li { color: #eee !important; }
body.mode-neon-active .modal-body li i { color: var(--neon-rosa) !important; text-shadow: 0 0 5px var(--neon-rosa) !important; }

body.mode-neon-active .close-btn { color: #fff !important; } 
body.mode-neon-active .close-btn:hover { color: var(--neon-rosa) !important; }
body.mode-neon-active .modal-action-footer { border-color: rgba(255,255,255,0.1) !important; }
body.mode-neon-active .modal-price-tag { color: var(--neon-cyan) !important; text-shadow: 0 0 10px rgba(0,255,255,0.5) !important; }

body.mode-neon-active .btn-agendar { background: #fff !important; color: #000 !important; box-shadow: 0 0 15px rgba(255,255,255,0.5) !important; animation: none !important; }
body.mode-neon-active .btn-agendar:hover { background: var(--neon-rosa) !important; color: #fff !important; box-shadow: 0 0 25px var(--neon-rosa) !important; }

body.mode-neon-active #modal-nombre-whatsapp p { color: #ccc !important; }
body.mode-neon-active .input-lujo { background: rgba(0,0,0,0.5) !important; color: #fff !important; border-color: var(--neon-cyan) !important; }
body.mode-neon-active .input-lujo:focus { box-shadow: 0 0 15px var(--neon-cyan) !important; }
body.mode-neon-active .politica-reserva { background: rgba(0, 255, 255, 0.08) !important; border-left-color: var(--neon-cyan) !important; }
body.mode-neon-active .politica-reserva-titulo { color: var(--neon-cyan) !important; text-shadow: 0 0 5px rgba(0,255,255,0.5) !important; }
body.mode-neon-active .politica-reserva-texto { color: #ccc !important; }
