/* Hero — gradiente azul con compensación para header superpuesto */
.hero {
    position: relative;
    padding-top: 110px;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, #1b2640 0%, #2466b6 100%);
    overflow: hidden;
}

.hero > .container {
    position: relative;
}

/* Bloque centrado con más presencia visual */
.hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

/* Claim de marca — eyebrow ligero encima del H1 */
.hero-claim {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 1.35rem;
}

/* Badge legacy — mantener alias por si se reutiliza */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.42rem 1.1rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Titular — protagonista absoluto */
.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.85rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.035em;
}

/* Destaque — azul vivo */
.hero h1 .hero-highlight {
    color: #60a5fa;
}

/* Subtítulo — acompaña sin competir */
.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.76);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.72;
}

/* Botones */
.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Mobile */
@media (max-width: 767.98px) {
    .hero {
        padding-top: 110px;
        padding-bottom: 2.75rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-claim {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        margin-bottom: 1.1rem;
    }
}
