/* ============================================================
   hero.css — Estilos del H1 semántico del slider principal
   ============================================================ */

.hero-h1 {
    /* Replicamos el tamaño visual del h2 original del theme */
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sub-título (equivalente al h5 original del theme) */
.hero-h1-sub {
    display: block;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* Parte de marca con acento de color */
.hero-h1-brand {
    display: block;
    font-size: 0.85em; /* Un poco más pequeño que el texto principal */
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 4px;
}

@media (max-width: 767px) {
    .hero-h1 {
        font-size: 26px;
    }
    .hero-h1-sub {
        font-size: 12px;
    }
}
