

/* --- ESTILOS PARA ESCRITORIO (Desktop) --- */
.title.title_size_large h1,
.title_subtitle_holder_inner h1 span {
    font-size: 85px;
    line-height: 76px;
    font-weight: 800;
    letter-spacing: -3px;
    text-transform: none;
}

.title.title_size_small h1 {
    font-size: 85px; /* Aquí podrías considerar un tamaño menor si es 'small' */
}

/* --- ESTILOS PARA MÓVIL / TABLET (Media Query) --- */
@media screen and (max-width: 768px) {
    .title.title_size_large h1,
    .title_subtitle_holder_inner h1 span {
        font-size: 45px;      /* Tamaño reducido para móviles */
        line-height: 50px;    /* Ajustamos el interlineado */
        letter-spacing: -1px; /* Menos espacio negativo para mejor lectura */
    }

    .title.title_size_small h1 {
        font-size: 32px;      /* Tamaño aún más pequeño para la variante 'small' */
    }
}

.title_subtitle_holder_inner span.text_above_title {
    display: none !important;
}