@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-red: #ff0044;
  --primary-hot: #ff2a6d;
  --hot-gradient: linear-gradient(135deg, #ff0844 0%, #ff4e50 50%, #f9d423 100%);
  --hot-fire: linear-gradient(135deg, #ff0033 0%, #ff3b00 100%);
  --neon-glow: 0 0 25px rgba(255, 0, 68, 0.6);
  --neon-subtle: 0 0 15px rgba(255, 42, 109, 0.4);
  --neon-green: #00ff88;
  --bg-dark: #07070a;
  --bg-card: rgba(22, 18, 25, 0.75);
  --border-glass: rgba(255, 45, 109, 0.25);
  --border-light: rgba(255, 255, 255, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: auto !important;
  overscroll-behavior: auto !important;
}

html, body {
  min-height: 100%;
  background: var(--bg-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
}

/* =========================================
   FUMAÇA & GLOW AMBIENTAL (TEMA HOT)
========================================= */
.fumaca1, .fumaca2, .fumaca3 {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
}

.fumaca1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 15, 75, 0.35) 0%, rgba(255, 69, 0, 0.15) 50%, transparent 70%);
  animation: pulsarFumaca1 9s ease-in-out infinite alternate;
}

.fumaca2 {
  top: 45%;
  left: 30%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 0, 98, 0.28) 0%, rgba(138, 43, 226, 0.15) 50%, transparent 70%);
  animation: pulsarFumaca2 8s ease-in-out infinite alternate;
}

.fumaca3 {
  bottom: 5%;
  right: 25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.25) 0%, rgba(255, 0, 68, 0.15) 50%, transparent 70%);
  animation: pulsarFumaca1 11s ease-in-out infinite alternate;
}

@keyframes pulsarFumaca1 {
  0% { transform: translate(-50%, -10px) scale(0.95); opacity: 0.7; }
  100% { transform: translate(-50%, 20px) scale(1.15); opacity: 0.95; }
}

@keyframes pulsarFumaca2 {
  0% { transform: translate(15px, -20px) scale(1.05); opacity: 0.6; }
  100% { transform: translate(-20px, 15px) scale(0.9); opacity: 0.85; }
}

/* Container de conteúdo */
.main-wrapper {
  position: relative;
  z-index: 10;
  max-width: 540px;
  margin: 0 auto;
  padding: 24px 16px 80px;
}

/* =========================================
   TOPO & HEADLINE HOT
========================================= */
.badge-hot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 0, 68, 0.18);
  border: 1px solid rgba(255, 45, 109, 0.5);
  color: #ff3b69;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  box-shadow: var(--neon-subtle);
  animation: pulseBadge 2.5s infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #ff0044;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff0044;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.top-box {
  background: linear-gradient(135deg, rgba(255, 10, 68, 0.95) 0%, rgba(220, 0, 48, 0.95) 50%, rgba(180, 0, 36, 0.95) 100%);
  color: #ffffff;
  padding: 24px 20px;
  border-radius: 20px;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(255, 0, 68, 0.4), 0 0 15px rgba(255, 45, 109, 0.3) inset;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.top-box b, .top-box h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

/* =========================================
   LISTA DE CONTEÚDOS / BENEFÍCIOS
========================================= */
.lista-container {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 20px 22px;
  margin: 0 auto 26px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  text-align: left;
}

.lista-titulo {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ff527b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lista li {
  font-size: 16px;
  font-weight: 600;
  color: #f1f1f5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: capitalize;
}

.lista li:last-child {
  border-bottom: none;
}

.lista li .fire-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 45, 109, 0.2);
  border-radius: 50%;
  color: #ff3366;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 45, 109, 0.3);
}

/* =========================================
   BOX DE PREÇO - R$ 9,90
========================================= */
.preco-section {
  margin: 28px auto 20px;
}

.subtitulo {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 10px;
}

.de-preco {
  font-size: 15px;
  color: #9999a5;
  text-decoration: line-through;
  font-weight: 500;
  margin-bottom: 4px;
}

