.eventos {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1f5edc, #2c7be5);
  text-align: center;
  color: white;
}

.eventos h2 {
  font-size: 42px;
  margin-bottom: 40px;
  font-weight: 700;
}

.eventos-container {
  max-width: 900px;
  margin: auto;
  padding: 40px;
  border-radius: 30px;
  background: rgba(0,0,0,0.15);

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.evento-card {
  background: #0b1f44;
  border-radius: 25px;
  padding: 20px;
  position: relative;
  text-align: center;
  cursor: pointer;
  will-change: transform;
}

.evento-card h3 {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 500;
}

.evento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.evento-card:hover {
  transform: translateY(-10px) scale(1.02);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.4),
    0 0 0 2px rgba(255,255,255,0.05);
}

.arrow {
  position: absolute;
  top: -60px;
  right: 40px;

  width: 40px !important;       /* ajusta tamaño */
  height: 40px I !important;

  object-fit: contain !important;

  z-index: 2;
}
/* colores */
.azul { border-top-color: #1e90ff; }
.turquesa { border-top-color: #38d9a9; }
.amarillo { border-top-color: #ffd43b; }
.naranja { border-top-color: #ff6b00; }

@media (max-width: 768px) {
  .eventos-container {
    grid-template-columns: 1fr;
  }
}