/* ========================================
   EFECTO NEÓN PARA TÍTULO - SIN CONFLICTOS
   ======================================== */

/* Título base blanco limpio con neón que sobresale */
#inicio .hero-content .container .hero-title {
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 4rem !important;
    margin-bottom: var(--spacing-md, 2rem) !important;
    line-height: 1.2 !important;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(21, 190, 170, 0.7),
        0 0 40px rgba(21, 190, 170, 0.4),
        0 0 60px rgba(21, 190, 170, 0.2) !important;
    animation: fadeInUp 1s ease, pulseGlow 3s ease-in-out infinite !important;
    background: none !important;
    -webkit-text-fill-color: inherit !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

/* Animación del pulso neón sutil */
@keyframes pulseGlow {
    0%, 100% { 
        text-shadow: 
            3px 3px 6px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(21, 190, 170, 0.7),
            0 0 40px rgba(21, 190, 170, 0.4),
            0 0 60px rgba(21, 190, 170, 0.2);
    }
    50% { 
        text-shadow: 
            3px 3px 6px rgba(0, 0, 0, 0.8),
            0 0 25px rgba(21, 190, 170, 0.8),
            0 0 50px rgba(21, 190, 170, 0.5),
            0 0 75px rgba(21, 190, 170, 0.3);
    }
}

/* BlueMagicCat destacado con neón más visible */
#inicio .hero-content .container .hero-title .brand-word {
    color: #15BEAA !important;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(21, 190, 170, 0.9),
        0 0 50px rgba(21, 190, 170, 0.6),
        0 0 75px rgba(21, 190, 170, 0.3) !important;
    background: none !important;
    -webkit-text-fill-color: inherit !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

/* Subtítulo más legible */
#inicio .hero-content .container .hero-subtitle {
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.7) !important;
}

/* OPCIÓN D: Features arriba, sin tapar los barcos */
#inicio .hero-content .hero-features {
    position: absolute !important;
    top: 80px !important;
    right: 40px !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

#inicio .hero-content .hero-features .feature {
    margin: 0 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    text-align: right !important;
}

#inicio .hero-content .hero-features .feature i {
    color: #15BEAA !important;
    font-size: 0.9rem !important;
    margin-right: 0.4rem !important;
    filter: drop-shadow(0 0 6px rgba(21, 190, 170, 0.8));
}

#inicio .hero-content .hero-features .feature span {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 8px rgba(0, 0, 0, 0.7) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Botones más equilibrados */
#inicio .hero-content .btn-primary {
    background: rgba(21, 190, 170, 0.9) !important;
    border: 1px solid #15BEAA !important;
    color: #074257 !important;
    font-weight: 600 !important;
    padding: 0.8rem 2rem !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(21, 190, 170, 0.3) !important;
}

#inicio .hero-content .btn-secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 0.8rem 2rem !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Asegurar que no haya efectos shimmer interfiriendo */
#inicio .hero-content .container .hero-title *,
#inicio .hero-content .container .hero-title .text-gradient,
#inicio .hero-content .container .hero-title .brand-word {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: inherit !important;
}