.preco-box {
  background: linear-gradient(135deg, #ff0844 0%, #ff2a55 50%, #d80032 100%);
  width: 230px;
  margin: 12px auto 22px;
  padding: 16px 20px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(255, 0, 68, 0.5), 0 0 20px rgba(255, 255, 255, 0.2) inset;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  animation: pulsarCard 3s infinite ease-in-out;
}

@keyframes pulsarCard {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 0, 68, 0.5); }
  50% { transform: scale(1.03); box-shadow: 0 15px 40px rgba(255, 0, 68, 0.75); }
}

.preco-box .moeda {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.preco-box .valor {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -1px;
}

/* =========================================
   BOTÕES DE AÇÃO (CTA HOT & REEMBOLSO)
========================================= */
.btn-pulsar {
  background: linear-gradient(135deg, #00ff88 0%, #00d66c 100%);
  color: #032b16;
  padding: 18px 28px;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  cursor: pointer;
  text-decoration: none;
  border: none;
  box-shadow: 0 6px 25px rgba(0, 255, 136, 0.45);
  animation: pulsarBotao 1.8s infinite ease-in-out;
  transition: all 0.25s ease;
}

.btn-pulsar:hover {
  background: linear-gradient(135deg, #05ff8d 0%, #00ea76 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.65);
}

.btn-pulsar:active {
  transform: scale(0.98);
}

@keyframes pulsarBotao {
  0% { transform: scale(1); box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4); }
  50% { transform: scale(1.04); box-shadow: 0 8px 32px rgba(0, 255, 136, 0.65); }
  100% { transform: scale(1); box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4); }
}

.btn-reembolso {
  background: transparent;
  color: #e0a800;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 16px auto 0;
  border: 1px solid rgba(255, 215, 0, 0.35);
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(5px);
}

.btn-reembolso:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: #ffd700;
  color: #ffe033;
  transform: scale(1.03);
}

.info-garantia {
  margin-top: 14px;
}

.info {
  font-size: 13px;
  font-weight: 600;
  color: #00ff88;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.info-small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================
   PRÉVIA DO GRUPO (VÍDEO RESPONSIVO)
========================================= */
.previa-grupo {
  padding: 34px 10px 20px;
  text-align: center;
  margin: 20px auto;
  max-width: 100%;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.video-previa-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}

.video-frame-glow {
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff0044, #ff5500, #ff0077);
  filter: blur(12px);
  opacity: 0.7;
  z-index: 1;
}

.video-previa {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 18px;
  border: 2px solid rgba(255, 45, 109, 0.5);
  background: #000;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  display: block;
}

/* =========================================
   PROVAS DO GRUPO VIP (DEPOIMENTOS)
========================================= */
.provas-mini {
  padding: 24px 12px;
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
  background: rgba(18, 15, 22, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
}

.provas-mini h3 {
  font-size: 15px;
  margin-bottom: 15px;
  color: #ff9ebb;
  font-weight: 600;
}

.btn-mostrar-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff0044 0%, #d80036 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 0, 68, 0.4);
  transition: all 0.2s ease;
}

.btn-mostrar-form:hover {
  background: linear-gradient(135deg, #ff1a5c 0%, #e6003e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 68, 0.6);
}

.form-prova-container {
  margin: 0 auto 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(255, 45, 109, 0.25);
  text-align: left;
}

.form-prova {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.estrelas-seletor {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.estrelas-seletor label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.estrelas-input {
  display: flex;
  gap: 6px;
}

.estrela {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  line-height: 1;
}

.estrela:hover,
.estrela.hover,
.estrela.ativa {
  color: #ffc83b;
  transform: scale(1.15);
  text-shadow: 0 0 10px rgba(255, 200, 59, 0.6);
}

.form-prova textarea {
  width: 100%;
  min-height: 85px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
}

.form-prova textarea:focus {
  border-color: #ff0044;
  box-shadow: 0 0 12px rgba(255, 0, 68, 0.4);
}

.btn-enviar-prova {
  padding: 12px 20px;
  background: #ff0044;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
  width: 100%;
}

.btn-enviar-prova:hover:not(:disabled) {
  background: #ff1f5a;
  transform: scale(1.02);
}

.btn-enviar-prova:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Feed Rolável de Depoimentos */
.provas-container-scroll {
  height: 380px;
  max-height: 380px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  -webkit-overflow-scrolling: touch;
}

.provas-container-scroll::-webkit-scrollbar {
  width: 6px;
}

.provas-container-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.provas-container-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 68, 0.4);
  border-radius: 8px;
}

.provas-container-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 0, 68, 0.7);
}

