/* Por defecto, mostrar texto desktop y ocultar móvil */
.texto-desktop {
    display: inline-block;
}

.texto-mobile {
    display: none;
}

/* En móvil, ocultar texto desktop y mostrar móvil */
@media (max-width: 767px) {
    .texto-desktop {
        display: none !important;
    }
    
    .texto-mobile {
        display: inline-block !important;
    }
}