/* NOSOTROS */
.nosotros {
  display: flex;
  flex-direction: column;
  gap: 30px;

  padding: 60px 20px;
  background: #f8f8f8;
}

.nosotros-texto span {
  font-size: 14px;
  color: #888;
}

.nosotros-texto h2 {
  font-size: 32px;
  margin: 10px 0;
  color: #222;
}

.nosotros-texto p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.btn-nosotros {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;

  background: black;
  color: white;
  text-decoration: none;

  border-radius: 5px;
  transition: 0.3s;
}

.btn-nosotros:hover {
  background: #333;
   transform: scale(1.03);
}

/* IMAGEN */
.nosotros-img img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

/* DESKTOP */
@media (min-width: 768px) {
  .nosotros {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
  }

  .nosotros-texto {
    width: 50%;
  }

  .nosotros-img {
    width: 45%;
  }
}