/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: white;
  color: #555;
  line-height: 1.6;
}

.header {
  text-align: left;
  background: white;
  padding: 8px 0 5px 15px;
  margin: 0 auto;
  max-width: 500px;
}

.header img {
  width: 45%;
}

.logo {
  max-width: 220px;
}

.container-form {
   background: #f7f9fc; 
}

.container {
  max-width: 500px;
  margin: auto;
  text-align: center;
  padding: 20px 20px 40px;
  min-height: 820px;
}

.intro h1 {
  font-size: 25px;
  margin: 20px 0;
  color: #002d6b;
  line-height: 1.3;
  text-align: left;
}

.benefits {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.benefits li {
  margin: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px; /* espaço entre ícone e texto */
}

.benefits i {
  color: #002d6b; /* cor dos ícones (mesma do tema) */
  font-size: 14px;
}

/* Barra de progresso */
/* Barra de progresso */
.progressbar {
  --progress-offset: 50px;      /* ajuste este valor se quiser mudar o padding lateral */
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 30px;
  padding: 0 var(--progress-offset); /* usa a variável também para padding */
}

/* Linha de fundo (entre as bolinhas) */
.progressbar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--progress-offset);
  right: var(--progress-offset);
  height: 3px;
  background: #ccc;
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 2px;
}

/* Linha preenchida (controlada via JS) */
.progress-fill {
  position: absolute;
  top: 50%;
  left: var(--progress-offset);
  height: 3px;
  width: 0px; /* começa em 0, JS atualiza para px */
  background: #002d6b;
  transform: translateY(-50%);
  border-radius: 2px;
  transition: width 0.4s ease;
  z-index: 1;
}

/* Bolinhas */
.progressbar .step {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  background: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.progressbar .step.active {
  background: #002d6b;
}

/* Cards de opções */
.form-step h2 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #002d6b;
}
.options {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 25px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 13px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.option-card .icon {
  flex: 0 0 25px;
  height: 25px;
  background: #002d6b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 400;
  font-size: 15px;
}

.option-card p {
  font-weight: 600;
  flex: 1;                   /* texto ocupa o espaço restante */
  text-align: left;          /* texto alinhado à esquerda */
  line-height: 1.6;
  font-size: 13px;
  color: #333;
}

.option-card.selected {
  background: #f1f3f5;
  border: 2px solid #002d6b;
}

.option-card.selected .icon {
  background: #ddd;
  color: #002d6b;
}

/* Botão */
.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  background: #002d6b;
  color: #fff;
  border: none;
  padding: 15px;
  width: 100%;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #002d6b;
}

/* Esconde etapas que não estão ativas */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* Input */
.input-group {
  margin: 20px 0;
}

.input-group input {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #ccc;
  font-size: 1rem;
}

.input-group input:focus {
  outline: none;
  border-color: #002d6b;
}

/* Avatar */
.profile {
  text-align: center;
  margin: 20px 0;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #002d6b;
  margin: 0 auto 10px;
  background: url('../../cdn-icons-png.flaticon.com/512/847/847969.png') no-repeat center/cover;
}

#email-name {
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

#step3-email-name {
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

#step4-email-name {
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

#email-full {
  font-style: italic;
  color: #333;
  font-weight: 300;
  font-size: 14px;
}

#step3-email-full {
  font-style: italic;
  color: #333;
  font-weight: 300;
  font-size: 14px;
}

#step4-email-full {
  font-style: italic;
  color: #555;
  font-weight: 300;
  font-size: 14px;
}

/* Caixa de progresso */
.progress-box {
  margin: 20px auto;
  padding: 15px;
  background: #000;
  color: #fff;
  border-radius: 10px;
  width: 90%;
  font-size: 10px;
  line-height: 1.5;
  overflow: hidden;
}

