/* Tarjetas de equipo con efecto llamativo */
.equipo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 2.5rem auto 1.5rem auto;
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
  padding: 0 1.2rem;
  justify-items: center;
}
.equipo-card {
  background: #0a2233;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,34,51,0.13), 0 1.5px 8px 0 #0ff8;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s, border 0.3s, background 0.3s;
  border: 2px solid #00fff7;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0.7rem 1.2rem 0.7rem;
  cursor: pointer;
  min-height: 300px;
  max-width: 260px;
  width: 100%;
  margin: 0 0.5rem;
  animation: card-futurista-in 1.1s cubic-bezier(.77,0,.18,1) both;
  z-index: 1;
}
.equipo-card:hover {
  box-shadow: 0 12px 48px 0 #00fff7cc, 0 4px 24px 0 #0ff8;
  transform: translateY(-10px) scale(1.045) rotateZ(-1deg);
  border: 2.5px solid #0af;
  background: #102c44;
  z-index: 2;
}
.equipo-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 16px 0 #00fff7cc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, filter 0.3s;
}
.equipo-card:hover .equipo-avatar {
  box-shadow: 0 0 32px 0 #00fff7, 0 2px 16px 0 #0ff8;
  filter: brightness(1.18) drop-shadow(0 0 12px #00fff7);
}
.equipo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.equipo-info h3 {
  font-size: 1.13rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.2rem 0;
  text-align: center;
  letter-spacing: 0.5px;
}
.equipo-cargo {
  font-size: 1.18rem;
  font-weight: 800;
  color: #00fff7;
  display: block;
  margin-bottom: 0.7rem;
  text-align: center;
  letter-spacing: 0.5px;
}
.equipo-info p {
  color: #e6faff;
  font-size: 1.08rem;
  margin: 0;
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
}
[data-theme="dark"] .equipo-card {
  background: #0a2233;
  border: 2px solid #00fff7;
  box-shadow: 0 8px 40px 0 #00fff733, 0 2px 12px 0 #0ff8;
}
[data-theme="dark"] .equipo-card:hover {
  background: #102c44;
}
[data-theme="dark"] .equipo-info h3 {
  color: #fff !important;
}
[data-theme="dark"] .equipo-info p {
  color: #d1d5db;
}
[data-theme="dark"] .equipo-cargo {
  color: #00fff7;
}
[data-theme="light"] .equipo-card {
  background: #f7fafc;
  border: 2px solid #0af;
  box-shadow: 0 4px 24px 0 #b6faff33, 0 1.5px 8px 0 #b6faff;
}
[data-theme="light"] .equipo-card:hover {
  background: #e6faff;
  border: 2.5px solid #0af;
}
[data-theme="light"] .equipo-info h3 {
  color: #0a2233 !important;
}
[data-theme="light"] .equipo-info p {
  color: #23272f;
}
[data-theme="light"] .equipo-cargo {
  color: #0af;
}
@media (max-width: 1100px) {
  .equipo-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 98vw;
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .equipo-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 0 0.2rem;
  }
  .equipo-card {
    min-height: 180px;
    padding: 1rem 0.3rem 0.8rem 0.3rem;
    max-width: 98vw;
  }
  .equipo-avatar {
    width: 56px;
    height: 56px;
    margin-bottom: 0.7rem;
  }
}
