/* === Sección 1: Bienvenida blanco === */
.equipo-bienvenida {
  background: white;
  padding: 80px 20px;
}

.equipo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.equipo-texto {
  flex: 1 1 550px;
}

.equipo-texto h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #111;
}

.equipo-texto p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.equipo-imagen {
  flex: 1 1 400px;
  text-align: center;
}

.equipo-imagen img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* === Sección 2: Métricas y confianza === */
.equipo-datos {
  background: #00bfa6;
  color: white;
  padding: 80px 20px 60px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.equipo-datos h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.equipo-datos p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
  color: white;
}

.metricas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  margin-top: 20px;
}

.metricas .item {
  text-align: center;
  min-width: 200px;
}

.metricas .item h3 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.metricas .item p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.metricas .item span {
  font-size: 0.95rem;
  opacity: 0.95;
}

/* === Sección 3: Próximamente === */
.equipo-proximamente {
  background: #f2f2f2;
  text-align: center;
  padding: 60px 20px;
}

.equipo-proximamente p {
  font-size: 1.4rem;
  color: #333;
  font-weight: bold;
}

/* === Responsive general === */
@media screen and (max-width: 768px) {
  .equipo-container {
    flex-direction: column;
    text-align: center;
  }

  .metricas {
    flex-direction: column;
    align-items: center;
  }

  .equipo-texto,
  .equipo-imagen {
    flex: 1 1 100%;
  }
}
