/* ===================================
   SECCIÓN HERO / INICIO
   =================================== */
.hero {
    min-height: 100vh;
    display: block;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    margin-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.95) 25%,
        rgba(255, 255, 255, 0.75) 40%,
        rgba(255, 255, 255, 0.30) 50%,
        rgba(255, 255, 255, 0.00) 60%
    );
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 20px;
    max-width: none;
}

.hero-content {
    text-align: left;
    color: var(--azul-corporativo);
    max-width: 500px;
    padding-left: 20px;
}

.hero-title {
    font-family: var(--font-titulos);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--azul-corporativo);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--gris-oscuro);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
