/* =========================================
           SECCIÓN HERO
           ========================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--spacing-container);
    color: var(--color-text-light);
    background-color: var(--color-bg-dark);
    /* Fallback */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
    /* Oscurecer para legibilidad */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    margin-bottom: 2rem;
    line-height: 1.05;
}

.hero-title span {
    display: block;
}

.hero-title .indent {
    margin-left: 15%;
}

.hero-info {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.hero-info-text {
    max-width: 450px;
    font-size: 1.15rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-info-text {
        font-size: 0.95rem;
    }

    .hero-title .indent {
        margin-left: 0;
    }
}