.prova-mini {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  text-align: left;
  animation: fadeIn 0.3s ease;
  transition: transform 0.2s;
}

.prova-mini:hover {
  border-color: rgba(255, 45, 109, 0.3);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.stars-mini {
  font-size: 15px;
  color: #ffc83b;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.prova-mini p {
  margin: 6px 0;
  font-size: 13.5px;
  color: #eeeeee;
  line-height: 1.45;
  font-style: italic;
}

.prova-mini span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #a0a0b0;
  font-weight: 600;
}

/* =========================================
   POPUP NOTIFICAÇÃO TOAST (ENTRADA DE MEMBROS)
========================================= */
#popup-notificacao {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99999;
  pointer-events: none;
}

.popup-box {
  background: rgba(14, 12, 18, 0.94);
  border: 1px solid #ff0044;
  padding: 12px 16px;
  border-radius: 12px;
  min-width: 240px;
  max-width: 300px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 0, 68, 0.3);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 13px;
  text-align: left;
  backdrop-filter: blur(10px);
}

.popup-box strong {
  color: #ff2a6d;
}

.popup-show .popup-box {
  transform: translateY(0);
  opacity: 1;
}

.popup-hidden .popup-box {
  transform: translateY(30px);
  opacity: 0;
}

/* =========================================
   OVERLAY & MODAIS (GLASSMORPHISM HOT)
========================================= */
.overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(4, 3, 6, 0.82) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9998 !important;
  display: none;
  animation: fadeInOverlay 0.25s ease;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-zangi {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: #131016 !important;
  color: #fff !important;
  padding: 28px 22px !important;
  border-radius: 20px !important;
  z-index: 9999 !important;
  width: 90% !important;
  max-width: 370px !important;
  max-height: 88vh !important;
  overflow-y: auto !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 0, 68, 0.35) !important;
  border: 1px solid rgba(255, 0, 68, 0.5) !important;
  display: none;
  text-align: center !important;
  box-sizing: border-box !important;
  animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  from { opacity: 0; transform: translate(-50%, -45%) scale(0.92); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.popup-zangi h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  margin-top: 0;
  margin-bottom: 8px;
}

.popup-zangi p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  line-height: 1.45;
}

.popup-zangi .fechar {
  position: absolute !important;
  top: 12px !important;
  right: 14px !important;
  background: rgba(255, 0, 68, 0.2) !important;
  border: 1px solid rgba(255, 0, 68, 0.4) !important;
  color: #fff !important;
  width: 32px;
  height: 32px;
  font-size: 16px !important;
  border-radius: 50%;
  cursor: pointer !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.popup-zangi .fechar:hover {
  background: #ff0044 !important;
  transform: rotate(90deg);
}

.popup-zangi input[type="text"],
.popup-zangi input[type="tel"] {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  margin: 8px 0 14px;
  outline: none;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: 0.5px;
}

.popup-zangi input:focus {
  border-color: #ff0044;
  box-shadow: 0 0 10px rgba(255, 0, 68, 0.4);
}

.aviso {
  font-size: 12px !important;
  color: #ff527b !important;
  margin-top: 4px;
  margin-bottom: 16px !important;
  font-weight: 600;
}

.btn-finalizar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff0044 0%, #d80036 100%);
  padding: 14px 20px;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 0, 68, 0.5);
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.btn-finalizar:hover {
  background: linear-gradient(135deg, #ff1a5c 0%, #eb003e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 68, 0.7);
}

/* Opções de Grupo (Radio Personalizado) */
.popup-opcoes-grupo {
  margin: 16px auto 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opcao-grupo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
}

.opcao-grupo:hover {
  background: rgba(255, 0, 68, 0.1);
  border-color: rgba(255, 0, 68, 0.4);
}

.opcao-grupo input[type="radio"] {
  display: none;
}

.fake-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  position: relative;
  flex-shrink: 0;
}

