.nosotros-page {
  background: #f4f5f7;
  padding-top: 86px;
}

.nosotros-hero {
  background: linear-gradient(90deg, rgba(17,23,34,0.96), rgba(17,23,34,0.86)), url("../img/nosotros-industrial.jpeg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 90px 0;
}

.nosotros-hero span {
  color: #f37000;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-left: 4px solid #f37000;
  padding-left: 12px;
}

.nosotros-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  line-height: 1.12;
  max-width: 780px;
  text-transform: uppercase;
  margin: 24px 0 18px;
}

.nosotros-hero p {
  font-size: 19px;
  color: #e1e1e1;
  max-width: 680px;
  line-height: 1.6;
}

.nosotros-bloque {
  padding: 90px 0;
  background: #ffffff;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.nosotros-texto h2 {
  font-family: "Montserrat", sans-serif;
  color: #151c2c;
  font-size: 40px;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 18px 0 24px;
}

.nosotros-texto p {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.nosotros-btn {
  display: inline-block;
  margin-top: 16px;
  background: #f37000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.3s;
}

.nosotros-btn:hover {
  background: #151c2c;
  transform: translateY(-3px);
}

.nosotros-imagen {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(0,0,0,0.18);
  border-bottom: 7px solid #f37000;
}

.nosotros-imagen img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.nosotros-valores {
  padding: 80px 0;
  background: #111722;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.valor-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 26px;
  box-shadow: 0 15px 32px rgba(0,0,0,0.18);
  transition: 0.35s;
  border-top: 5px solid #f37000;
}

.valor-card:hover {
  transform: translateY(-8px);
}

.valor-card span {
  color: #f37000;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 800;
}

.valor-card h3 {
  font-family: "Montserrat", sans-serif;
  color: #151c2c;
  font-size: 20px;
  text-transform: uppercase;
  margin: 14px 0 10px;
}

.valor-card p {
  color: #555555;
  line-height: 1.6;
}

.activo-menu {
  color: #f37000 !important;
}

@media (max-width: 1000px) {
  .nosotros-grid {
    grid-template-columns: 1fr;
  }

  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nosotros-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .valores-grid {
    grid-template-columns: 1fr;
  }

  .nosotros-imagen img {
    height: 360px;
  }
}