/* ===================================
   BANNER PRINCIPAL - PÁGINA DE INICIO
   =================================== */

.banner-principal {
    width: 1897px;
    height: 560px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    opacity: 1;
    margin-left: auto;
    margin-right: auto;
}

/* Contenedor de la imagen */
.banner-imagen-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 1;
}

/* Contenido superpuesto sobre la imagen */
.banner-contenido {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.banner-texto {
    position: absolute;
    top: 116px;
    left: 56px;
    width: 675px;
    height: 300px;
    background: rgba(131, 132, 134, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    opacity: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Contenedor del texto completo */
.banner-texto-contenido {
    position: absolute;
    top: 76px;
    left: 32px;
    width: 612px;
    height: 150px;
    opacity: 1;
}

.banner-titulo {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

.banner-descripcion {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

/* Responsive */
@media (max-width: 1897px) {
    .banner-principal {
        width: 100%;
    }
}
