/*======== NOSOTROS 1 ========*/
.nosotros1-slider {
  background-image: url("../img/nosotros/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
  display: flex;
  align-items: center;
}
.nosotros1-slider-div {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(3px);
  padding: 2rem 1rem;
}
.nosotros1-slider-int {
  max-width: 900px;
  text-align: center;
  color: white;
}

/*======== NOSOTROS 2 ========*/
.nosotros2 {
  margin-top: 5rem;
  padding-right: 1rem;
}
.nosotros2-div {
  display: flex;
  min-height: 450px;
}
.nosotros2-div-img {
  background-image: url("../img/nosotros/img1.png");
  border-radius: 0 1rem 1rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
}
.nosotros2-div-textos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  width: 50%;
  padding-left: 1rem !important;
  padding-right: 0rem;
  max-width: 640px;
  margin-left: unset;
}
.nosotros2-textos-titulo {
  color: #684e4f;
  font-weight: bold;
}
.nosotros2-textos-texto {
  color: black;
  font-size: 1.1rem;
  text-align: justify;
}

/*======== NOSOTROS 3 ========*/
.nosotros3 {
  margin-top: 5rem;
  background-image: linear-gradient(rgba(0,0,0, 0.6)), url('../img/nosotros/img2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 2;
}
.nosotros3-div {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
  gap: 1rem;
  padding-top: 3rem;
  padding-bottom: 8rem;
}
.nosotros3-div p {
  font-size: 1.1rem;
  text-align: justify;
}

/*======== NOSOTROS 4 ========*/
.nosotros4 {
  margin-top: -5rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 3;
}
.nosotros4-div {
  display: flex;
  gap: 3rem;
}
.nosotros4-div-int {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  box-shadow: 0 0 5px 0px black;
  border-radius: 1rem;
  transition: all 0.15s ease-in-out;
}
.nosotros4-div-int:hover {
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}
.nosotros4-int-img {
  border-radius: 1rem 1rem 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vw;
  max-height: 350px;
}
.nosotros4-int-img-1 {
  background-image: url("../img/nosotros/mision.png");
}
.nosotros4-int-img-2 {
  background-image: url("../img/nosotros/vision.png");
}
.nosotros4-int-textos {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  color: black;
}
.nosotros4-int-textos p {
  font-size: 1.1rem;
  text-align: justify;
}

/*======== RESPONSIVE ========*/
@media (max-width: 992px) {
  .nosotros1-slider {
    height: unset;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .nosotros2 {
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .nosotros2-div {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .nosotros2-div-textos {
    width: 100%;
    max-width: unset;
  }
  .nosotros2-div-img {
    border-radius: 1rem;
    width: 100%;
    height: 100vw;
    max-height: 350px;
  }
  .nosotros4-div {
    flex-direction: column;
  }
  .nosotros4-div-int {
    width: 100%;
  }
}

