body {
  background-color: #071520;
  margin: 0;
  padding: 0;
}

/* ===== Secci¨Žn Nosotros ===== */
.nosotros-section {
  background-color: #071520;
  padding: 120px 20px 60px;
  color: #fff;
  margin-top: 120px;
}

.nosotros-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Columna izquierda con logo de marca de agua */
.nosotros-text {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  overflow: hidden;

  /* estado inicial invisible para scroll */
  opacity: 0;
}

.nosotros-text::before {
  content: "";
  background: url("/images/logo.png") no-repeat center center;
  background-size: 300px;
  opacity: 0.09;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nosotros-text h2,
.nosotros-text p {
  position: relative;
  z-index: 1;
}

.nosotros-text h2 {
  color: #f9b233;
  font-size: 32px;
  margin-bottom: 20px;
}

.nosotros-text p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
}

/* Imagen derecha */
.nosotros-img {
  flex: 1;
  display: flex;
  justify-content: center;

  /* estado inicial invisible para scroll */
  opacity: 0;
}

.nosotros-img img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ===== Animaciones ===== */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Clases que se agregan al hacer scroll */
.animate-left {
  animation: slideInLeft 0.8s forwards;
}

.animate-right {
  animation: slideInRight 0.8s forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .nosotros-container {
    flex-direction: column;
    text-align: center;
  }
  .nosotros-section {
    margin-top: 5px;
    padding-top: 60px;
  }
  .nosotros-text {
    margin-bottom: 20px;
  }
}

