/* HERO */

.qs-hero{
    position: relative;
    min-height: 100vh;
    background: url('../img/quienes_somos.jpg') center/cover;
    display: flex;
    align-items: center;
}

.qs-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.24);
}

.qs-contenido{
    position: relative;
    top: 10px;
    z-index: 2;
    max-width: 800px;
    color: white;
}

.qs-mini{
    color: #ffffff;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
}

.qs-contenido h1{
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.qs-contenido p{
    font-size: 18px;
    color: rgba(255,255,255,.85);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* SECCIONES */

.qs-descripcion,
.qs-vision,
.qs-features{
    padding: 120px 0;
    background: #020617;
}

.qs-img{
    width: 100%;
    display: block;
    border-radius: 24px;
    border: 3px solid red;
}

/* TITULOS */

.qs-mini-section{
    color: #56a8ff;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
}

.qs-titulo,
.qs-titulo-center{
    font-size: 52px;
    color: white;
    font-weight: 800;
    margin: 20px 0;
}

.qs-texto{
    color: #cacaca;
    line-height: 1.9;
    font-size: 18px;
}

/* LISTA */

.qs-lista{
    margin-top: 30px;
}

.qs-item{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.05);
    padding: 18px;
    border-radius: 16px;
    margin-bottom: 16px;
    color: white;
}

/* INFO */

.qs-info-box{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qs-info-item{
    background: rgba(255,255,255,.05);
    border-radius: 18px;
    padding: 24px;
    color: white;
    transition: .3s;
}

.qs-info-item:hover{
    transform: translateX(10px);
    border: 1px solid #56a8ff;
}

/* FEATURES */

.qs-feature-card{
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: .4s;
}

.qs-feature-card:hover{
    transform: translateY(-10px);
    border-color: #56a8ff;
}

.qs-feature-card h3{
    color: white;
    font-size: 30px;
    margin-bottom: 20px;
}

.qs-feature-card p{
    color: #cacaca;
    line-height: 1.8;
}

/* CTA */

.qs-cta{
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        #040b29,
        #08113a
    );
    color: white;
}

.qs-cta h2{
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
}

.qs-cta p{
    max-width: 800px;
    margin: auto;
    color: #cacaca;
    margin-bottom: 35px;
}

/* VIBRAR */

@keyframes qs-vibrar {

    0%{ transform: translateX(0); }

    25%{ transform: translateX(-4px); }

    50%{ transform: translateX(4px); }

    75%{ transform: translateX(-4px); }

    100%{ transform: translateX(0); }

}

.qs-vibrando{
    animation: qs-vibrar .4s linear;
}

/* RESPONSIVE */

@media(max-width:991px){

    .qs-contenido h1{
        font-size: 42px;
    }

    .qs-titulo,
    .qs-titulo-center,
    .qs-cta h2{
        font-size: 34px;
    }

}

/* =========================
   METRICAS
========================= */

.qs-metricas{
    position: relative;

    padding: 100px 0;

    background:
    url('../img/fondo_metrica.png');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.qs-metricas-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

.qs-metrica{
    position: relative;
    z-index: 2;
}

.qs-metrica h2{
    font-size: 90px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.qs-metrica p{
    color: rgba(255,255,255,.85);
    font-size: 22px;
    margin: 0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .qs-metrica h2{
        font-size: 58px;
    }

    .qs-metrica p{
        font-size: 18px;
    }

}