
.nosotros__hero {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: calc(50vh - 50px);
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.nosotros__hero > img {
    width: 300px;
}
.nosotros__hero h2 {
    margin: 20px 0;
    width: min-content;
    font-family: var(--font-title);
    font-weight: bold;
    font-size: 2.5rem;
}

.nosotros__info {
    width: 100%;
}

.wrapper {
    width: 80%;
    margin: 0 auto;
}

.info__p:nth-of-type(2n-1) {
    background-color: var(--primary-color);
}
.info__p:nth-of-type(2n) {
    background-color: var(--secondary-color);
}
.nosotros__info p {
    padding: 50px 0;
    font-size: 1.2rem;
    line-height: 1.5rem;
    color: white;
}



.nosotros__mision, .nosotros__vision {
    display: flex;
    width: 100%;
}

.mision__text, .vision__text {
    width: 100%;
    height: 100%;
    align-self: center;
    padding: 15% 10%;
}

.mision__text {
    background-color: var(--primary-color);
    color: white;
}
.vision__text {
    background-color: var(--secondary-color);
    color: white;
}

.mision__text > h3, .vision__text > h3 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.mision__text > p, .vision__text > p {
    font-size: 1.5rem;
}

.mision__img, .vision__img {
    width: 50%;
    height: 100%;
}
.mision__img > img, .vision__img > img {
    width: 100%;
    height: 100%;
}


.nosotros__valores {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(100vh - 150px);
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
}
.nosotros__valores > h3 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 25px;
}

.valores--bloques {
    display: grid;
    width: 90%;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 50px;
}
.valores--bloques div {
    display: flex;
    flex-direction: column;
    min-width: 200px;
    min-height: 300px;
    padding: 5px;
    border: 2px solid black;
    border-radius: 15px;
    background-color: var(--secondary-color);
}
.valores--bloques .badge {
    width: 100px;
    align-self: center;
}
.valores--bloques h4 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 10px;
}
.valores--bloques p {
    text-align: center;
    margin-bottom: 20px;
}

@media (min-width: 800px) {
    .nosotros__hero > img {
        width: 400px;
    }
    .nosotros__hero h2 {
        width: max-content;
        font-size: 4rem;
    }
    .valores--bloques {
        grid-template-columns: repeat(3, 1fr);
    }
}