.elementor-2935 .elementor-element.elementor-element-6fbe131{--display:flex;}.elementor-2935 .elementor-element.elementor-element-0615d96 > .elementor-widget-container{margin:47px 0px 0px 0px;}#elementor-popup-modal-2935{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-2935 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-2935 .dialog-close-button{display:flex;}#elementor-popup-modal-2935 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-0615d96 */@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,800&display=swap');

/* Variables basadas en la paleta de la imagen */
:root {
  --yp-magenta: #e91e63; /* Ajustado al rosado brillante del header */
  --yp-cyan: #00c0b5;    /* Ajustado al bloque turquesa/cian */
  --yp-text-dark: #2d2d2d;
  --yp-bg-light: #ffffff;
  --yp-font: 'Poppins', sans-serif;
}

/* Overlay para oscurecer el fondo */
.yp-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: var(--yp-font);
}

/* Contenedor blanco del popup */
.yp-popup-content {
  background-color: var(--yp-bg-light);
  width: 90%;
  max-width: 500px;
  padding: 40px 30px;
  border-radius: 24px; /* Bordes bien redondeados estilo YouPlay */
  position: relative;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  animation: yp-pop-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Animación de entrada */
@keyframes yp-pop-in {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* Botón cerrar (X) */
.yp-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  line-height: 1;
}

.yp-popup-close:hover {
  color: var(--yp-magenta);
}

/* Título */
.yp-popup-title {
  color: var(--yp-magenta);
  font-size: 26px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* Texto general */
.yp-popup-text {
  color: var(--yp-text-dark);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Palabras clave destacadas */
.yp-highlight {
  color: var(--yp-magenta);
  font-weight: 600;
}

/* Caja de contacto (email y whatsapp) */
.yp-popup-contact {
  background-color: #f4f6f8;
  border-radius: 16px;
  padding: 15px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yp-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--yp-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

.yp-contact-link:hover {
  opacity: 0.7;
}

/* Texto de advertencia inferior */
.yp-popup-small-text {
  font-size: 13px;
  color: #777;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* Contenedor de Botones */
.yp-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Responsive: Botones lado a lado en pantallas más grandes */
@media (min-width: 480px) {
  .yp-popup-actions {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Estilo base de los botones (Forma de píldora) */
.yp-btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}

.yp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Variantes de color para los botones */
.yp-btn-cyan {
  background-color: var(--yp-cyan);
  color: #ffffff;
}

.yp-btn-magenta {
  background-color: var(--yp-magenta);
  color: #ffffff;
}/* End custom CSS */