.outer-border {
  background: linear-gradient(219.04deg, #DD1D25 0.12%, #323232 50%);
  padding: 1px; 
  border-radius: 10px;
  width: 540px;
  height: 600px;
}

.register-box {
  position: relative;
  background: var(--dark-bg);
  border-radius: 8px;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  overflow: hidden;
}


.register-titulo-text {
    font-family: 'Satoshi';
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -1.2px;
}

.text-input-login {
    font-family: 'Satoshi';
    font-style: normal;
    font-size: 18px;
    line-height: 105%;
    letter-spacing: -0.04em;

    color: #868686;
}

.input-login {
    background: #131415;
    border-radius: 100px;
    border: 1px solid #323232;
    padding: 10px 15px;
}

.input-login::placeholder {
    font-family: 'Satoshi';
    font-style:normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 105%;
    letter-spacing: -0.04em;
    color: #868686;
}

.text-recuperar-senha-login {
    font-family: 'Satoshi';
    font-style: medium;
    font-weight: 400;
    font-size: 16px;
    line-height: 105%;
    text-align: right;
    letter-spacing: -0.04em;

    color: #777777;
    text-decoration: none;
}

.btn-register-login {
    background: #DD1D25;
    border-radius: 100px;
    font-family: 'Satoshi';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.btn-register-login:hover {
    background: #ad1616;
    color: #bababa;
}

.hr-login {
    width: 38%;
}

.opcoes-de-login {
    text-wrap-mode: nowrap;
}
.ellipse7 {
    position: absolute;
    width: 288px;
    height: 288px;
    left: 330px;
    background: rgba(255, 29, 38, 0.3);
    mix-blend-mode: plus-lighter;
    filter: blur(100px);
}

.ellipses {
  position: absolute;
  right: 2%;
  top: -10%;
  background: radial-gradient(circle at center, rgba(255, 0, 0, 0.3), transparent 70%);
}

.ellipse8 {
    position: absolute;
    width: 140px;
    height: 140px;
    left: 473px;
    background: #FF1D26;
    mix-blend-mode: plus-lighter;
    filter: blur(75px);
}

.ellipse9 {
    position: absolute;
    width: 62px;
    height: 62px;
    right: -41px;

    background: rgba(255, 250, 250, 0.5);
    mix-blend-mode: plus-lighter;
    filter: blur(20px);
}

.link-register {
    text-decoration: none;
}

.text-opcoes-login {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 105%;
    letter-spacing: -4%;
    color: #868686;
}

.btn-apple {
    background-color: #FFFFFFE5;
    color: #121212;
    width: 100%;
    font-size: 25px;
    border-radius: 100px;
}

.outer-border-criar-conta {
  width: 540px;
  height: 75px;  
  background:  linear-gradient(219.04deg, #752A2D 0.12%, #323232 50%);
  padding: 1px; 
  border-radius: 10px;
}

.section-criar-conta {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: var(--dark-bg);
}

.btn-criar-conta {
    background-color: #2C2C2C;
    color: #FFFFFF;
    border-radius: 100px;
}

.text-criar-conta {
    font-weight: 500;
    font-size: 18px;
    color: #B9B9B9;
}

.btn-nav-plus {
    background-color: #DD1D25;
    color: #FFFFFF;
    border-radius: 100px;
}

.form-user-create,
.form-styled {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.form-user-create h1,
.form-styled h1 {
    font-weight: 600;
    color: #fff;
}

.form-user-create p,
.form-styled p {
    color: #bbb;
    font-size: 0.95rem;
}

.form-user-create .form-control,
.form-styled .form-control {
    background: #1c1c1c;
    color: #fff;
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 1rem;
}

.form-user-create .form-control:focus,
.form-styled .form-control:focus {
    background: #262626;
    border-color: #00c896;
    box-shadow: 0 0 0 0.2rem rgba(0, 200, 150, 0.25);
    color: #fff;
}

.form-user-create label,
.form-styled label {
    color: #aaa;
}

.form-user-create button,
.form-styled button {
    border-radius: 2rem;
    color: #FFFFFF;
    background-color: #DD1D25;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-user-create .link-login,
.form-styled .link-login {
    color: #00c896;
    text-decoration: none;
    font-weight: 500;
}

.form-user-create .link-login:hover,
.form-styled .link-login:hover {
    text-decoration: underline;
}

.modal-recover-overlay {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: none; /* mostrado via JS */
  align-items: center;
  justify-content: center;
  z-index: 1050;
  padding: 1.5rem;
}

.modal-recover-overlay.is-open {
  display: flex;
}

/* Modal box */
.modal-recover {
  width: 100%;
  max-width: 520px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  padding: 1.75rem;
  color: #fff;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.modal-recover-overlay.is-open .modal-recover {
  transform: translateY(0);
  opacity: 1;
}

.modal-recover .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.modal-recover .modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.modal-recover .modal-subtitle {
  font-size: 0.92rem;
  color: #cfcfcf;
  margin-top: 0.15rem;
}

/* Close button */
.modal-recover .btn-close-modal {
  background: transparent;
  border: none;
  color: #bbb;
  font-size: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
}
.modal-recover .btn-close-modal:hover {
  background: rgba(255,255,255,0.03);
  color: #fff;
  transform: scale(1.04);
}

.modal-recover .modal-body {
  margin-top: 0.5rem;
}
.modal-recover .form-floating {
  margin-bottom: 1rem;
}
.modal-recover .form-control {
  width: 100%;
  background: rgba(255,255,255,0.03);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.6rem;
  padding: 0.9rem 0.9rem;
  font-size: 0.95rem;
  transition: all 0.22s ease;
}
.modal-recover .form-control::placeholder {
  color: rgba(255,255,255,0.35);
}
.modal-recover .form-control:focus {
  outline: none;
  border-color: #e50914;
  box-shadow: 0 0 0 0.18rem rgba(229,9,20,0.14);
  background: rgba(255,255,255,0.04);
}

.modal-recover .help-text {
  font-size: 0.88rem;
  color: #bfbfbf;
  margin-bottom: 0.75rem;
}

.modal-recover .modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  align-items: center;
}

.modal-recover .btn-primary {
  background: #e50914;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.modal-recover .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(229,9,20,0.28);
}

.modal-recover .btn-secondary {
  background: transparent;
  color: #ddd;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 9px 14px;
  border-radius: 999px;
}

.modal-recover .modal-link {
  color: #00c896;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}
.modal-recover .modal-link:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .modal-recover { padding: 1.25rem; border-radius: 12px; }
  .modal-recover .modal-title { font-size: 1.05rem; }
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.nav-register {
    background-color: #161616;
    width: 750px;
    height: 53px;
    border-radius: 100px;
    border: 1px solid #FFFFFF0D;
    padding: 0 14px;
}

.nav-link-register.active {
    background-color: #2C2C2C !important;
    min-width: fit-content;
    margin: 0 10px;
    width: 83px;
    height: 31px;
    border-radius: 100px;
}

.nav-link-register {
    color: #BFBFBF !important;
    font-weight: 700;
}

.pricing {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
}

.pricing h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
}

.plans {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.plan {
  position: relative;
  background: #141414;
  border-radius: 14px;
  padding: 30px 24px;
  flex: 1;
  min-width: 260px;
  max-width: 300px;
  text-align: left;
  border: 1px solid #2b2b2b;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.plan.active {
  border: 1px solid #c0161e;
  background: linear-gradient(145deg, #1b1b1b 70%, rgba(192, 22, 30, 0.2));
  box-shadow: 0 0 20px rgba(192, 22, 30, 0.2);
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.plan-logo {
  width: 25px;
  height: 30px;
}

.plan h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.plan .subtitle {
  display: block;
  font-size: 0.8rem;
  color: #aaa;
}

.plan-plus-subtitle {
    line-height: 2px;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 28.5px 0 20px;
}

.price.price-plus {
    margin: 15px 0 20px;
}

.price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #aaa;
}

.lista-tela-login ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-tela-login ul li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #7a7a7a;
  margin-bottom: 8px;
}

.lista-tela-login ul li::before {
  content: "✕";
  color: #555;
  font-weight: bold;
  margin-right: 8px;
  font-size: 0.8rem;
}

.lista-tela-login ul li.checked {
  color: #fff;
}

.lista-tela-login ul li.checked::before {
  content: "✔";
  color: #e8353e;
  font-weight: bold;
}

.ellipse7-plans {
    position: absolute;
    width: 140px;
    height: 160px;
    left: 330px;
    background: rgba(255, 29, 38, 0.3);
    mix-blend-mode: plus-lighter;
    filter: blur(100px);
}

.ellipses-plans {
  position: absolute;
  right: 176%;
  top: 1%;
  background: radial-gradient(circle at center, rgba(255, 0, 0, 0.3), transparent 70%);
}

.ellipse8-plans {
    position: absolute;
    width: 250px;
    height: 200px;
    left: 445px;
    top: -88px;
    background: #FF1D26;
    mix-blend-mode: plus-lighter;
    filter: blur(75px);
}

.ellipse9-plans {
    position: absolute;
    width: 62px;
    height: 62px;
    left: 504px;
    top: -38px;
    background: rgba(255, 250, 250, 0.8);
    mix-blend-mode: plus-lighter;
    filter: blur(20px);
}

.visible {
    visibility: visible;
}

.hidden {
    visibility: hidden;
}

.next, .prev {
    width: 300px;
    color: #FFFFFF;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
}

.next {
    margin-left: 20px;
    background-color: #DD1D25;
}

.prev {
    background-color: #131415;
}

.form-container-dados-pessoais, .form-container-dados-pessoais * { box-sizing: border-box; }

.form-container-dados-pessoais {
  width: 720px;
  background: #151515;
  border-radius: 8px;
  padding: 30px 36px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 1px 0 rgba(255,255,255,0.02) inset;
}

.title-dados-pessoais {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 18px 0;
  color: #ffffff;
}

.social-login-dados-pessoais {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.social-btn-dados-pessoais {
  flex: 1;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #efefef;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform .12s ease;
}

.social-btn-dados-pessoais:active { transform: translateY(1px); }

.social-btn-dados-pessoais.apple img {
  height: 18px;
  width: auto;
  display: block;
}

/* Divider com linhas e texto centralizado */
.divider-wrap-dados-pessoais {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 22px;
}

.divider-line-dados-pessoais {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
}

.divider-text-dados-pessoais {
  font-size: 12px;
  color: #9b9b9b;
  padding: 0 6px;
}

.form-dados-pessoais {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field-dados-pessoais {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.label-dados-pessoais {
  font-size: 12px;
  color: #bfbfbf;
  font-weight: 400;
  margin-left: 6px;
}

.input-dados-pessoais {
  height: 44px;
  background: #303030;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 999px;
  padding: 10px 18px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .12s ease, box-shadow .12s ease;
}

.input-dados-pessoais::placeholder { color: #8a8a8a; }

.input-dados-pessoais:focus {
  border-color: rgba(255,64,64,0.9);
  box-shadow: 0 0 0 4px rgba(255,64,64,0.06);
}

.checkboxes-dados-pessoais {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.checkbox-dados-pessoais {
  accent-color: #2C2C2C;   
}

.checkbox-dados-pessoais {}

.checkbox-label-dados-pessoais {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #cfcfcf;
}

.checkbox-label-dados-pessoais input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #e74a4a;
}

/* Buttons rodapé */
.buttons-dados-pessoais {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.btn-outline-dados-pessoais {
  min-width: 180px;
  height: 40px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: #f7f7f7;
  padding: 0 18px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary-dados-pessoais {
  min-width: 220px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: li
}

.container-confirmacao-email {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1200px;
}

.card-confirmacao-email {
  background-color: #111;
  border-radius: 8px;
  padding: 28px 36px 32px;
  width: 100%;
  box-shadow: 0 0 0 1px #222;
}

.titulo-confirmacao-email {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.subtitle-confirmacao-email {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 24px;
}

.subtitle-confirmacao-email span {
  color: #fff;
}

.code-inputs-confirmacao-email {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.code-inputs-confirmacao-email input {
  width: 44px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  border: none;
  border-radius: 6px;
  background-color: #0a0a0a;
  color: #fff;
  outline: 1px solid #333;
  transition: outline 0.2s, box-shadow 0.2s;
}

.code-inputs-confirmacao-email input:focus {
  outline: 1px solid #d32f2f;
  box-shadow: 0 0 4px #d32f2f;
}

.separator-confirmacao-email {
  font-size: 22px;
  color: #999;
  margin: 0 2px;
}

.hint-confirmacao-email {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 26px;
}

.hint-confirmacao-email a {
  color: #fff;
  text-decoration: none;
}

.hint-confirmacao-email a:hover {
  text-decoration: underline;
}

.buttons-confirmacao-email {
  display: flex;
  justify-content: center;
  gap: 12px;
}

button.cancelar-confirmacao-email,
button.confirmar-confirmacao-email {
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 24px;
  cursor: pointer;
  border: none;
  transition: 0.2s;
  font-weight: 500;
}

.cancelar-confirmacao-email {
  background-color: #000;
  color: #fff;
  border: 1px solid #333;
}

.cancelar-confirmacao-email:hover {
  background-color: #1a1a1a;
}

.confirmar-confirmacao-email {
  background-color: #d32f2f;
  color: #fff;
}

.confirmar-confirmacao-email:hover {
  background-color: #b71c1c;
}

.card-resumo {
  background-color: #111;
  border-radius: 12px;
  width: 800px;
  padding: 20px 24px 16px;
  box-shadow: 0 0 0 1px #222;
}

.header-resumo-plano {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.icon-resumo-plano {
  width: 14px;
  height: 14px;
}

.titulo-resumo-plano {
  font-size: 15px;
  font-weight: 500;
}

.linha-resumo {
  height: 1px;
  background-color: #2a2a2a;
  margin: 10px 0;
}

.conteudo-resumo p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 4px;
}

.footer-resumo {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
}

.caixa-total-resumo {
  position: relative;
  background-color: #111;
  border-radius: 8px;
  padding: 14px 20px;
  text-align: center;
  z-index: 0;
}

.caixa-total-resumo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 0, 0, 0.5) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.total-resumo {
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}

.subtexto-resumo {
  font-size: 12px;
  color: #aaa;
}

.ellipse7-resume {
    position: absolute;
    width: 138px;
    height: 113px;
    left: 402px;
    top: 30px
    background: rgba(255, 29, 38, 0.3);
    mix-blend-mode: plus-lighter;
    filter: blur(100px);
}

.ellipses-resume {
  position: absolute;
  right: 72%;
  top: -10%;
  background: radial-gradient(circle at center, rgba(255, 0, 0, 0.3), transparent 70%);
}

.ellipse8-resume {
    position: absolute;
    width: 150px;
    height: 170px;
    left: 445px;
    top: -30px;
    background: #FF1D26;
    mix-blend-mode: plus-lighter;
    filter: blur(75px);
}

.ellipse9-resume {
    position: absolute;
    width: 62px;
    height: 62px;
    left: 504px;
    top: -38px;
    background: rgba(255, 250, 250, 0.8);
    mix-blend-mode: plus-lighter;
    filter: blur(20px);
}

/*Método de pagamento*/
.btn-payment, .btn-fatura {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    background-color: #1c1c1c;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.btn-payment.active, .btn-fatura.active {
    background-color: #d32f2f;
    color: #fff;
}

.btn-payment:hover, .btn-fatura:hover {
    background-color: #2a2a2a;
}

.input-cupom {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: none;
    background-color: #1c1c1c;
    color: #ccc;
    font-size: 14px;
}

.input-cupom::placeholder {
    color: #777;
}

.btn-group {
    display: flex;
    gap: 10px;
}

