.seccionNosotros {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(to right, #e9ebeb, #f0f3f3);
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .contenedorHistoria {
    flex: 1 1 400px;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .contenedorHistoria h1 {
    font-size: 2rem;
    color: #130f40;
    margin-bottom: 1rem;
    text-shadow: 2px 0px 0px black;
  }

  .contenedorHistoria p {
    line-height: 1.6;
    color: #30336b;
    margin-bottom: 1rem;
  }

  .cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #22a6b3;
    color: white;
    border: none;
    border-radius: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
  }

  .cta-button:hover {
    background-color: #1e90a3;
  }

  .galeriaImg {
    flex: 1 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
  }

  .imagenGaleria {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .imagenGaleria:hover {
    transform: scale(1.05);
  }