body {
  background: #171717;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.toast{
  position: fixed;
  left: 50%;
  top: 32px !important;
  transform: translateX(-50%) scale(0.98);
  background: #ccab77;
  color: #262626;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 1.1em;
  opacity: 1;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 4px 24px 0 #00000055;
  transition: opacity 0.3s, transform 0.3s;
  width: 80% !important;
  font-family: 'Open Sans' !important;
  text-align: center !important;
  bottom: unset !important;
}

#btn-next-step3{
  margin-top: 40px;
}

#onboarding-fullscreen {
  min-height: 100vh;
  width: 100%;
  max-width: 720px;
  box-sizing: border-box;
  padding: 42px 42px 42px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #171717;
  position: relative;
  margin: 0 auto;
}
/* Header fixo do contador */
.promo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #a51e44;
  border-radius: 0;
  padding: 10px 16px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  display: none; /* visível apenas no step de pagamento via JS */
}
.promo-offset {
  padding-top: 72px !important; /* espaço para o header fixo */
}
.promo-header .promo-text { color: #fff; opacity: 0.95; font-family: 'Lato', sans-serif; font-weight: 600; }
.promo-header #promo-timer { color: #ccab77; font-weight: 800; font-family: 'Lato', sans-serif; }
@media (max-width: 900px) {
  #onboarding-fullscreen {
    padding: 42px 16px 42px 16px;
    width: 100%;
    max-width: 100vw;
  }
}
@media (max-width: 720px) {
  #onboarding-fullscreen {
    padding: 32px 4vw 32px 4vw;
    width: 100%;
    max-width: 100vw;
  }
}
.onboarding-title {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.92em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0px;
  padding: 0 12px;
  text-align: center;
  margin-top: 0;
  padding-bottom: 30px;
}

#step-4 .onboarding-title{
  margin-top: -6px;
}
.onboarding-step {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 0 auto;
  display: none;
  flex-direction: column;
  animation: fadeInStep 0.5s;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 0 0;
  align-items: center;
}
.onboarding-step.active {
  display: flex;
}
.onboarding-desc {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.1em;
  color: #ccab77;
  margin-bottom: 35px !important;
  margin-top: 0;
  text-align: center;
}

