/* === Nosotros Page Modern Styles === */
.nosotros-main {
  position: relative;
  min-height: 60vh;
  width: 100vw;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1;
  background: none;
  margin-top: -30px;
  padding-bottom: 20px;
}
.nosotros-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.7) grayscale(0.08);
  transition: background-image 0.4s;
}
.nosotros-card {
  position: relative;
  z-index: 3;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.2rem;
  margin-top: 0;
}
.nosotros-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1536F2;
  margin-bottom: 0.5rem;
  text-align: left;
  letter-spacing: -1px;
}
.nosotros-description {
  font-size: 1.18rem;
  color: #f2f2f2;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.nosotros-equipo {
  width: 100%;
}
.nosotros-equipo h2 {
  font-size: 1.25rem;
  color: #1536F2;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.nosotros-lista-equipo {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.nosotros-lista-equipo li {
  font-size: 1.08rem;
  color: #222;
  background: #f7f8fa;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  box-shadow: 0 1px 4px 0 rgba(21,54,242,0.04);
}
.nosotros-card, .nosotros-description, .nosotros-card * {
  color: #f2f2f2 !important;
  background: none !important;
  box-shadow: none !important;
}
@media (max-width: 600px) {
  .nosotros-card {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .nosotros-title {
    font-size: 1.4rem;
  }
  .nosotros-hero-title {
    font-size: 1.2rem;
  }
}

/* === Hero Header Moderno === */
.nosotros-hero {
  position: relative;
  width: 100vw;
  min-height: 44vh;
  height: 44vh;
  max-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.nosotros-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: background-image 0.4s;
}
.nosotros-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.nosotros-hero-title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 32px rgba(21,54,242,0.18), 0 1px 8px rgba(0,0,0,0.18);
  margin: 0;
  padding: 0 1rem;
}
@media (max-width: 900px) {
  .nosotros-hero {
    min-height: 28vh;
    height: 28vh;
    max-height: 220px;
  }
  .nosotros-hero-title {
    font-size: 2rem;
  }
} 