.progress-line {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.progress-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.progress-dots {
  display: inline-block;
  animation: dots 1s infinite;
}

@keyframes dots {
  0% { content: ""; }
  33% { content: "."; }
  66% { content: ".."; }
  100% { content: "..."; }
}

/* Esconde etapas que não estão ativas */
.step-content {
  display: none;
}
.step-content.active {
  display: block;
}

/* Esconde os resultados até serem ativados */
.hidden {
  display: none;
}

#imagem-email {
  width: 150px;
  margin-bottom: 15px;  
}

#email-title {
  font-size: 15px;
  font-weight: 600;
  color: #002d6b;
}

/* Input estilizado */
#email-input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin: 15px 0;
  font-size: 16px;
}

#email-input:focus {
  outline: none; 
  border: 1px solid #002d6b;
}

/* Botão principal */
.btn-primary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  display: block;
  width: 100%;
  padding: 12px;
  background: #002d6b; /* azul turquesa */
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 10px;
}
.btn-primary:hover {
  background: #002d6b;
}

/* Link voltar */
.back-link {
  text-align: center;
  color: #002d6b;
  text-decoration: underline;
  cursor: pointer;
  font-size: 12px;
}
/* Avatar com ícone do Font Awesome */
.profile-pic {
  width: 53px;               /* largura fixa */
  height: 53px;              /* altura fixa (igual à largura) */
  border-radius: 50%;         /* deixa redondo */
  border: 2px solid #198754;  /* cor e espessura da borda */
  display: flex;              /* centraliza o ícone */
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  background: #f9f9f9;        /* fundo (opcional) */
}

.profile-pic i {
  font-size: 49px;   /* tamanho do ícone */
  color: #ccc;     /* cor do ícone */
  margin-left: 1px;
}

/* Título de sucesso */
.tel-title {
  margin: 20px 0 10px;
  font-size: 15px;
  font-weight: bold;
  color: #002d6b;
  text-align: center;
}

.step3-text {
  font-size: 14px;   /* diminui o tamanho */
  color: #555;       /* cor mais suave que o preto */
  line-height: 1.6;  /* deixa mais respirado */
  margin-bottom: 10px;
}

.step3-text-p2 {
  font-size: 14px;   /* diminui o tamanho */
  color: #555;       /* cor mais suave que o preto */
  line-height: 1.6;  /* deixa mais respirado */
  margin-bottom: 10px;
}

/* Input telefone */
#phone-input {
  display: block;
  margin: 15px auto;
  padding: 12px;
  width: 80%;
  max-width: 350px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  text-align: center;
}

::placeholder {
  font-size: 14px;
  color: #888;
}

input, textarea {
  color: #002d6b;           /* cor do texto digitado */
  font-size: 14px !important;       /* tamanho da fonte */
  font-weight: 500;      /* peso da fonte */
}

input:-webkit-autofill {
  -webkit-text-fill-color: #002d6b !important;  /* cor do texto */
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important; /* fundo branco */
  font-size: 14px !important;
  font-weight: 500;
}

#phone-input:focus {
  border-color: #002d6b;
}

/* Botão cadastrar */
.btn-register {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  display: block;
  margin: 15px auto;
  padding: 12px;
  width: 80%;
  max-width: 350px;
  font-size: 16px;
  font-weight: 500;
  background: #002d6b;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-register:hover {
  background: #002d6b;
}

/* Check no avatar */
.profile-pic {
  position: relative;
  font-size: 80px;
  color: #777;
}

.profile-check {
  position: absolute;
  top: 30px;
  right: -5px;
  background: #198754;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid #fff;
}

.profile-check i {
  font-size: 10px;
  color: white;
  margin-left: 0;
}

/* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.popup.hidden {
  display: none;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  width: 90%;
}

.popup-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #002d6b;
}

.popup-text {
  margin: auto;
  font-size: 14px;
  width: 90%;
  padding-bottom: 10px;
  line-height: 1.6;
  color: #555;
}

.btn-danger {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  display: block;
  width: 80%;
  padding: 10px;
  background: #d9534f;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 10px auto;
}

.btn-secondary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  display: block;
  width: 80%;
  padding: 10px;
  background: #ccc;
  color: #333;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 10px auto;
}

/* Feedback mensagem */
#phone-feedback {
  text-align: center;
  margin-top: 15px;
  font-weight: 400;
  font-size: 12px;
  font-style: italic;
}

.alert-icon {
  font-size: 40px;      /* tamanho do ícone */
  color: #e74c3c;       /* vermelho de alerta */
  margin-bottom: 15px;
  display: block;       /* garante que fique em linha própria */
  text-align: center;   /* centraliza horizontalmente */
}

/* Parte 2 da etapa 3 */
.alt-title {
  margin: 20px 0 10px;
  font-size: 15px;
  font-weight: bold;
  color: #002d6b;
  text-align: center;
}

#alt-email-input {
  display: block;
  margin: 15px auto;
  padding: 12px;
  width: 80%;
  max-width: 350px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  text-align: center;
}

#alt-email-input:focus {
  border-color: #002d6b;
}

#alt-email-feedback {
  text-align: center;
  margin-top: 15px;
  font-weight: 400;
  font-size: 12px;
  font-style: italic;
}

/* Etapa 4 textos */
.step4-text {
  margin: 10px 0;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  color: #555;
}

.success-title {
  margin: 20px 0 10px;
  font-size: 18px;
  font-weight: bold;
  color: #198754;
  text-align: center;
}

.btn-final {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  display: block;
  width: 100%;
  padding: 12px;
  background: #198754; /* azul turquesa */
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: 20px;
}

/* Botão desconto */
.btn-discount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  display: block;
  width: 100%;
  padding: 12px;
  background: #e53935; /* vermelho chamativo */
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 15px 0;
  text-align: center;
}

.btn-discount:hover {
  background: #c62828;
}

/* Última chance */
.discount-title {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
  color: #d32f2f;
  text-align: center;
}

.discount-text {
  margin: 10px 0;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
}

.price-old {
  text-align: center;
  color: #555;
  margin: 5px 0;
  text-decoration: line-through;
}

.price-new {
  text-align: center;
  color: #198754;
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
}

/* Progressbar "última chance" */
.progressbar.discount-mode .step.active {
  background: #e53935; /* vermelho */
}

.progressbar.discount-mode .progress-fill {
  background: #e53935;
}

.container-novo {
      max-width: 950px;
      margin: 0 auto;
      padding: 0 20px;
    }

.container-etapas {
      text-align: center;
    }
    
