:root {
    --amarillo: #E7FE55;
    --amarilo-claro: #E7ECCA;
    --blanco: #ffffff;
    --gris: #E7E7E7;
    --gris-2: #C0C2C3;
    --gris-3: #DCDCDC;
    --negro: #000000;
    --negro-2: #222222;
    --negro-3: #303030;
    --titulo-1: 3.2rem;
    --titulo-2: 2.4rem;
    --titulo-3: 2.0rem;
    --parrafo: 1.6rem;
    --texto-pequeño: 1.4rem;
}
h1 {
    font-size: var(--titulo-1);
    font-weight: 900;
}
h2 {
    font-size: var(--titulo-2);
    font-weight: 700;
}
h3 {
    font-size: var(--titulo-3);
    font-weight: 500;
}
p {
    font-size: var(--parrafo);
    font-weight: 300;
}
/* nosotros-hero-section */
.nosotros-hero-section {
    padding: 4rem;
    background-color: var(--gris);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 4rem;
}
.nosotros-hero-title-container {
    max-width: 40rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.nosotros-hero-images-container {
    height: 80vh;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 1rem;
}
.images-card-a {
    align-self: center;
}
.images-card-b {
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.images-card-c {
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width:700px) {
    .nosotros-hero-section {
        flex-direction: column;
        padding: 2rem;
    }
}
@media screen and (max-width:900px) {
    .images-card-a {
        display: none;
    }
}
/* historia-section */
.history-section {
    padding: 4rem;
    background-color: var(--gris);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}
.history-title-container {
    width: 50%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.history-data-container {
    width: 50%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
@media screen and (max-width:700px) {
    .history-section {
        flex-direction: column;
        padding: 2rem;
    }
    .history-title-container {
        width: 100%;
    }
    .history-data-container {
        width: 100%;
    }
}
/* valores-section */
.values-section {
    padding: 4rem;
    background-color: var(--gris);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4rem;
}
.values-title-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.values-desk-image {
    display: none;
}
.values-mobile-image {
    width: 28rem;
}
.values-title-container p {
    max-width: 40rem;
}
.values-text-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}
.values-text-container div {
    max-width: 32rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.values-text-container img {
    width: 40px;
}
@media screen and (min-width:700px) {
    .values-mobile-image {
        display: none;
    }
    .values-desk-image {
        display: flex;
        width: 60rem;
    }
}
/* clients-section */
.clients-section {
    background-color: var(--gris);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}
.clients-section h2 {
    max-width: 40rem;
}
.clients-images-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.clients-images-container img {
    width: 88px;
    aspect-ratio: 3/2;
    object-fit: contain;
}
.clients-images-container .bg-back {
    background-color: var(--negro-2);
    padding: 4px;
    border-radius: 8px;
}
@media screen and (max-width:700px) {
    .clients-section {
        padding: 2rem;
    }
}