/* 
      ============================================= BANNER DE CONTACTOS =============================================
*/
.banner__nosotros__section__img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
}

/* 
      ============================================= MISION Y VISION =============================================
*/
.mision__vision__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.mision__vision__item {
    border: 1px solid var(--gray-color-200);
    padding: 1rem;
    border-radius: 8px;
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.125rem;
}

.mision__vision__item svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color-500);
}

.mision__vision__title {
    text-align: center;
    color: var(--primary-color-500);
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
}

.mision__vision__text {
    text-align: justify;
    color: var(--gray-color-500);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0.125rem 0 0 0;
}

/* 
      ============================================= Nuestra Historia de Sabor y Tradición =============================================
*/
.history__section {
    background-color: var(--primary-color-50);
}

.history__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.history__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.history__text h3 {
    color: var(--primary-color-500);
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
}

.history__text p {
    text-align: justify;
    color: var(--gray-color-500);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0.5rem 0 0 0;
}

.history__image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.5rem;
    border-radius: 16% 84% 25% 75% / 48% 54% 46% 52%;
    justify-self: center;
    align-self: center;
}


/* 
      ============================================= SM =============================================
*/
@media (min-width: 640px) {

    /* 
      ============================================= BANNER DE CONTACTOS =============================================
*/
    .banner__nosotros__section__img {
        height: 220px;
    }


    /* 
      ============================================= MISION Y VISION =============================================
*/
    .mision__vision__content {
        grid-template-columns: 1fr 1fr;
    }

    /* 
      ============================================= Nuestra Historia de Sabor y Tradición =============================================
*/
    .history__content> :nth-child(even) .history__image {
        order: -1;
        /* Cambia el orden para que la imagen aparezca antes del texto */

    }

    .history__item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

/* 
      ============================================= MD =============================================
*/
@media (min-width: 768px) {

    /* 
      ============================================= BANNER DE CONTACTOS =============================================
*/
    .banner__nosotros__section__img {
        height: 270px;
    }

    
}


/* 
      ============================================= LG =============================================
*/
@media (min-width: 1024px) {
    /* 
      ============================================= BANNER DE CONTACTOS =============================================
*/

    .banner__nosotros__section__img {
        height: 360px;
    }

    .history__item {
        gap: 2rem;
    }
}


/* 
      ============================================= XL =============================================
*/
@media (min-width: 1280px) {

    /* 
      ============================================= BANNER DE CONTACTOS =============================================
*/
    .banner__nosotros__section__img {
        height: 450px;
    }
}