.container-etapas {
      background: #f3f3f3;
    }

    .container-etapas .etapas {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 40px;
      margin-top: 40px;
    }

    .passo-a-passo {
      padding-top: 25px;
      padding-bottom: 35px;
      background-color: #ffffff;
    }
    .passo-a-passo h2 {
      text-align: center;
      color: #002d6b;
      font-size: 20px;
      font-weight: 600;
    }
    
    /* Seção Passo a Passo */
    /* Container geral do passo a passo */
    .etapas {
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      gap: 20px;
      margin-top: 40px;
    }
    
    /* Cada retângulo de etapa */
    .etapa-passos {
      background: white;
      padding: 30px 20px;
      border-radius: 16px;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
      text-align: center;
      flex: initial;
      transition: transform 0.3s ease;
    }
    
    .etapa-passos:hover {
      transform: translateY(-5px);
    }
    
    /* Ícone */
    .etapa-passos .icone {
      font-size: 36px;
      color: #002d6b;
      margin-bottom: 15px;
    }
    
    /* Título e descrição */
    .etapa-passos h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #002d6b;
    }
    
    .etapa-passos p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
    }
    
        /* Seção de Depoimentos */
    .depoimentos {
      background-color: #f7f9fc;
      text-align: center;
      padding-top: 25px;
      padding-bottom: 35px; 
    }
    
    .depoimentos h2 {
      margin-bottom: 40px;
      color: #002d6b;
      font-size: 20px;
      font-weight: 600;
      margin-top: 20px;
    }
    
    .slider-container {
      overflow: hidden;
      position: relative;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    
    .slide {
      min-width: 100%;
      box-sizing: border-box;
    }
    
    .slide img.foto-depoimento {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }
    
    .slide .estrelas {
      color: #ffc107;
      font-size: 20px;
      margin-bottom: 10px;
    }
    
    .slide p {
      font-size: 16px;
      font-style: italic;
      margin: 0 auto 10px;
      max-width: 600px;
      color: #555;
      line-height: 1.6;
    }
    
    .slide span {
      display: block;
      font-weight: bold;
      color: #002d6b;
      margin-top: 10px;
    }
    
    /* FAQ */
    
      .faq-item {
      max-width: 600px;
      margin: 0 auto 0px auto;
      text-align: left;
      padding: 15px 0;
      border-bottom: 1px solid #ddd;
    }
    
    .faq-item h4 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #268744;
    }
    
    .faq-item p {
      font-size: 14px;
      color: #555;
      margin: 20px 0;
      line-height: 1.6;
      
    }
    
    .faq {
      background: white;
      padding: 25px 20px 35px;
    }
    
    .faq h2 {
      text-align: center;
      color: #002d6b;
      font-size: 20px;
      font-weight: 600;
      margin-top: 20px;
    }
    
    .faq-pergunta {
      font-size: 16px;
      color: #002d6b;
      cursor: pointer;
      margin-bottom: 0;
      position: relative;
      padding-right: 25px;
      font-weight: 600;
      line-height: 1.6;
      margin-top: 20px;
    }
    
    .faq-pergunta::after {
      content: "+";
      position: absolute;
      right: 0;
      top: 0;
      font-size: 20px;
      transition: transform 0.3s ease;
    }
    
    .faq-item.ativo .faq-pergunta::after {
      content: "-";
      transform: rotate(180deg);
    }
    
    .faq-resposta {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    
    .faq-item.ativo .faq-resposta {
      max-height: 700px;
    }
        .rodape-site {
      background-color: #092347;
      padding: 35px 10px 25px;
      font-size: 10px;
      font-weight: 400;
      color: white;
      text-align: center;
      width: 100%;
    }
    
    .rodape-site p {
        margin: 10px 0;
    }
    
    .rodape-site a {
      color: white;
      font-size: 10px;
      font-weight: 600;
      text-decoration: none;
      margin: 0 5px;
    }
    
    .rodape-site a:hover {
      text-decoration: underline;
    }

@media (min-width: 768px) {
  .header img {
  width: 40%;
  }
  .container {
  padding: 20px 20px 80px;
  }
  .intro h1 {
  font-size: 30px;
  }
  .benefits {
    font-size: 16px;
  }
  .step3-text {
  width: 85%;
  margin: 10px auto;
  }
  .step3-text-p2 {
  width: 80%;
  margin: 10px auto;
  }
  .step4-text {
  width: 85%;
  margin: 10px auto;
  }
  .discount-text {
  width: 85%;
  margin: 10px auto;
  }
  .container-etapas .etapas {
        flex-direction: column;
      }
      
      .etapas {
        flex-direction: row;
      }
    
      .etapa-passos {
        flex: 1;
      }
      
      .passo-a-passo {
        padding-top: 60px;
        padding-bottom: 100px;
      }
      .passo-a-passo h2 {
          font-size: 28px;
      }
      .depoimentos {
        padding: 60px 0;  
      }
      .depoimentos h2 {
          font-size: 28px;
      }
      .faq {
        padding: 60px 20px 100px 20px;
      }
      .faq h2 {
          font-size: 28px;
      }
      .rodape-site {
        padding: 20px 10px;   
      }
}
