/* Start custom CSS for html, class: .elementor-element-1bbdd26 */.el-countdown-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  background: #f6fdf8;
  border-radius: 18px;
  text-align: center;
}

.el-countdown-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #1e293b;
  margin-bottom: 22px;
}

.el-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.el-time-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.el-time-box span {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 800;
  color: #00AF35;
}

.el-time-box small {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* BOTÓN */
.el-buy-button {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 34px;
  background: #00AF35;
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 25px rgba(0, 175, 53, 0.35);
}

.el-buy-button:hover {
  background: #008C2B;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 175, 53, 0.45);
}

/* Expirado */
.el-expired-message {
  display: none;
  margin-top: 20px;
  font-size: 1.1rem;
  color: #dc2626;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 520px) {
  .el-countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .el-buy-button {
    width: 100%;
  }
}/* End custom CSS */