.opcao-grupo input[type="radio"]:checked + .fake-radio {
  border-color: #ff0044;
}

.opcao-grupo input[type="radio"]:checked + .fake-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ff0044;
  box-shadow: 0 0 8px #ff0044;
}

.opcao-grupo input[type="radio"]:checked ~ .texto-opcao {
  color: #ff527b;
}

/* Modal de Reembolso */
.form-reembolso {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.campo-reembolso {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.campo-reembolso label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.campo-reembolso input[type="file"],
.campo-reembolso input[type="text"],
.campo-reembolso textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
}

.campo-reembolso input[type="file"]::file-selector-button {
  background: #ff0044;
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-right: 10px;
  font-weight: 700;
  font-size: 12px;
}

.campo-reembolso textarea {
  min-height: 75px;
  resize: vertical;
}

.campo-reembolso small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* Modal de Sucesso */
.popup-sucesso {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.88) !important;
  backdrop-filter: blur(12px);
  z-index: 10001 !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
}

.sucesso-content {
  background: #141118;
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 255, 136, 0.2);
  border: 1px solid rgba(0, 255, 136, 0.3);
  animation: popIn 0.3s ease;
}

.checkmark-container {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.checkmark {
  width: 70px;
  height: 70px;
}

.checkmark-circle {
  stroke: #00ff88;
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke: #00ff88;
  stroke-width: 3;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke-check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes stroke-circle { 100% { stroke-dashoffset: 0; } }
@keyframes stroke-check { 100% { stroke-dashoffset: 0; } }

.sucesso-titulo {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.sucesso-texto {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 22px;
}

.btn-fechar-sucesso {
  background: linear-gradient(135deg, #00ff88 0%, #00d66c 100%);
  color: #032b16;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
}

/* =========================================
   ESTILOS DO PAGAMENTO PIX (QR CODE & COPIA E COLA)
========================================= */
.pix-loading {
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.spinner-pix {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 0, 68, 0.2);
  border-top-color: #ff0044;
  border-radius: 50%;
  animation: girar 0.8s linear infinite;
}

@keyframes girar {
  to { transform: rotate(360deg); }
}

.pix-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pix-valor-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.4);
  color: #00ff88;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin: 0 auto;
}

.pix-info-cliente {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.pix-qrcode-wrapper {
  background: #ffffff;
  padding: 14px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 25px rgba(255, 0, 68, 0.4);
  border: 3px solid #ff0044;
  max-width: 210px;
  max-height: 210px;
}

.pix-qrcode-wrapper canvas,
.pix-qrcode-wrapper img {
  display: block;
  max-width: 180px;
  max-height: 180px;
  width: 100%;
  height: auto;
}

.pix-timer {
  font-size: 13px;
  font-weight: 700;
  color: #ffc83b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pix-copia-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pix-copia-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  padding: 10px 12px;
  font-family: monospace;
  font-size: 12px;
  outline: none;
  resize: none;
  height: 58px;
  box-sizing: border-box;
}

.btn-copiar-pix {
  background: linear-gradient(135deg, #00ff88 0%, #00d66c 100%);
  color: #032b16;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
  transition: all 0.25s ease;
}

.btn-copiar-pix:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 255, 136, 0.6);
}

.btn-copiar-pix.copiado {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
}

.pix-instrucoes {
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pix-instrucoes ol {
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.pix-instrucoes li strong {
  color: #fff;
}

