/* ==================== PACK PRO - MODALES Y BOTONES ==================== */

/* ===== MODAL BITCOIN - PACK PRO ===== */
#bitcoinModalPro {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#bitcoinModalPro > .bitcoin-modal-content {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  background: 
    radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  padding: 20px;
  position: relative;
  text-align: center;
  animation: fadeInScale 0.3s ease;
}

#closeBitcoinModalPro {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 20px;
  transform: scale(1.8);
  font-weight: 900;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
}

#closeBitcoinModalPro:hover {
  color: #000;
  transform: scale(1.6);
}

/* ===== MODAL YAPE - PACK PRO ===== */
#yapeModalPro {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-sizing: border-box;
}

#yapeModalPro .modal-content {
  background: linear-gradient(145deg, #6a0dad, #9b30ff);
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  border-radius: 12px;
  box-sizing: border-box;
}

#yapeModalPro .modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

#yapeModalPro .modal-qr {
  display: block;
  margin: 1rem auto;
  width: 250px;
  max-width: 90%;
  border-radius: 12px;
  box-sizing: border-box;
}

/* ===== BOTONES PACK PRO ===== */
#yapeBtnPro, #bitcoinBtnPro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0rem 0rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #ddd;

  margin-bottom: 15px;
}


#bitcoinBtnPro {
    display: flex;           /* Activamos flexbox */
  align-items: center;     /* Centra verticalmente los elementos hijos */
  gap: 8px;   
}

#yapeBtnPro .yape-icon, #bitcoinBtnPro img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin: 0;
top: 0; 
 
}



#bitcoinBtnPro span {
  font-style: italic;
  cursor: pointer;
  line-height: 1;  /* ajusta si necesitas un poquito más de altura */
    font-weight: 600; /* <--- esto hace que el texto tenga el mismo grosor */
    color: #FFFFFF;
    
  

}
.proTextBitcoin {
   color: #f3ff0c;
  font-weight: bold; /* grosor tal como en Avanzado/Intermedio */

font-size: 14px;
  font-style: italic;
  line-height: 1; /* para alinear verticalmente con el ícono */
    
}








/* ===== RIBBON RECOMENDADO CURVEADO ===== */
.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 10;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 200px;
  padding: 10px 0;
  background: linear-gradient(45deg, #ff4e50, #f60000); /* Rojo elegante */
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    font-family: 'Montserrat', sans-serif;

  /* Estilo curveado */
  border-radius: 8px; 
  letter-spacing: 1px;

  transform: rotate(45deg);
  top: 42px;
  right: -45px;
}










/* ==================== BORDE ANIMADO ARCOIRIS ==================== */

/* ==================== PACK PRO BORDE ANIMADO ARCOIRIS ==================== */

/* Sobrescribimos el borde base de package-card solo para este pack */
.package-card.borde-animado {
  border: none !important;        /* Quitamos borde base */
  box-shadow: none !important;    /* Quitamos sombra base */
  position: relative;             /* Necesario para el pseudo-elemento */
  z-index: 1;
  overflow: hidden;
  border-radius: 18px;            /* Mantener bordes redondeados */
}

/* Pseudo-elemento para el borde animado arcoíris */
.package-card.borde-animado::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;                   /* Grosor del borde */
  border-radius: 18px;

  /* Gradiente arcoíris brillante */
  background: linear-gradient(
    90deg, red, orange, yellow, green, cyan, blue, violet, red
  );
  background-size: 400% 400%;
  filter: brightness(1.6) contrast(1.3);

  /* Animación continua */
  animation: shine 3s linear infinite;

  /* Mostrar solo el borde */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  z-index: -1; /* Mantiene el borde detrás del contenido */
}

/* Animación del gradiente */
@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}








/* Botón PayPal personalizado */
/* .custom-paypal-btn-pro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffc439;
  color: #111;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  max-width: 250px;
  height: 50px;
  margin: 0 auto 15px auto;
  box-shadow: none;
}

.custom-paypal-btn-pro .paypal-icon {
  width: 24px;
  height: 24px;
  display: block;
  background: none !important;
  box-shadow: none !important;
  margin-top: 18px;
}

.custom-paypal-btn-pro:hover {
  background-color: #ffb700;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
} */

/* ===== MEDIA QUERIES ===== */
@media (max-width: 768px) {
  #bitcoinModalPro > .bitcoin-modal-content,
  #yapeModalPro .modal-content {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    padding: 20px;
  }

  #yapeModalPro .modal-qr {
    width: 230px;
  }
}

@media (max-width: 480px) {
  #yapeModalPro .modal-content {
    width: 100%;
    max-width: none;
    padding: 1.5rem;
  }
  #yapeModalPro .modal-qr {
    width: 220px;
  }
}

/* Animación de fadeIn */
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}






