.elementor-15361 .elementor-element.elementor-element-5b6d712{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS *//* ====== Coming Soon Page – Estilo Premium Turquesa ====== */

.coming-soon-wrapper {
  height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #00AEC7 0%, #007E90 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.coming-soon-card {
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 480px;
  width: 100%;
  animation: fadeIn 0.8s ease-out;
}

.coming-soon-card h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #00AEC7;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.coming-soon-card p {
  font-size: 18px;
  color: #0F1F26;
  margin-bottom: 25px;
  opacity: 0.85;
}

/* Loader elegante estilo pulso */
.loader {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  border-radius: 50%;
  background: #00AEC7;
  animation: pulse 1s infinite ease-in-out;
}

/* Animaciones */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 480px) {
  .coming-soon-card {
    padding: 35px 30px;
  }
  .coming-soon-card h1 {
    font-size: 32px;
  }
}/* End custom CSS */