/* Ajuste grupos de inputs do passo de contato */
#step-2c .input-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
@media (max-width: 720px) {
  .onboarding-step {
    padding: 0 0 0 0;
    max-width: 100vw;
  }
}
.progress-bar {
  width: 100%;
  max-width: 720px;
  height: 8px;
  background: #313131;
  border-radius: 6px;
  margin-bottom: 32px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.progress-bar-inner {
  height: 100%;
  background: #ccab77;
  border-radius: 6px;
  width: 0%;
  transition: width 0.4s cubic-bezier(.23,1.01,.32,1);
}
.progress-steps {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 12px;
  left: 0;
}
.progress-step {
  color: #ccab77;
  background: #131313;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1.1em;
  border: 2px solid #313131;
  transition: background 0.3s, color 0.3s, font-weight 0.3s;
  font-family: 'Open Sans', Arial, sans-serif;
}
.progress-step.active, .progress-step.completed {
  background: #ccab77;
  color: #262626;
  border-color: #ccab77;
  font-weight: 700;
}
.input-group {
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

#step-4 .input-group input, #step-4 .input-group select{
  padding: 20px 20px !important;
}

.input-group input, .input-group select {
    background: #ffffff;
    border: 1.5px solid #313131;
    border-radius: 7px;
    color: #000000;
    font-size: 1.2em;
    padding: 20px 20px;
    transition: box-shadow 0.3s, border 0.3s;
    box-shadow: none;
    font-family: 'Open Sans', Arial, sans-serif;
    width: 100%;
    text-align: left;
}
.input-group input::placeholder, .input-group select::placeholder {
  color: #929292;
  opacity: 1;
  font-family: 'Open Sans', Arial, sans-serif;
}
.input-group input:focus, .input-group select:focus {
  outline: none;
  box-shadow: 0 0 12px 2px #ccab7733;
  filter: blur(0.5px);
  animation: inputFocusBlur 0.3s;
  border-color: #313131 !important;
}
.input-group input:focus {
  border-color: #313131 !important;
}
@keyframes inputFocusBlur {
  0% { box-shadow: 0 0 0 0 #ccab7700; filter: blur(0px); }
  100% { box-shadow: 0 0 12px 2px #ccab7733; filter: blur(0.5px); }
}
.btn-next {
  background: #ccab77;
  color: #262626;
  border: none;
  border-radius: 7px;
  font-size: 1.18em;
  font-weight: 700;
  padding: 21px 0px;
  margin-top: 8px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 #ccab7722;
  height: 64px;
  font-family: 'Lato', Arial, sans-serif;
  letter-spacing: 0.5px;
  width: 100%;
  max-width: 720px;
  display: block;
}
.btn-next:hover {
  background: #ccab77;
  color: #262626;
}

/* Botão fixo para steps 1 e 2 */
.btn-fixed {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 84px);
  max-width: 720px;
  z-index: 100;
  margin-bottom: 20px;
}

/* Esconder botão fixo quando estiver no step de planos */
#step-plans.active ~ .btn-fixed,
#step-plans.active + .btn-fixed {
  display: none !important;
}

/* Informações do plano selecionado */
.plan-selected-info {
  text-align: center;
  margin-bottom: 0px;
  width: 100%;
}

.plan-selected-info .onboarding-desc {
  margin-bottom: 10px !important;
  font-size: 1.1em;
  font-weight: 600;
}

.change-plan-link {
  margin: 0;
}

.change-plan-link a {
  color: #ccab77;
  text-decoration: none;
  font-size: 0.9em;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.change-plan-link a:hover {
  opacity: 1;
  text-decoration: underline;
}
.autocomplete-group {
  position: relative;
  width: 100%;
}
.autocomplete-list {
  position: absolute;
  top: calc(100% + 8px); /* logo abaixo do campo */
  left: 0;
  right: 0;
  width: 100%; /* mesma largura do campo */
  background: #ffffff; /* mesmo fundo do input */
  border: 1.5px solid #313131; /* mesma borda do input */
  border-radius: 7px; /* mesmo raio do input */
  z-index: 100; /* abaixo do container fixo (120) */
  max-height: 260px;
  overflow-y: auto;
  color: #000000; /* mesmo texto do input */
  list-style: none;
  margin: 0; /* sem margem lateral para alinhar com o campo */
  padding: 6px 0; /* espaçamento interno sutil */
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  display: none;
  font-size: 1.05em;
}
.autocomplete-list.visible {
  display: block;
}
.autocomplete-list li {
  padding: 14px 16px; /* altura confortável, alinhado ao input */
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid #efefef; /* separador leve no fundo branco */
}
.autocomplete-list li:hover, .autocomplete-list li.selected {
  background: #ccab77;
  color: #262626;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ccab77;
  margin: 24px auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.success-icon:after {
  content: '';
  display: block;
  width: 32px;
  height: 16px;
  border-left: 5px solid #262626;
  border-bottom: 5px solid #262626;
  position: absolute;
  left: 16px;
  top: 20px;
  transform: rotate(-45deg);
}
.sms-group {
  margin-top: 18px;
  margin-bottom: 18px;
  width: 100%;
}
.sms-inputs {
  display: flex;
  gap: 3px;
  justify-content: center;
}
.sms-digit {
  width: 38px;
  height: 48px;
  font-size: 2em;
  text-align: center;
  background: #131313;
  border: 1.5px solid #313131;
  border-radius: 7px;
  color: #ccab77;
  margin: 0 2px;
  transition: box-shadow 0.3s, border 0.3s;
  text-align: center !important;
  font-weight: 800;
  font-size: 21px !important;
}
.sms-digit:focus {
  outline: none;
  box-shadow: 0 0 12px 2px #ccab7733;
  filter: blur(0.5px);
  animation: inputFocusBlur 0.3s;
  border-color: #313131 !important;
}
@keyframes fadeInStep {
  0% { opacity: 0; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}
#card-payment {
  margin-bottom: 18px;
  width: 100%;
}
#card-payment .wrapper {
  margin: 0 auto 18px auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.card-list { display: none !important; }
.card-form__inner {
  background: #383838 !important;
  padding: 0 18px 18px 18px; /* remove padding-top */
}
/* Layout expiry + CVV lado a lado */
#cardExpiry, #cardCvv {
  width: 100%;
}
.card-form .card-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.card-input__input {
  width: 100%;
  height: 50px;
  border-radius: 7px;
  box-shadow: none;
  border: 1.5px solid #313131;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  padding: 12px 15px;
  background: #ffffff;
  color: #000000;
  font-family: 'Open Sans', Arial, sans-serif;
}
/* Inline validation feedback */
.card-input__input.input-error{
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 2px rgba(255,77,79,.15);
}
.field-error{
  color: #ff4d4f;
  font-size: 12px;
  margin: 6px 4px 0;
  text-align: left;
  width: 100%;
}
.onboarding-section-inputs {
  margin: 18px;
  padding: 0;
  background: transparent !important;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}
/* Comunicação */
.comm-style-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  /* Use only page scroll */
}
.comm-style-option{
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  color: #262626;
  padding: 22px;
  font-weight: 600;
  font-size: 1.15em;
  font-family: 'Open Sans', Arial, sans-serif;
  cursor: pointer;
}
.comm-style-option.selected{
  border-color: #ccab77;
  background: #ccab77;
  color: #262626;
  box-shadow: 0 0 0 3px rgba(204,171,119,0.25);
}
/* Cores */
.color-picker-vertical{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.color-swatch{
  width: 100%;
  padding-bottom: 60%;
  border-radius: 10px;
  border: 2px solid #313131;
  cursor: pointer;
  position: relative;
}
.color-swatch.selected{
  border-color: currentColor;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.8);
}
.color-swatch.selected::after{
  content: '✓';
  position: absolute;
  top: 6px;
  right: 6px;
  background: currentColor;
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Bandeiras dos cartões */
.card-brands {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 8px 0 14px 0;
  opacity: 0.9;
  padding-top: 30px;
  padding-bottom: 20px;

}
.card-brands img { height: 22px; filter: grayscale(0.1) contrast(1.1); }

/* Summary visual no pagamento */
.payment-summary { display: none; }

/* Payment method tabs */
.payment-tabs{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px;
  width:100%;
  margin: 0px 0 6px 0;
}
.payment-tab{
  display:flex;
  flex-direction: column;
  align-items:center;
  gap:0px;
  background:#1f1f1f;
  border:1px solid #2a2a2a;
  color:#fff;
  border-radius:10px;
  padding:6px 3px 15px;
  cursor:pointer;
  text-align:center;
}
.payment-tab .material-symbols-outlined,
.payment-tab .fa-solid,
.payment-tab .fa-regular,
.payment-tab .fa-brands{
  color:#ccab77;
  font-size: 30px;
  line-height: 1;
  margin-top: 5px;
}
.payment-tab .chip{
  display:inline-block;
  padding:7px 14px;
  border-radius:999px;
  background:#ccab77;
  color:#fff;
  font-size:.72rem;
  cursor:pointer;
  margin-left:6px;
  border:0;
  float:right;
  width:auto;
  margin-top:-39px;
  margin-bottom:15px;
  font-weight:700;
}

/* Chip anual com gradiente animado */
.payment-tab .chip.chip-anual{
  background: linear-gradient(90deg, #159049, #27AE60, #159049);
  background-size: 200% 100%;
  animation: chip-gradient 4s linear infinite;
  color: #fff;
  padding: 2px 5px;
  font-size: 17px;
  border-radius: 14px;
  padding-bottom: 6px;
  margin-top: -20px;
  margin-bottom: 3px;
}
.payment-tab .chip.chip-anual .exclusivo{
  font-size: 10.5px;
  width: 100%;
  float: left;
  margin-top: 2px;
  margin-bottom: 1px;
  letter-spacing: -0.3px;
  font-weight: 600;
}
.payment-tab .chip.chip-anual .off{
  font-size: 19px;
  float: left;
  width: 100%;
  letter-spacing: -0.3px;
  margin-top: 5px;
  font-weight: 800;
}

@keyframes chip-gradient{
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Ajuste de padding-top somente para os dois primeiros métodos */
.payment-tab[data-method="premium_mensal"],
.payment-tab[data-method="premium_bimonthly"]{
  padding-top: 29px;
}
.payment-tab .tab-text{ text-align:center }
.payment-tab .tab-text .method{ font-weight:800; margin-top:7px; font-size:1.7vh; margin-bottom:10px }
.payment-tab .tab-text .price{ display:flex; align-items:flex-end; justify-content:center; gap:2px; margin-top:2px }
.payment-tab[data-method="premium_anual_50off"] .tab-text .price{ margin-top:-5px }

/* Benefícios do plano anual (visível apenas no anual) */
#annual-benefits{
  background:#1f1f1f;
  border:1px solid #2a2a2a;
  border-radius:12px;
  padding:14px 16px;
  margin-bottom:10px;
  text-align:center;
  margin-top:30px;
}
#annual-benefits .ribbon{
  display:block;
  width:100%;
  background: linear-gradient(270deg, #0b5028, #176c3b, #17ae57);
  color:#fff;
  font-weight:800;
  font-family:'Lato', Arial, sans-serif;
  padding:7px 7px;
  border-radius:10px;
  box-shadow:0 6px 22px rgba(39, 174, 96, .18);
  margin-bottom:10px;
  text-transform: uppercase;
  font-size:19px;
}
#annual-benefits .benefits-title{
  font-family:'Lato', Arial, sans-serif;
  font-weight:800;
  letter-spacing:.2px;
  margin-bottom:0;
  color:#ccab77;
  font-size:20px;
  margin-top:6px;
  padding:0 30px;
}
#annual-benefits .price-badge{
  display:inline-flex;
  align-items:flex-end;
  gap:4px;
  padding:0 16px;
  border-radius:12px;
  background:transparent;
  border:0;
  box-shadow:none;
  margin:0 0 10px 0;
}
#annual-benefits .price-badge .cur{ font-size:.95rem; opacity:.9; color:#cfead8; }
#annual-benefits .price-badge .int{ font-size:2.2rem; font-weight:900; color:#ccab77; line-height:1; }
#annual-benefits .price-badge .dec{ font-size:1.05rem; font-weight:900; color:#ccab77; line-height:1.2; margin-left:-3px }
#annual-benefits .price-badge .per{ font-size:.95rem; color:#cfead8; margin-left:2px }
#annual-benefits .benefits-list{
  list-style:none;
  margin:8px 0 0 0;
  padding-left:0;
  color:#c9d2d9;
  font-size:.95rem;
  text-align:center;
}
#annual-benefits .benefits-list li{ margin:6px 0; }
#annual-benefits .price-emph{
  color:#2ECC71;
  font-weight:900;
  font-family:'Lato', Arial, sans-serif;
  font-size:1.25rem;
  letter-spacing:.2px;
}
#annual-benefits .benefits-wrap{
  display:grid;
  gap:6px;
  justify-items:center;
}
#annual-benefits .equiv-line{
  display:inline-flex;
  align-items:flex-end;
  gap:4px;
  margin: 4px 0 6px 0;
  font-family:'Lato', Arial, sans-serif;
  color:#cfead8;
  text-transform: uppercase;
}
#annual-benefits .equiv-line .cur{ font-size:.95rem; opacity:.9; }
#annual-benefits .equiv-line .int{ font-size:2.2rem; font-weight:900; color:#ccab77; line-height:1; }
#annual-benefits .equiv-line .dec{ font-size:1.55rem; font-weight:900; color:#ccab77; line-height:1.2; margin-left:-3px }
#annual-benefits .equiv-line .per{ font-size:.95rem; margin-left:2px }
.payment-tab .tab-text .price .cur{ font-size:1rem; opacity:.9; display:none }
.payment-tab .tab-text .price .int{ font-size:2.35rem; font-weight:800; color:#ffd25d; line-height:1; margin-top:5px }
.payment-tab .tab-text .price .dec{ font-size:1rem; font-weight:800; color:#ffd25d; line-height:1.2 }
.payment-tab .tab-text .period{ color:#c9c9c9; font-size:.95rem; margin-top:1px; font-family:'Lato'; width:100%; float:left; margin-bottom:0 }
.payment-tab .tab-text .period .chip{ display:inline-block; padding:4px 8px; border-radius:999px; background:#2c8463; color:#fff; font-size:.72rem; margin-left:6px; border:0 }
.payment-tab.active{
  border:2px solid #ccab77;
  box-shadow:0 0 0 2px rgba(204,171,119,0.25);
  background:#262626;
}
@media(max-width:680px){
  .payment-tabs{grid-template-columns:1fr}
}
@media (max-width: 720px){
  #pix-payment .pix-fields{
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Garantir botão avançar visível no primeiro step */
#step-1.onboarding-step.active ~ .fixed-action-container{
  display:block;
}
.fixed-action-container{
  position:fixed;
  left:0;
  right:0;
  bottom:16px;
  z-index:10000;
}
/* PIX container */
#pix-payment .pix-box{
  background:#1f1f1f;
  border:1px solid #2a2a2a;
  border-radius:12px;
  padding:0px 13px;
}
#pix-payment{
  display:block;
  width:100%;
  margin-top:10px;
}
/* Ocultar cartão por padrão; JS mostra quando necessário */
#card-payment{
  display:none;
}
#pixPayload{
  width:100%;
  text-align:center;
  float:left;
  margin-top:18px;
  margin-bottom:12px;
  font-family:'Lato';
}
label[for=pixPayload]{
  width:100%;
  text-align:center;
  float:left;
  margin-top:18px;
  margin-bottom:12px;
  font-family:'Lato';
}
#pix-payment .pix-fields{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:8px;
  margin-bottom:10px;
}
#btnGenPix.btn-next{
  background:#ccab77;
  color:#262626;
  border:none;
  border-radius:7px;
  font-size:1.0em !important;
  font-weight:700;
  padding:0px;
  margin-top:8px;
  margin-bottom:0 !important;
  cursor:pointer;
  transition:background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow:0 2px 8px 0 #ccab7722;
  height:70px;
  font-family:'Lato', Arial, sans-serif;
  letter-spacing:0.5px;
  width:100%;
  max-width:720px;
  display:block;
  padding-left:2px;
  padding-right:2px;
}
#pix-payment .pix-fields input{
  background:#ffffff;
  border:1.5px solid #313131;
  border-radius:7px;
  color:#000;
  font-size:1.2rem;
  padding:6px 0px;
  margin-top:9px;
  font-family:'Lato';
  padding-left:10px;
}
#pix-payment .pix-subtabs{
  display:flex;
  gap:8px;
  margin-bottom:8px;
  margin-top:30px;
}
#pix-payment .pix-subtab{
  background:#1f1f1f;
  border:1px solid #2a2a2a;
  color:#fff;
  padding:18px 22px;
  border-radius:8px;
  cursor:pointer;
  font-weight:700;
}
#pix-payment .pix-subtab.active{
  border-color:#ccab77;
  background:#262626;
}
#pix-payment .pix-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
#pix-payment .pix-qr{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
#pix-payment .pix-qr img{
  width: 260px;
  height: 260px;
  object-fit: contain;
  background:#fff;
  border-radius:8px;
  display:block;
  margin:0 auto;
}
#pix-payment .pix-hint{margin-top:8px; color:#c9c9c9; font-size:.9rem; text-align:center}
#pix-payment .pix-payload textarea{
  width:100%;
  min-height:120px;
  border-radius:8px;
  padding:10px;
  border:1px solid #2a2a2a;
  background:#131313;
  color:#fff;
  font-family:'Open Sans', Arial, sans-serif;
}
#pix-payment .pix-note{margin-top:10px; color:#c9c9c9; font-size:.9rem; text-align:center}
#pix-payment .pix-details{ margin-top:100px; color:#c9c9c9; font-size:.9rem }
#pix-payment .pix-details .pix-progress{
  width:100%;
  height:8px;
  border-radius:999px;
  background:#2a2a2a;
  overflow:hidden;
  margin: 10px 0 30px 0;
}
#pix-payment .pix-details .pix-progress .bar{
  width:30%;
  height:100%;
  background:#ccab77;
  border-radius:999px;
  animation: pixIndeterminate 1.2s linear infinite;
}
@keyframes pixIndeterminate{
  0%{ transform: translateX(-100%) }
  100%{ transform: translateX(400%) }
}
@media(max-width:720px){
  #pix-payment .pix-grid{ grid-template-columns:1fr }
  #pix-payment .pix-qr{ display:none }
  #pix-payment .pix-fields{ grid-template-columns: 1fr; }
}

