.equipo {
  background-color: #fff;
  padding: 4rem 2rem;
  font-family: 'Roboto', sans-serif;
  color: #0d48a1;
  text-align: center;
}

.equipo h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.equipo > h2 > span {
  color: #070708a1;
  font-weight: 100;
}

.equipo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.equipo-card {
  background-color: #6366f1;
  border-radius: 12px;
  overflow: hidden;
  width: 270px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-align: left;
}

.equipo-card:hover {
  transform: translateY(-5px);
}

.equipo-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.equipo-info {
  padding: 1.2rem;
}

.equipo-info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #ffff;
}

.equipo-info p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #ffff;
}

.equipo-curso {
  margin-top: 0.8rem;
  /* background-color: #16a34a; */
  color: white;
  font-size: 0.85rem;
  padding: 0.4rem 0rem;
  border-radius: 999px;
  display: inline-block;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .equipo-grid {
    flex-direction: column;
    align-items: center;
  }

  .equipo-card {
    width: 90%;
  }
}
