.countdown-module {
  padding: 40px 20px;
  background-size: cover;
  background-position: center;
}

.countdown-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.countdown-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
}

.countdown-cards {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.countdown-card {
  background-color: #ffffff; /* 🔥 BLANCO */
  border-radius: 18px;
  padding: 18px 22px;
  width: 150px;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.countdown-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: #361549; /* texto oscuro */
}

.countdown-label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #361549;
}

.countdown-expired {
  display: none;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .countdown-card {
    width: 130px;
    padding: 16px;
  }

  .countdown-number {
    font-size: 40px;
    
  }
}
.countdown-title {
  margin-bottom: 24px;
}


}

}

