.nosotros-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      max-width: 1200px;
      margin: auto;
    }

    .nosotros-text {
      flex: 1 1 50%;
      color: #374151;
    }

    .nosotros-text h2 {
      color: #000000ff;
      font-size: 2.25rem;
      margin-bottom: 1.2rem;
      font-weight: 700;
    }

    .nosotros-text p {
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .lema-nosotros {
      font-weight: 600;
      color: #7f1d1d;
      font-size: 1.1rem;
      margin-top: 1rem;
    }

    .gracias-nosotros {
      font-style: italic;
      color: #6b7280;
    }

    .nosotros-image {
      flex: 1 1 40%;
      text-align: center;
    }

    .nosotros-image img {
      max-width: 100%;
      height: auto;
      border-radius: 0.75rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      cursor: zoom-in;
      transition: transform 0.3s;
    }

    .nosotros-image img:hover {
      transform: scale(1.03);
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .lightbox img.imagen-ampliada {
      max-width: 90%;
      max-height: 90%;
      border-radius: 12px;
      box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    }

    .cerrar-lightbox {
      position: absolute;
      top: 20px;
      right: 40px;
      color: #fff;
      font-size: 2.5rem;
      font-weight: bold;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .nosotros-content {
        flex-direction: column;
        text-align: center;
      }

      .nosotros-text,
      .nosotros-image {
        flex: 1 1 100%;
      }
    }