.container {
    position: relative;
}

h1,
h2,
h3,
h4,
blockquote,
p {
    padding: 0;
    margin: 0;
}

/* header hero */
header {
    display: flex;
    height: fit-content;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right top, rgba(27, 26, 26, 0.65), rgba(49, 49, 49, 0.65)), url("../images/reunion.jpg");
    background-size: cover;
    color: var(--blanco);
    padding-bottom: 20vh;
}

.btns{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

header h1{
    padding-top: 15vh;
    padding-bottom: 1.5rem;
    text-align: center;
}

/* Header responsivo */
@media(max-width: 900px) {

    header {
        justify-content: start;
        gap: 0.25rem;
        padding-bottom: 4rem;
    }

    header h1{
        padding-top: 2rem;
    }

    nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-items {
        flex-direction: column;
        padding: 1.25rem;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        border-radius: 20px;
    }
    
    .nav-items a:hover{
        font-weight: bold;
    }

    .logo-nav {
        font-size: 2rem;
    }

    .btns{
        flex-direction: column;
    }

}






/* Secciones de opiniones */
section{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-size: cover;
    padding: 2rem 0;
}

#opiniones-empresas {
    background-image: linear-gradient(90deg, rgba(27, 26, 26, 0.7), rgba(49, 49, 49, 0.7) 40%, rgba(238, 233, 233, 0.4)100%), url("../images/reunionempresa.jpg");
}

#opiniones-usuarios {
    background-image: linear-gradient(90deg, rgba(27, 26, 26, 0.7)100%, rgba(49, 49, 49, 0.7) 40%, rgba(238, 233, 233, 0.4)), url("../images/reunion2.jpg");
    flex-direction: row-reverse;
}

#opiniones-usuarios .presentacion{
    text-align: right;
}

.presentacion{
    width: 35vw;
    display: flex;
    flex-direction: column;
    color: var(--blanco);
    padding: 20px 80px;
    text-align: left;
}

/* responsibidad */
@media (max-width: 800px){
    section{
        flex-direction: column;
        height: fit-content;
        max-height: none;
        padding-bottom: 3rem;
        padding: 40px 20px;
        padding-bottom: 50px;
    }

    #opiniones-empresas{
        background-image: linear-gradient(180deg, rgba(27, 26, 26, 0.7), rgba(49, 49, 49, 0.7) 50%, rgba(238, 233, 233, 0.4)100%), url("../images/reunionempresa.jpg");
    }

    #opiniones-usuarios{
        flex-direction: column;
        background-image: linear-gradient(180deg, rgba(27, 26, 26, 0.7), rgba(49, 49, 49, 0.7) 50%, rgba(238, 233, 233, 0.4)100%), url("../images/reunion2.jpg");
    }

    .presentacion{
        width: 70vw;
        padding: 10px;
        padding-bottom: 20px;
    }


}

blockquote{
    padding-top: 1rem;
}

.presentacion p{
    padding-top: 0.25rem;
    font-weight: bold;
}


.prev, .next {
    position: absolute;
    color: var(--blanco);
    top: 50%;
    cursor: pointer;
    right: -20px;
}

.prev {
    left: -20px;
}

.next {
    right: -20px;
}



.testimonios {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.testimonio {
    display: flex;
    flex-direction: column;
    background-color: var(--blanco-roto);
    align-items: center;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 0 20px white;
    /* margin: 0 auto; */
}

.testimonio h3 {
    padding-top: 1rem;
}

.testimonio p {
    padding-top: 0.5rem;
    text-align: center;
}

img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}