.contenidoNosotros {
  background-color: hsl(211, 61%, 86%, 0.8);
    color: #333;
    width: 100%;
    align-items: center;
    flex-direction: column;
    display: flex;
    bottom: 0;
    padding-top: 150px;
    padding-bottom: 20px;
}

.contenidoNosotros h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 5vw, 45px);
  color: #e24a4a;
  text-align: center;
  display: inline-block;
  text-shadow: -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000,
    1px 1px 1px #000, 2px 2px 4px #000;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
}

.seccionGeneral{
  width: 75%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 8px;
  border: #3484e0 2px solid;
  margin-bottom: 60px;
}

.seccionGeneral_h{
  width: 90%;
  padding: 20px 20px;
  display: inline-flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  margin-bottom: 30px;
  border: #3484e0 2px solid;
}

.seccionGeneral2{
  width: 80%;
  margin-top: 15px;
  margin-bottom: 20px;
  display: none;
}

.seccionGeneral2 img {
  flex: 1;
  width: 100%;
  /*max-width: 400px;*/
  border-radius: 8px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  border: 2px solid #0480d3f2;
}


.seccionGeneral_h img {
  flex: 1;
  width: 45%;
  /*max-width: 400px;*/
  margin-right: 10px;
  border-radius: 8px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  /*border: 2px solid #3484e0;*/
  margin-left: 10px;
}

.seccionGeneral_h p{
  flex: 1;
  margin-top: 15px;
  width: 55%;
  font-size: clamp(15px, 2.8vw, 28px);
  color: #2071a7f2;
  display: inline;
  text-align: left;
  /*text-shadow: -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000,
    1px 1px 1px #000;*/
  margin-bottom: 20px;
  margin-top: 0px;
  padding: 0px 20px;
  font-family: sans-serif;
}


.seccionGeneral p{
  flex: 1;
  margin-top: 15px;
  width: 100%;
  font-size: clamp(15px, 2.8vw, 28px);
  color: #2071a7f2;
  display: inline;
  text-align: left;
  margin-top: 0px;
  font-family: sans-serif;
}

.seccionGeneral img{
  margin-top: 30px;
  max-height: 400px;
}

.fotos {
  display: flex;
  width: 50%;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  border: 2px solid #0480d3f2;
}

/* Carousel */
.carousel {
  position: relative;
  width: 75%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  margin: auto;
  margin-bottom: 70px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  border: 2px solid #3484e0;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.carousel-images img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  cursor: pointer;
  z-index: 1;
}

.carousel-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
  /*opacity: 0;
  transition: opacity 0.3s ease;*/
  pointer-events: none;
  z-index: 2;
}

.carousel:hover .carousel-buttons {
  opacity: 1;
}

.carousel-buttons button {
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.3em 0.6em;
  cursor: pointer;
  border-radius: 5px;
  z-index: 3;
}

.carousel-buttons button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Modal para imagen ampliada */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

@media (max-width: 700px) {
  .contenidoNosotros{
      padding-top: 110px;
  }
}

@media (max-width: 900px) {

  .seccionGeneral{
    margin-bottom: 0px;
    padding: 15px 15px;
    width: 80%;
  }

  .seccionGeneral_h{
    margin-bottom: 0px;
    padding: 15px 15px;
    width: 80%;
  }

  .seccionGeneral_h p{
    margin-bottom: 0px;
    padding: 0px;
  }

  .seccionGeneral_h img{
    display: none;
  }

  .seccionGeneral2{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }

  .carousel {
    width: 80%;
  }

  .fotos{
    display: none;
  }

  .divider-gradient{
    margin: 20px 0px;   
  }
}