/* PIX result loader */
#pixResult .pix-loader{
  display:block;
  text-align:center;
  color:#c9c9c9;
  padding:10px 0;
}
/* Loading fora do resultado */
#pixLoading{
  display:block;
  text-align:center;
  color:#c9c9c9;
  padding:16px 0;
}

/* Inverted style for the generator button after click */
#btnGenPix.inverted{
  background:#262626 !important;
  color:#ccab77 !important;
  border:1px solid #ccab77 !important;
}

/* PIX - botão Já paguei */
#btnPixPaid{
  margin-top:14px;
  width:50%;
  margin-left:25%;
  background:#343333;
  color:#ccab77;
  border:1px solid #ccab77;
}
/* Grid overrides for requested breakpoints */
@media (min-width: 380px){
  .payment-tabs{ grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 680px){
  .payment-tabs{ grid-template-columns: 1fr 1fr 1fr; }
}
.payment-summary .summary-item {
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.payment-summary .summary-item.promo {
  grid-column: 1 / -1;
  background: #262626;
  border: 1px solid #3e3e3e;
  cursor: pointer;
}
.payment-summary .summary-item.promo .price{ margin: 6px 0; }
.payment-summary .summary-item.promo .price .was{ color: #c5c5c5; opacity: .9; text-decoration: line-through; font-weight: 600; font-size: 1.1rem; font-family: 'Lato', Arial, sans-serif; }
.payment-summary .summary-item.promo .price .now{ margin-top: -5px; color: #fff; font-weight: 600; font-family: 'Lato', Arial, sans-serif; font-size: 1.7rem; line-height: 1.1; margin-bottom: 0; }
.payment-summary .summary-item.promo .price .now .prefix{ color: #ccab77; font-weight: 500; font-size: 1.02rem; margin-right: 6px; }
.payment-summary .summary-item.promo .price .now .value{ color: #ccab77; font-size: 2rem; }
.payment-summary .summary-item.promo .first-label{ color: #ccab77; font-weight: 600; margin-top: -10px; font-size: 16px; }
.payment-summary .summary-item.promo .first-value{ color: #ccab77; font-weight: 900; font-family: 'Lato', Arial, sans-serif; font-size: 2.8rem; line-height: 1.1; margin-bottom: 0px; margin-top: -11px; }
.summary-item .icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #2a2a2a;
  color: transparent;
  font-weight: 800;
  margin-bottom: 2px;
}
.summary-item .text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.summary-item .title { font-size: 0.78rem; color: #9a9a9a; }
.summary-item .value { font-size: 1rem; color: #ffffff; font-weight: 700; }
.summary-item .value.big { font-size: 1.3rem; color: #fff; font-weight:500; }
.summary-item .badge { font-size: 0.72rem; color: #ccab77; margin-top: 2px; }

@media (max-width: 560px) {
  .payment-summary { grid-template-columns: 1fr 1fr; }
}
/* Switch de Planos */
.plan-switch {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
  justify-content: center;
}
.plan-option {
  background: #222;
  border: 2px solid #313131;
  border-radius: 12px;
  padding: 24px;
  width: 280px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.plan-option .cancel-highlight {
  margin-top: 10px;
  background: rgba(76,175,80,0.12);
  border: 1px dashed #4CAF50;
  border-radius: 8px;
  color: #d5f5dd;
  padding: 8px 10px;
}
.plan-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(204, 171, 119, 0.3);
}
/* Plano selecionado com borda verde e ícone de check - CSS mais específico */
.plan-option.selected,
.plan-option.selected:hover {
  border-color: #4CAF50 !important;
  background: rgba(76, 175, 80, 0.1) !important;
  position: relative;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3) !important;
}

.plan-option.selected::after {
  content: '✓' !important;
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  background: #4CAF50 !important;
  color: white !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: bold !important;
  font-size: 14px !important;
  z-index: 10 !important;
}

.plan-option.selected .price-promo,
.plan-option.selected:hover .price-promo {
  color: #4CAF50 !important;
}

.plan-option.selected .plan-features li,
.plan-option.selected:hover .plan-features li {
  color: #4CAF50 !important;
}

.plan-option.selected .plan-header h3,
.plan-option.selected:hover .plan-header h3 {
  color: #4CAF50 !important;
}
.plan-header h3 {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.4em;
  margin: 0 0 16px 0;
  text-align: center;
}
.plan-price {
  text-align: center;
  margin-bottom: 8px;
}
.price-original {
  text-decoration: line-through;
  color: #929292;
  font-size: 0.9em;
  margin-right: 8px;
}
.price-promo {
  font-size: 1.8em;
  font-weight: 700;
  color: #ffd25d;
}
.plan-option.selected .price-promo {
  color: #262626;
}
.price-period {
  font-size: 1em;
  color: #929292;
}
.price-subtitle {
  text-align: center;
  font-size: 0.9em;
  color: #929292;
  margin: 0;
}
.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}
.plan-features li {
  padding: 8px 0;
  font-size: 0.95em;
  color: #fff;
}
.plan-option.selected .plan-features li {
  color: #262626;
}
/* Termos e Condições */
.terms-conditions {
  text-align: center;
  /*margin: 30px 0;*/
  padding: 20px;
  /*background: rgba(204, 171, 119, 0.1);*/
  border-radius: 8px;
}
.terms-conditions p {
  margin: 0;
  color: #fff;
  font-size: 0.85em;
}
.terms-conditions a {
  color: #ccab77;
  text-decoration: none;
  font-weight: 600;
}
.terms-conditions a:hover {
  text-decoration: underline;
}
/* Rodapé Seguro */
.secure-footer {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #313131;
}
.secure-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #929292;
  font-size: 0.9em;
  text-align: left;
}
.secure-icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}
/* Reviews compactos */
.reviews {
  margin-top: 80px;
  display: grid;
  gap: 10px;
}

/* Loading step (configurando conta) */
#step-5 {
  min-height: 70vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#step-5.onboarding-step.active { display: flex !important; }
#step-5 .onboarding-title { text-align: center; }
#step-5 .onboarding-desc { text-align: center; font-size: 1.24em; min-height: 1.8em; }
.loading-anim {
  width: 56px;
  height: 56px;
  border: 6px solid #2a2a2a;
  border-top-color: #ccab77;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px auto;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.review-item {
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 12px;
}
.review-top {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}
.review-top .stars { color: #ffd25d; font-weight: 700; }
.review-top .name { color: #d0d0d0; font-size: 0.9rem; }
.review-top .subname { color: #9c9c9c; font-size: 0.75rem; }
.review-item .comment { color: #bdbdbd; font-size: 0.87rem; line-height: 1.3; }
/* Responsividade para planos */
@media (max-width: 768px) {
  .plan-switch {
    flex-direction: column;
    align-items: center;
  }
  .plan-option {
    width: 100%;
    max-width: 320px;
  }
}

/* Step de planos - escondido por padrão */
#step-plans {
  display: none !important;
}

#step-plans.active {
  display: block !important;
}

/* Container fixo com gradiente para o botão avançar (steps 1 e 2) */
.fixed-action-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 42px 20px 42px;
  display: none; /* controlado via JS */
  z-index: 120; /* acima do autocomplete */
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .fixed-action-container {
    padding: 14px 16px 20px 16px;
  }
}
@media (max-width: 720px) {
  .fixed-action-container {
    padding: 14px 4vw 20px 4vw;
  }
}
.fixed-action-container .fixed-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(23,23,23,0) 0%, rgba(23,23,23,0.6) 35%, rgba(23,23,23,0.9) 70%, #171717 100%);
  pointer-events: none;
  z-index: -1;
}
.fixed-action-container .btn-next {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

/* Ajustar z-index do autocomplete para ficar abaixo do container fixo */
/* já definido acima */
