@import url("/css/main.css");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
/* Estilos generales */
body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

h1,
h2 {
    line-height: 1.6; /* Define el interlineado para todo el documento */
    text-align: center;
    color: #333;
}

p {
    line-height: 2; /* Define el interlineado para todo el documento */
    text-align: center;
    text-align: justify;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.section-quienes-somos {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        url(../assets/img/images-nosostros/cafe2.jpg) center bottom no-repeat;
    margin: 0 auto 40px auto;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    flex-direction: column;
    padding: 4rem 0 7rem 0;
}

.titulo_nosotros {
    color: aliceblue;
    font-size: 3em;
    margin: 8rem 0 5rem 0;
}

.descripcion {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Estilos de la sección general */
.section-mision {
    margin-top: 0rem;
    background-color: #e1d7cc;
    padding: 50px 20px;
}

.section {
    padding: 40px 0px;
}
.text {
    text-align: justify;
    margin: 20px;
    text-align: left;
}
/* Estilos para la sección de valores */
.values {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    justify-content: space-around;
}

.valores-img {
    width: 50%; /* Ajusta el ancho máximo a un 30% del contenedor */
    margin-bottom: 50px;
    padding: 50px 20px;
}
.gracias {
    background-color: #a38b6c;

    display: flex;
    justify-content: space-around;
}

.valores-content {
    border-radius: 40px;
    padding: 50px 80px;
    text-align: justify;
    max-width: 800px;
    margin: 50px;
}

.valores-content ul {
    list-style: none;
    padding: 20px;
}

.valores-content ul li {
    margin: 10px 0;
    font-size: 1.1em;
}
.valores-content p {
    margin: 0;
    padding: 0px;
}

/* Estilos responsivos */
@media (min-width: 768px) {
    .values {
        flex-direction: row;
        text-align: left;
    }

    .valores-img {
        max-width: 200%; /* Ajusta el ancho máximo a un 30% del contenedor */
    }

    .valores-content {
        width: 30%;
    }
}

@media (min-width: 768px) {
    .valores-img {
        width: 75%; /* En pantallas más grandes, la imagen ocupará el 75% del contenedor */
    }
}

@media (min-width: 1024px) {
    .valores-img {
        width: 40%; /* En pantallas aún más grandes, la imagen ocupará el 50% */
    }
}
