/* Sección principal del banner de inicio */
.banner-inicio {
    position: relative;
    width: 100%;
    height: 550px;
    background: url('../../assets/images/branding/banner-inicio.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Capa de superposición */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(10, 10, 10, 0.507),
        rgba(82, 38, 118, 0.75)
    );
}

/* Contenedor del contenido */
.banner-contenido {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

/* Título */
.banner-titulo {
    font-family: var(--font-family-title);
    font-size: 3.8rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

/* Subtítulo */
.banner-subtitulo {
    font-family: var(--font-family-general);
    font-size: 1.2rem;
    color: #B5ADAD;
    margin-bottom: 35px;
}


/* Responsive */
@media (max-width: 768px) {
    .banner-titulo {
        font-size: 2.5rem;
    }

    .banner-inicio {
        height: 400px;
    }

    .banner-subtitulo {
        font-size: 1rem;
    }
}