#countdown {
  margin: 30px 0;
  text-align: center;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--blanco);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  animation: latido 1.5s ease infinite;
}

@keyframes latido {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.weather-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.weather-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
  border-radius: 25px;
  padding: 20px;
  min-width: 120px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.weather-card:hover {
  transform: translateY(-5px) rotate(2deg);
  background: rgba(255, 255, 255, 0.35);
}

.weather-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.weather-card p {
  font-size: 1.5rem;
  margin: 0;
}
