/* ================================================== */
/* CORRECCIÓN DEFINITIVA PARA TYPEWRITER TEXT BLANCO */
/* ================================================== */

/* Máxima especificidad para sobrescribir cualquier estilo */
body .welcome-text .typewriter-text,
html body .welcome-text .typewriter-text,
.hero-section .welcome-text .typewriter-text,
div.welcome-text div.typewriter-text,
.typewriter-text {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: transparent !important;
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.6) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    border-right: none !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    overflow: visible !important;
    animation: none !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* Eliminar cualquier color heredado de elementos hijos */
.typewriter-text *,
.welcome-text .typewriter-text * {
    color: inherit !important;
    -webkit-text-fill-color: inherit !important;
}

/* Cursor específico */
.welcome-text .cursor,
.typewriter-text .cursor,
.cursor {
    color: #06b6d4 !important;
    -webkit-text-fill-color: #06b6d4 !important;
    animation: blink 1s infinite !important;
    font-weight: normal !important;
}

/* Animación del cursor */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
