.equipos-destacados {
  background-color: #f4fdf4;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.equipos-destacados .section-title {
  text-align: center;
  font-size: 32px;
  color: #225D00;
  margin-bottom: 10px;
}

.equipos-intro {
  text-align: center;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #444;
}

.equipos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.equipo-card {
  background-color: #fff;
  /* background-color: #f9f9f9; */
  /* background-color: #f4fdf4; */
  border: 1px solid #dcefdc;
  padding: 25px;
  width: 280px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  position: relative;
}

.equipo-imagen {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.equipo-nombre {
  font-size: 20px;
  font-weight: bold;
  color: #225D00;
  margin-bottom: 10px;
}

.equipo-resumen {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.btn-detalles {
  display: inline-block;
  padding: 10px 20px;
  background-color: #225D00;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-detalles:hover {
  background-color: #1b4a00;
}

@media (max-width: 768px) {
  .equipos-grid {
    flex-direction: column;
    align-items: center;
  }

  .equipo-card {
    width: 90%;
  }
}
.btn-ver {
  background: #225D00;
  color: #fff;
  padding: 7px 12px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 6px #225D00, 0 0 10px #2da300 inset;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.btn-ver:hover {
  background: #2da300;
  box-shadow: 0 0 10px #2da300, 0 0 18px #6ef84f;
  transform: scale(1.05);
}


.btn-ver:focus {
  outline: none;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-contenido {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.cerrar {
  color: #aaa;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

.cerrar:hover,
.cerrar:focus {
  color: #000;
}

#modalTitulo {
  color: #225D00;
  font-size: 24px;
  margin-bottom: 15px;
}

#modalDescripcion {
  color: #444;
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-cerrar {
  background-color: #225D00;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-cerrar:hover {
  background-color: #1b4a00;
}