 /* Fondo overlay */
.welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


/* Logo */
.welcome-modal img {
  height: auto;
  margin-bottom: 1.5rem;
}


/* Modal centrado */
.welcome-modal {
  background: #fff;
  padding: 1.5rem 6.75rem;
  border-radius: 12px;
  max-width: 650px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Texto principal */
.welcome-modal p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Separador visual en beneficios */
.welcome-modal p br + br {
  display: none;
}

.welcome-modal p::after {
  content: "";
  display: block;
  margin-top: 0.5rem;
}

/* Botones */
.welcome-modal .btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Botón primario */
.welcome-modal .btn-primary {
  background-color: #00bcd4;
  border: none;
  color: #fff;
}

.welcome-modal .btn-primary:hover {
  background-color: #0097a7;
}

/* Botón secundario */
.welcome-modal .btn-secondary {
  background-color: #fff;
  border: 2px solid #00bcd4;
  color: #00bcd4;
  text-transform: none;
}


.welcome-modal .btn-secondary:hover {
  border-color: #0097a7;
  color: #0097a7;
}

/* Mensaje final */
.welcome-modal .small {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
}

.welcome-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.welcome-buttons .btn-primary:hover,
.welcome-buttons .btn-secondary:hover {
  background-color: #1a252f !important;
  border-color: #1a252f !important;
}

.welcome-buttons .btn {
  flex: 1;
  padding: 0.75rem;
  font-weight: 500;
  border-radius: 40px;
  text-align: center;
}

.welcome-modal p.highlight {
  font-size: 1.2rem;
  font-weight: 600;   
  color: #222;         
  line-height: 1.5;   
  margin-bottom: -5px;
}

.welcome-modal .compra-strong {
  font-weight: 700;  
  font-size: 0.9rem;    
  color: #222;        
}


@media (max-width: 768px) {
    .welcome-modal {
    width: 100% !important;
    max-width: 95% !important;
    min-width: 0 !important;
    padding: 1rem 1.25rem !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .welcome-buttons {
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  .welcome-buttons .btn {
    width: 100% !important;
  }

  .welcome-modal p {
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .welcome-modal p.highlight {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .welcome-modal .small {
    font-size: 0.8rem;
    margin-top: 1rem;
  }
}



