
.equipo-contenedor {width: 100%;margin:0px auto;}
.equipo-bg-section {
  position: relative;
  width: 100%;
  height: 700px;
  background: url("../images/equipo_fondo.jpg") center/cover no-repeat;
  background-attachment: fixed; /* 🎯 Parallax */
  border-radius: 0rem 0rem 0rem 0rem;
  margin:0px auto;
  margin-top: 80px;
  overflow: hidden;

}

/* 🔹 Capa de degradado */
.equipo-bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 50, 0.1) 0%,     /* gris oscuro */
    rgba(3, 62, 91, 0.1) 100%     /* azul corporativo */
  );
  z-index: 1;
}

/* Tarjeta de texto encima del overlay */
.equipo-content {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  background: white;
  padding: 5rem;
  max-width: 50%;
  border-bottom-left-radius: 6rem;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 2; /* ✅ se pone encima del overlay */
}

.equipo-title {
  font-size: 2.9rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--color-primary);
  line-height: 1.2;
}

.equipo-title span {
  font-weight: 700;
}

.equipo-description {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.equipo-link {
  font-weight: 700;
 font-size:20px;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
}

.equipo-link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: margin-left 0.3s ease;
}

.equipo-link:hover::after {
  margin-left: 0.8rem;
}

/* 📱 Responsive */
@media (max-width: 720px) {
  .equipo-bg-section {
    background-attachment: scroll; /* Evita bugs en móviles */
    height: auto;
    padding: 1rem 0;
  }

  .equipo-content {
    
    position: relative;
    transform: none;
    max-width: 90% !important;
    padding: 3rem;
    margin: 0 auto;
    border-bottom-left-radius: 3rem;
    margin-left:5rem;
    padding-bottom:20px;
  }

  .equipo-title {
    font-size: 2rem;
    line-height:20px;
  }
}
