/* ===== BASE GENERAL ===== */
html {
  font-size: 16px; /* base escritorio */
}
body {
  font-family:'Gotham','Lato','Railway';
  background: #111;
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}
.cta {
  background: #25D366;
  color: #111;
  font-size: 1.3rem;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  font-family: 'Gotham', 'Lato', 'Raleway', sans-serif;
}
/* ===== HEADER GENERAL ===== */
header {
  background: #25D366;
  padding: 2rem;
  font-weight: bold;
  text-align: center;
  font-size:3.5rem;
}

/* ===== Escritorio (pantallas grandes) ===== */
@media (min-width: 1000px) {
  header {
    font-size: 2rem;   /* tamaño más contenido en escritorio */
  }
}
main {
  flex: 1;
  padding: 1rem 0;
  width: 40%;
  margin: 0 auto;
}
footer {
  background: #222;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  margin-top: auto;
}
.step-title {
  margin: 1.5rem 0;
  font-size: 3.3rem;
  font-weight: bold;
}
@media (min-width: 1000px) {
  .step-title {
    font-size: 2rem;   /* tamaño más contenido en escritorio */
  }
}

h2, h3 {
  color: #25D366;
  font-family:'Gotham','Lato','Railway';
}

/* ===== CUADRO DE SUBIDA ===== */
.upload-box {
  border: 2px dashed #25D366;
  border-radius: 12px;
  width: 90%;
  aspect-ratio: 1 / 1;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #aaa;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  transition: 0.3s;
  font-size: 1.1rem;
}
.upload-box .icon {
  font-size: 5.0rem;
  margin-bottom: 0.5rem;
}
.upload-box:hover {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

/* ===== PREVIEW ===== */
.preview-wrapper {
  position: relative;
  display: inline-block;
}
.preview-container img {
  width: 90%;
  border-radius: 10px;
  border: 2px solid #25D366;
  margin-top: 0.5rem;
}
/* ===== BOTÓN ELIMINAR (general) ===== */
.remove-btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -40%);
  background: #ff4d4d;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  transition: background 0.3s;
}
.remove-btn:hover { background: #e60000; }

/* ===== Ajustes móviles ===== */
@media (max-width: 1000px) {
  .remove-btn {
    transform: translate(20%, -20%);  /* más cerca de la esquina */
    width: 3.0rem;   /* un poco más grande */
    height: 3.0rem;
    font-size: 1.5rem;
	top:-10px;
  }
}

.continue-btn {
  display: block;
  width: 100%;
  margin: 1rem auto 0 auto;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  background: #25D366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
}
.continue-btn:hover {
  background: #1ebc5b;
}

/* ===== OPCIONES DE ANIMACIÓN ===== */
.anim-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem auto;
}
.anim-options button {
  width: 100%;
  text-align: left;
  padding: 0.8rem;
  font-size: 1.1rem;
  border-radius: 10px;
  background: #25D366;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
.anim-options button:hover {
  background: #1ebc5b;
}

/* ===== PROGRESO ===== */
.progress-container {
  width: 100%;
  background: #333;
  border-radius: 10px;
  margin: 1.5rem auto;
  height: 1.6rem;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: #25D366;
  transition: width 0.4s;
}
.blurred {
  width: 100%;
  border-radius: 10px;
  filter: blur(20px);
  margin: 1rem 0;
}

/* ===== CONTACTO ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem auto;
  text-align: left;
}
.contact-input label {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.3rem;
}
.contact-input input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #25D366;
  border-radius: 8px;
  font-size: 1.1rem;
  background: #fff;
  color: #000;
}

/* Teléfono con prefijo */
.phone-input {
  display: flex;
  align-items: stretch;
  border: 2px solid #25D366;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.phone-prefix {
  background: #25D366;
  color: #fff;
  padding: 0 0.8rem;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-input input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  font-size: 1.1rem;
  background: #fff;
  color: #000;
}

/* ===== PAGO ===== */
.packages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem auto;
}
.package {
  background: #222;
  border: 2px solid #25D366;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
}
.package h3 { margin: 0; color: #25D366; font-size: 1.8rem; }
.package p { font-family:'Gotham','Lato','Railway';margin: 0.5rem 0; font-size: 1.5rem; }
.btn-pay {
  margin-top: 0.5rem;
  padding: 0.8rem;
  background: #25D366;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.btn-pay:hover { background: #1ebc5b; }
.timer {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff4d4d;
  margin: 1rem 0;
}
.timer-digital {
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 4rem;
  font-weight: bold;
  color: #00ffcc;
  background: #000;
  padding: 15px 40px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 0 20px #00ffcc inset, 0 0 20px #00ffcc;
  letter-spacing: 4px;
  text-align: center;
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

.countdown-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 20px auto;
  font-family: 'Orbitron', sans-serif;
}

.time-box {
  background: #111;
  color: #00ffc3;
  border: 2px solid #00ffc3;
  border-radius: 12px;
  width: 90px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px #00ffc3;
}

.time-box span {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

.time-box p {
  font-size: 0.9rem;
  color: #88fff0;
  margin: 5px 0 0;
  letter-spacing: 2px;
}

.separator {
  font-size: 3rem;
  color: #00ffc3;
  font-weight: bold;
  margin-top: -10px;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

.digital-timer {
  display: inline-block;
  background: #111;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
  font-size: 4rem;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow:
    inset 0 0 20px rgba(0, 255, 200, 0.4),
    0 0 25px rgba(0, 255, 200, 0.6);
  letter-spacing: 6px;
  text-align: center;
  border: 2px solid #00ffcc;
  user-select: none;
  min-width: 230px;
}

/* Efecto visual tipo “flip clock” estático (solo estilo, sin animación) */
.digital-timer::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 255, 200, 0.3);
  transform: translateY(-50%);
  border-radius: 50%;
}

/* Logos de pago */
.payment-logos {
  margin-top: 1rem;
}
.payment-logos img {
  max-height: 1.5rem;
  margin: 0 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  main { width: 80%; }
}

@media (max-width: 1000px) {
  html { font-size: 20px; } /* base más grande */
  main { width: 90%; padding: 1rem 0; }

  /* Escalado de textos y controles */
  h1, h2, h3, p, label, button, input, .step-title {
    font-size: 2.0rem !important;
  }

  .upload-box, .preview-container img, .blurred {
    max-width: 100%;
  }
  button, .continue-btn, .btn-pay {
    font-size: 2.0rem !important;
    padding: 1.2rem;
  }
}

@media (max-width: 1000px) {
  html { font-size: 20px; } /* aún más grande */
  main { width: 80%; }

  h1, h2, h3, p, label, button, input, .step-title {
    font-size: 2.6rem !important;
  }

  header { font-size: 2.3rem; }
  input, .phone-input input { font-size: 2.4rem !important; padding: 2rem; }
  .anim-options button { font-size: 2.1rem !important; padding: 2.0rem; }
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

.digital-timer {
  display: inline-block;
  background-color: #0b0b0b;
  color: #25D366;
  font-family: 'Orbitron', monospace;
  font-size: 4rem;
  font-weight: bold;
  padding: 15px 35px;
  border-radius: 12px;
  /* 💡 Eliminamos cualquier borde o sombra que pueda generar líneas */
  border: none;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
  
  letter-spacing: 6px;
  text-align: center;
  user-select: none;
  min-width: 230px;

  /* 🔧 Asegura que el fondo rellene completamente el área */
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}º



/* 💚 PAQUETE DESTACADO */
.package.destacado {
  background: #666666;
  border: 3px solid #25D366;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
  transform: scale(1.05);
  position: relative;
}

.package.destacado::before {
  
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #25D366;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  letter-spacing: 1px;
}

.destacado {
  background: #666666;
  border: 3px solid #25D366;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
  transform: scale(1.05);
  position: relative;
  border-radius: 12px;
  padding: 2.2rem;
  text-align: center;
}

.destacado::before {
  
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #25D366;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  letter-spacing: 1px;
}