
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      padding: 0;
      background: #fff;
      font-family: 'Nunito', sans-serif;
      color: #333;
    }
    header {
      padding: 30px 20px 10px;
    }
    .cabecalho {
      background: #f6f5f0;
      padding: 80px 0;
    }

    .container-logo {
      padding: 20px 10px;
      max-width: 950px;
      margin: 0 auto;
      display: flex;
    }

    .logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-left: 12px;
    }

    .logo img {
      max-height: 30px;
      height: auto;
      width: auto;
    }

    .container {
      max-width: 950px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .header-content {
      text-align: center;
      margin-top: 20px;
    }

    .titulo-principal {
      font-size: 40px;
      font-weight: 700;
      font-family: 'Domine', serif;
      color: #002d6b;
      margin-bottom: 15px;
      line-height: 1.3; 
    }

    .subtitulo-principal {
      font-size: 20px;
      color: #333;
      font-family: 'Nunito', sans-serif;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .mockup-bloco {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }
    
    .mockup-textos {
      flex: 1 1 400px;
    }
    
    .mockup-imagem {
      flex: 1 1 400px;
      text-align: center;
    }
    
    .mockup-imagem img {
      max-width: 90%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .imagem-mobile {
      display: none;
    }
    .container-formulario {
      padding: 60px 0; 
    }
    
    h2 {
      font-family: 'Domine', serif;
      font-weight: 700;
      font-size: 32px;
      color: #092347;
      margin-bottom: 0px;
    }
    #etapa-1 h2 {
      margin-bottom: 40px; /* ou o valor que preferir */
    }
    .form-contacto {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 20px;
    }
    .avatar-coluna {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .avatar-coluna i {
      font-size: 70px;
      color: #aaa;
    }
    .avatar-coluna p {
      margin: 4px 0 0;
      font-size: 14px;
      text-align: center;
    }
    .form-bloco-campos {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    #objetivo-profissional .form-bloco-campos {
      gap: 0px;
    }
    .linha {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .linha-exp {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      flex: 1;
      min-width: 150px;
    }
    .form-group.grande {
      flex: 2;
    }
    label {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 12px;
      color: #092347;
      margin-bottom: 5px;
    }
    input,
    select,
    textarea {
      font-family: 'Nunito', sans-serif;
      font-weight: 400;
      font-size: 16px;
      color: #002d6b;
      padding: 10px;
      border: 1px solid #7c8a9d;
      border-radius: 0;
      width: 100%;
    }
    input::placeholder,
    textarea::placeholder,
    select option:first-child {
      color: #66778f;
      font-weight: 400;
    }
    .borda-tracejada {
      border: 2px dashed #7c8a9d;
      padding: 10px;
      font-weight: 700;
      background: none;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      color: #092347;
      font-size: 16px;
      width: 100%;
      display: block;
      box-sizing: border-box;
      text-align: center; /* Centraliza o texto */
    }

    .card-experiencia {
      position: relative;
      background: #ffffff;            /* fundo branco */
      border: 1px solid #ccc;         /* borda cinza */
      padding: 15px 50px 15px 15px;   /* padding com espaço para ícones */
      border-radius: 12px;
      margin-top: 15px;
      font-size: 16px;
      line-height: 1.5;
      word-break: break-word;
    }
    .card-experiencia h4 {
      margin: 0;
      font-weight: 700;
    }
    .card-experiencia small {
      display: block;
      margin-bottom: 10px;
      color: #555;
    }
    .card-experiencia p {
      margin: 0;
    }
    
    .card-experiencia .acoes {
      position: absolute;
      top: 10px;
      right: 10px;
      display: flex;
      gap: 10px;
    }
    
    .card-experiencia .acoes i {
      cursor: pointer;
      color: #002d6b;
      font-size: 16px;
    }
    .checkbox-inferior {
      display: inline-flex;
      align-items: center;         /* Alinha verticalmente */
      gap: 8px;
      font-size: 14px;
      color: #092347;
      font-family: 'Nunito', sans-serif;
      margin-top: 6px;
    }
    
    .checkbox-inferior input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin: 0;                   /* Remove espaço padrão */
      vertical-align: middle;      /* Garante centralização */
      accent-color: #092347;
      border-radius: 0;
      cursor: pointer;
    }
    
    .checkbox-inferior label {
      white-space: nowrap;
      line-height: 1;
      margin: 0;
    }
    .texto-mobile {
      display: none;
    }
    .texto-desktop {
      display: inline;
    }
    .botoes-experiencia {
      display: flex;
      justify-content: space-between;
      gap: 15px;
      margin-top: 20px;
    }
    
    .botoes-experiencia button {
      padding: 10px 20px;
      border: none;
      border-radius: 30px; /* bordas bem arredondadas */
      font-family: 'Nunito', sans-serif;
      font-size: 16px;
      cursor: pointer;
    }
    
    .botao-cancelar {
      background-color: #002d6b;
      color: white;
    }
    
    .botao-adicionar {
      background-color: #02818c;
      color: white;
    }
    #formacao-academica .linha-formacao {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
    }
    
    #formacao-academica .form-group {
      display: flex;
      flex-direction: column;
      flex: 1;
      min-width: 150px;
    }
    
    #formacao-academica .form-group.grande {
      flex: 2;
    }
    
    #formacao-academica select {
      appearance: none;
      background-color: white;
      background-position: right 10px center;
      background-repeat: no-repeat;
      background-size: 12px;
    }
    
    #formacao-academica .botoes-experiencia {b
      display: flex;
      justify-content: space-between;
      gap: 15px;
      margin-top: 20px;
    }
    
    #formacao-academica .botoes-experiencia button {
      padding: 10px 20px;
      border: none;
      border-radius: 30px;
      font-family: 'Nunito', sans-serif;
      font-size: 16px;
      cursor: pointer;
    }
    
    #formacao-academica .botao-cancelar {
      background-color: #002d6b;
      color: white;
    }
    
    #formacao-academica .botao-adicionar {
      background-color: #02818c;
      color: white;
    }
    
    #formacao-academica .card-experiencia {
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 15px 20px;
      margin-bottom: 15px;
      position: relative;
      background: #fff;
    }
    
    #formacao-academica .card-experiencia h4 {
      margin: 0;
      font-weight: 700;
    }
    
    #formacao-academica .card-experiencia small {
      display: block;
      margin-bottom: 10px;
      color: #555;
    }
    #form-escolaridade[style*="display: block"],
    #form-curso[style*="display: block"] {
      margin-bottom: 20px; /* Ajuste conforme necessário */
    }
    .titulo-formacao {
      margin-top: 40px;
      margin-bottom: 25px;
    }
    #opcoes-objetivo .opcao-objetivo {
      display: flex;
      align-items: flex-start;
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 15px;
      cursor: pointer;
      transition: background 0.2s;
      gap: 10px;
      position: relative;
    }
    #opcoes-objetivo .opcao-objetivo.selecionado {
      background: #f0f4ff;
    }
    #opcoes-objetivo .icone {
      min-width: 32px;
      height: 32px;
      background: #002d6b;
      color: #fff;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 4px;
    }
    #opcoes-objetivo .opcao-objetivo.selecionado .icone {
      background: #ccc;
      color: #002d6b;
    }
    #opcoes-objetivo .opcao-objetivo .conteudo p {
      font-size: 14px;
      margin: 5px 0 0;
      line-height: 1.3;
    }
    #campo-outro-objetivo {
      width: 100%;
      max-width: 100%;
      padding: 10px;
      font-size: 14px;
      border-radius: 6px;
      border: 1px solid #ccc;
      resize: none;
      overflow: hidden;
      box-sizing: border-box;
      display: block;
      height: 80px;         /* Altura inicial */
      min-height: 80px;     /* Evita que fique menor que isso */
      line-height: 1.4;
    }

    #campo-outro-objetivo-container {
      display: none;
      margin-top: 10px;
      width: 100%;
      box-sizing: border-box;
    }

    .opcao-objetivo.outro .conteudo {
      display: flex;
      flex-direction: column;
      width: 100%;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    #opcoes-objetivo {
      flex-wrap: wrap;
    }
    #card-objetivo .card-experiencia p {
      word-break: break-word;
      overflow-wrap: break-word;
      white-space: pre-wrap; /* mantém quebras de linha e espaços */
      max-width: 100%;
      font-size: 14px;
    }
    .opcao-objetivo.outro .texto-dinamico {
      font-size: 14px;
      margin-top: 4px;
      line-height: 1.4;
      white-space: pre-wrap;
      word-wrap: break-word;
      overflow-wrap: break-word;
      width: 100%;
      box-sizing: border-box;
    }
    .opcao-objetivo {
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
      display: flex;
      align-items: flex-start;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      margin-bottom: 12px;
    }
    .opcao-objetivo .conteudo {
      display: flex;
      flex-direction: column;
      width: 100%;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: break-word;
    }
    .opcao-objetivo .texto-dinamico {
      font-size: 14px;
      margin-top: 4px;
      line-height: 1.4;
      white-space: pre-wrap;
      word-break: break-word;
      overflow-wrap: break-word;
      max-width: 100%;
    }
    #curriculo-popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.6); /* overlay preto semi-transparente */
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    #curriculo-popup {
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 50;
    }
    #curriculo-container {
      width: 35vw;
      height: 95vh;
      background-color: white;
      max-width: 800px;
      padding: 1.5rem;
      border-radius: 0.1rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      overflow-y: auto;
    }
    .overlay-bloqueio {
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(5px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 100;
      padding: 1.5rem;
      text-align: center;
      color: white;
    }
    .overlay-bloqueio a {
      background-color: #16a34a;
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 0.375rem;
      transition: background-color 0.2s;
      font-weight: bold;
      text-decoration: none;
    }
    .overlay-bloqueio a:hover {
      background-color: #15803d;
    }
    .curriculo-cabecalho {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .curriculo-foto {
      width: 100px;
      height: 120px;
      margin-top: 0px;
      flex-shrink: 0;
    }
    .curriculo-foto img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0px;
    }
    .curriculo-cabecalho img {
      width: 100px;
      height: 120px;
      object-fit: cover;
      border-radius: 0px;
      margin-top: 15px;
    }
    
    .curriculo-contato {
      flex: 1;
      margin-left: 40px;
    }
    
    .curriculo-contato h1 {
      font-size: 25px !important;
      font-weight: bold;
      margin-bottom: 4px;
      color: black;
    }
    
    .curriculo-contato p {
      margin: 2px 0;
      line-height: 1.4;
      font-size: 13px !important;
      color: black;
    }
    .curriculo-gerado {
      font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    }
    .curriculo-gerado h1,
    .curriculo-gerado h2,
    .curriculo-gerado h3,
    .curriculo-gerado p,
    .curriculo-gerado a {
      font-family: inherit;
      font-size: 15px;
    }
    .curriculo-contato i {
      font-size: 12px !important;
      margin-right: 10px;
    }
    .curriculo-titulo {
      border-bottom: 1px solid #000;
      padding-bottom: 0px;
      margin-bottom: 10px;
      font-family: 'Palatino Linotype', serif; /* mantêm a fonte */
      color: black;
    }
    .curriculo-experiencia {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0px;
    }
    
    .curriculo-data {
      width: 22%;
      display: flex;
      align-items: center;     /* centraliza verticalmente */
      justify-content: center; /* centraliza horizontalmente */
      font-size: 12px;
      text-align: center;
    }
    .curriculo-data p {
      font-size: 12px !important;
      margin: 0; /* para reduzir espaçamento */
      line-height: 18px;
    }
    .curriculo-local {
      width: 15%;
      text-align: center;
    }
    .curriculo-local p {
      font-size: 14px !important;
      margin: 0; /* para reduzir espaçamento */
      line-height: 18px;
    }
    
    .curriculo-conteudo {
      width: 63%;
      display: flex;
      flex-direction: column;
      gap: 0px;
      font-size: 14px;
      padding-left: 1px;
    }
    
    .curriculo-conteudo .empresa {
      font-weight: bold;
      white-space: normal !important;
      word-break: break-word;
      line-height: 18px;
      font-size: 14px;
      color:black;
    }
    
    .curriculo-conteudo .cargo {
      font-style: italic;
      white-space: normal !important;
      word-break: break-word;
      line-height: 18px;
      font-size: 14px;
      color:black;
    }
    
    .curriculo-conteudo .descricao {
      font-size: 12px;
      white-space: normal !important;
      word-break: break-word;
      line-height: 18px;
      color:black;
    }
    .curriculo-conteudo p {
      margin: 0;
      line-height: 1.0;
    }
    .objetivo-ajustado .curriculo-conteudo {
      width: 100%;
      margin-left: 140px;
    }
    .objetivo-ajustado .curriculo-conteudo p {
      font-size: 14px;
      }
    .curriculo-acoes {
      display: flex;
      justify-content: flex-start; /* <-- alinha à esquerda */
      width: 35vw; /* ocupa toda a largura do popup */
      gap: 10px;
      margin-bottom: 0px;
    }
    .btn-acao {
      background: #002d6b;
      color: white;
      font-family: 'Nunito', sans-serif;
      font-weight: 400;
      font-size: 14px;
      padding: 6px 20px;
      border-radius: 30px;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
    }

    .popup > div {
      background: white;
      padding: 30px;
      border-radius: 20px;
      width: 90%;
      max-width: 450px;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
      color: #092347;
    }

    .titulo-popup {
      font-family: 'Domine', serif;
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .subtitulo-popup {
      font-family: 'Nunito', sans-serif;
      font-size: 18px;
      margin-bottom: 15px;
    }

    .opcao-formato {
      display: flex;
      align-items: center;
      font-family: 'Nunito', sans-serif;
      font-size: 16px;
      margin-bottom: 12px;
      position: relative;
      gap: 8px;
    }
 
    .opcao-formato input[type="radio"] {
      display: none;
    }

    .circulo {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 2px solid #092347;
      position: relative;
    }

    .opcao-formato input:checked + .circulo {
      background: #02818c;
      border-color: #02818c;
    }
    .opcao-formato input:checked + .circulo::after {
      content: "";
      position: absolute;
      top: 4px;
      left: 4px;
      width: 6px;
      height: 6px;
      background: white;
      border-radius: 50%;
    }

    .recomendado {
      background: #efc778;
      color: #092347;
      font-size: 14px;
      font-style: italic;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 6px;
      margin-left: 8px;
    }

    .botoes-popup {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
    }

    .btn-cancelar, .btn-baixar {
      border: none;
      padding: 10px 24px;
      font-size: 20px;
      border-radius: 30px;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
    }
 
    .btn-cancelar {
      background: #002d6b;
      color: white;
    }

    .btn-baixar {
      background: #02818c;
      color: white;
      font-weight: 800;
    }

    .etapa-preparando, .etapa-final {
      text-align: center;
      font-family: 'Nunito', sans-serif;
    }

    .preparando-texto {
      font-size: 16px;
      color: #092347;
    }

    .pontinhos::after {
      content: "";
      display: inline-block;
      width: 0.8em;
      text-align: left;
      animation: dots 1s steps(3, end) infinite;
    }

    @keyframes dots {
      0% { content: ""; }
      33% { content: "."; }
      66% { content: ".."; }
      100% { content: "..."; }
    }

    .texto-menor {
      font-style: italic;
      font-size: 16px;
      margin-top: 10px;
      margin-bottom: 20px;
    }

    .btn-final {
      background: #02818c;
      color: white;
      font-size: 20px;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      padding: 12px 24px;
      border-radius: 30px;
      text-decoration: none;
      display: inline-block;
    }

    .oculto {
      display: none !important;
    }
    .gerar-container {
      display: flex;
      justify-content: center;
      margin-top: 20px;
      padding-left: 18%;
    }
    
    #gerar-curriculo-btn {
      background-color: #012957;
      color: white;
      border: none;
      border-radius: 30px;
      padding: 10px 20px;
      margin-top: 20px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      cursor: pointer;
    }
    #overlay-gerando {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    
    .overlay-conteudo {
      color: white;
      font-family: 'Nunito', sans-serif;
      font-size: 20px;
      font-weight: 400;
    }
    
    .pontos span {
      animation: pontinhos 1.2s infinite;
      opacity: 0;
    }
    
    .pontos span:nth-child(1) {
      animation-delay: 0s;
    }
    
    .pontos span:nth-child(2) {
      animation-delay: 0.2s;
    }
    
    .pontos span:nth-child(3) {
      animation-delay: 0.4s;
    }
    
    @keyframes pontinhos {
      0% { opacity: 0; }
      50% { opacity: 1; }
      100% { opacity: 0; }
    }
    .rodape-site {
      background-color: #092347;
      padding: 20px 10px;
      font-family: 'Nunito', sans-serif;
      font-size: 10px;
      font-weight: 400;
      color: white;
      text-align: center;
      width: 100%;
    }
    
    .rodape-site a {
      color: white;
      font-size: 10px;
      font-weight: 700;
      text-decoration: none;
      margin: 0 5px;
    }
    
    .rodape-site a:hover {
      text-decoration: underline;
    }
    .botoes-finais {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 30px;
      flex-wrap: wrap;
      gap: 10px;
    }
    .btn-proxima, .btn-voltar {
      background-color: #012957;
      color: white;
      border: none;
      padding: 10px 20px;
      margin-top: 20px;
      border-radius: 30px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      cursor: pointer;
    }
    .invisivel {
      background: transparent;
      color: transparent;
      border: none;
      pointer-events: none;
    }

    .barra-progresso {
      display: flex;
      justify-content: space-between;
      margin: 30px auto 40px auto;
      max-width: 600px;
      padding: 0 20px;
    }
    
    .etapa-indicador {
      flex: 1;
      text-align: center;
      position: relative;
    }
    
    .etapa-indicador:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 16px;
      right: -50%;
      width: 100%;
      height: 4px;
      background-color: #ccc;
      z-index: 0;
    }
    
    .numero-etapa {
      display: inline-block;
      width: 32px;
      height: 32px;
      line-height: 32px;
      border-radius: 50%;
      background-color: #ccc;
      color: white;
      font-weight: bold;
      z-index: 1;
      position: relative;
    }
    
    .etapa-indicador.ativa .numero-etapa,
    .etapa-indicador.completa .numero-etapa {
      background-color: #012957;
      transition: background-color 0.4s ease;
    }
    
    .etapa-indicador.completa:not(:last-child)::after {
      background-color: #012957;
    }
    #btn-adicionar-objetivo {
      margin-top: 20px;
    }
    .container-preview,
    .container-etapas,
    .container-depoimentos,
    .container-faq {
      text-align: center;
    }
    
    .titulo-secao {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    
    .subtitulo {
      font-size: 18px;
      color: #555;
      margin-bottom: 40px;
    }
    
    .lista-beneficios {
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 16px;
      color: #444;
    }
    
    .container-preview {
      background: #eef5ff;
    }
    
    .container-etapas {
      background: #f3f3f3;
    }
    
    .container-etapas .etapas {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-top: 40px;
    }
    
    .etapa-box {
      background: white;
      padding: 30px 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      max-width: 500px;
      margin: auto;
    }
    
    .etapa-box i {
      font-size: 30px;
      color: #268744;
      margin-bottom: 10px;
    }
    
    .container-depoimentos {
      background: #fff8f2;
    }
    
    .container-faq {
      background: #f2f7f3;
      padding-bottom: 80px;
    }
    
    .faq-item {
      max-width: 600px;
      margin: 0 auto 0px auto;
      text-align: left;
      padding: 15px 0;
    }
    
    .faq-item h4 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #268744;
    }
    
    .faq-item p {
      font-size: 15px;
      color: #555;
    }
    /* Paleta de cores suaves */
    :root {
      --cor-fundo-azul-claro: #eaf3fb;
      --cor-fundo-bege-claro: #f6f5f0;
      --cor-fundo-cinza-claro: #f2f2f2;
      --cor-fundo-begee-claro: #fdf7f0;
      --cor-texto: #333;
      --cor-destaque: #002d6b;
      --cor-secundaria: #268744;
    }
    
    /* Reset básico */
    section {
      color: var(--cor-texto);
      line-height: 1.6;
    }
    
    h2 {
      font-size: 28px;
      margin-bottom: 15px;
      color: var(--cor-destaque);
    }
    
    /* Benefícios Iniciais */
    .beneficios-iniciais {
      display: flex;
      justify-content: left;
      padding-left: 20px;
    }
  
    .beneficios-iniciais ul {
      text-align: left;
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 400px;
      display: flex;
      flex-direction: column;
    }
  
    .beneficios-iniciais li {
      font-size: 17px;
      color: #333;
      font-family: 'Nunito', sans-serif;
      padding: 5px 0;
      display: flex;
      align-items: center;
    }
  
    .beneficios-iniciais i {
      color: #002d6b;
      margin-right: 10px;
    }

    /* Seção do Modelo de Currículo */
    .container-desktop {
      background: #f6f5f0;
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .modelo-desktop {
      display: block !important;
      
    }
    
    .container-mobile {
      display: none !important;
    }

    .modelo-wrapper {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
    }

    .modelo-textos {
      flex: 1;
    }

    .modelo-imagem {
      flex: 1;
      text-align: right;
    }

    .modelo-imagem img {
      max-width: 80%;
      height: auto;
    }

    .beneficios-modelo {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .beneficios-modelo i {
      color: #002d6b;
      margin-right: 5px;
    }
    .passo-a-passo {
      padding-top: 60px;
      padding-bottom: 100px;
      background-color: #ffffff;
    }
    .passo-a-passo h2 {
      text-align: center;
    }
    
    /* Seção Passo a Passo */
    /* Container geral do passo a passo */
    .etapas {
      display: flex;
      justify-content: space-between;
      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: 1;
      transition: transform 0.3s ease;
    }
    
    .etapa-passos:hover {
      transform: translateY(-5px);
    }
    
    /* Ícone */
    .etapa-passos .icone {
      font-size: 36px;
      color: var(--cor-secundaria);
      margin-bottom: 15px;
    }
    
    /* Título e descrição */
    .etapa-passos h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }
    
    .etapa-passos p {
      font-size: 16px;
      color: #555;
    }
    
    /* Seção de Depoimentos */
    .depoimentos {
      background-color: #f6f5f0;
      text-align: center;
      padding: 60px 0;
    }
    
    .depoimentos h2 {
      margin-bottom: 40px;
    }
    
    .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: 18px;
      font-style: italic;
      color: #444;
      margin: 0 auto 10px;
      max-width: 600px;
    }
    
    .slide span {
      display: block;
      font-weight: bold;
      color: #006699;
      margin-top: 10px;
    }
    
    /* FAQ */
    .faq {
      background: #abd5dc;
      padding: 60px 20px 100px 20px;
    }
    
    .faq h2 {
      text-align: center;
      margin-bottom: 0px;
    }
    
    .faq-item {
      border-bottom: 1px solid #ddd;
    }
    
    .faq-pergunta {
      font-size: 18px;
      color: var(--cor-destaque);
      cursor: pointer;
      margin-bottom: 0;
      position: relative;
      padding-right: 25px;
    }
    
    .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: 500px;
    }

    @media (max-width: 768px) {
      header {
        padding: 0;
        padding-top: 20px;
      }
      .cabecalho {
        padding-top: 20px;
        padding-bottom: 25px;
      }
      .titulo-principal {
        font-size: 32px;
      }
  
      .subtitulo-principal {
        font-size: 18px;
      }
      .mockup-bloco {
        flex-direction: column;
      }
      .mockup-imagem {
        display: none;
      }
      .mockup-imagem img {
        max-width: 80%;
        margin-top: 20px;
      }
      .imagem-mobile {
        display: block;
        text-align: center;
      }
      .imagem-mobile img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        margin: 20px 0;
      }
      .container-formulario {
        padding-top: 25px;
        padding-bottom: 35px; 
      }
      .form-contacto {
        grid-template-columns: 1fr;
      }
      .linha {
        flex-wrap: wrap;
        gap: 20px;
      }
      .form-group {
        width: 100%;
      }
      h2 {
        font-size: 20px;
      }
      h2:nth-of-type(2) {
        margin-top: 40px; /* você pode ajustar esse valor */
        margin-bottom: 0px;
      }
      .logo {
        justify-content: flex-start;
        padding-left: 15px;
      }
      .logo img {
        max-height: 25px;
      }
      .linha-cargo {
        flex-direction: column;
      }
      .linha-cargo .form-group {
        width: 100%;
      }
      /* Nome e Sobrenome lado a lado */
      .linha:nth-of-type(1) {
        flex-direction: row;
      }
    
      /* Endereço sozinho */
      .linha:nth-of-type(2) {
        flex-direction: column;
      }
    
      /* Cidade e Estado lado a lado */
      .linha:nth-of-type(3) {
        flex-direction: row;
      }
    
      /* CEP e Telefone lado a lado */
      .linha:nth-of-type(4) {
        flex-direction: row;
      }
    
      /* Email sozinho */
      .linha:nth-of-type(5) {
        flex-direction: column;
      }
    
      /* Data de nascimento e Estado civil lado a lado */
      .linha:nth-of-type(6) {
        flex-direction: row;
      }
    
      .linha:nth-of-type(1) .form-group,
      .linha:nth-of-type(3) .form-group,
      .linha:nth-of-type(4) .form-group,
      .linha:nth-of-type(6) .form-group{
        width: 50%;
      }
    
      .linha:nth-of-type(2) .form-group,
      .linha:nth-of-type(5) .form-group{
        width: 100%;
      }
      .texto-mobile {
        display: inline;
      }
      .texto-desktop {
        display: none;
      }
      #formacao-academica .linha-formacao {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
      }
    
      #formacao-academica .form-group {
        width: 100%;
      }
      .titulo-formacao {
        margin-top: 40px;
        margin-bottom: 0px;
      }
      #campo-outro-objetivo {
        min-height: 3em;
      }
      #curriculo-container {
        width: 90vw !important;
        height: 60vh !important;
        background-color: white;
        padding: 1.5rem;
        border-radius: 0.1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
      }
      .curriculo-contato i {
        font-size: 8px !important;
        margin-right: 5px !important;
      }
      .curriculo-contato h1 {
        font-size: 17px !important;
      }
    
      .curriculo-contato p {
        font-size: 7px !important;
      }
      .curriculo-contato {
        margin-left: 0px !important;
      }
      .curriculo-cabecalho {
        flex-direction: row !important;
        align-items: flex-start !important;
        margin-bottom: 10px !important;
      }
    
      .curriculo-foto {
        width: 70px;
        height: 90px;
        margin-top: 0;
      }
      .curriculo-foto img {
        width: 50px !important;
        height: 70px !important;
        margin-top: 23px !important;
        border-radius: 0;
      }
      .curriculo-titulo {
        font-size: 7px !important; /* ajuste conforme necessário */
        margin-bottom: 6px !important;
        margin-top: 0px !important;
      }
      .curriculo-data p {
        font-size: 6px !important;
        line-height: 1.0 !important;
      }
      .curriculo-local p {
        font-size: 8px !important;
        line-height: 1.0 !important;
      }
      .curriculo-conteudo .empresa {
        font-size: 8px;
      }
      .curriculo-conteudo .cargo {
        font-size: 8px;
      }
      .curriculo-conteudo .descricao {
        font-size: 6px;
        margin-bottom: 5px;
      }
      .curriculo-conteudo p {
        margin: 0 !important;
        line-height: 1.0 !important;
      }
      .curriculo-experiencia {
        margin-bottom: 5px;
      }
      .objetivo-ajustado .curriculo-conteudo {
        width: 100%;
        margin-left: 70px;
      }
      .objetivo-ajustado .curriculo-conteudo p {
        font-size: 8px;
      }
      .curriculo-acoes {
        width: 90vw;
      }
      .btn-acao {
        font-size: 10px;
        padding: 5px 12px;
      }
      .popup > div {
        width: 85%;
      }
      .gerar-container {
        padding-left: 0;
      }
      .container-etapas .etapas {
        flex-direction: row;
        justify-content: center;
      }
    
      .lista-beneficios {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
      }
    
      .container-mobile {
        background: #f6f5f0;
        display: block !important;
        padding-top: 0;
        padding-bottom: 30px;
      }
      .modelo-mobile {
        padding-top: 30px;
        text-align: center
      }

      .container-desktop {
        display: none !important;
      }

      .modelo-mobile img {
        max-width: 80%;
        height: auto;
        margin: 20px 0;
      }
    
      .modelo-mobile h2,
      .modelo-mobile p {
        text-align: left;
      }

      .modelo-mobile ul {
        padding-left: 35px;
        list-style: none;
        text-align: left;
      }

      .modelo-mobile ul li {
        margin-bottom: 0px;
      }
      .modelo-mobile i {
        color: #002d6b;
        margin-right: 5px;
      }
      .etapas {
        flex-direction: column;
      }
    
      .etapa-passos {
        flex: initial;
      }

      .beneficios-iniciais ul {
        max-width: 100%;
      }
      .beneficios-iniciais {
        padding-left: 0px;
      }
      .passo-a-passo {
        padding-top: 25px;
        padding-bottom: 35px;
      }
      .depoimentos {
        padding-top: 25px;
        padding-bottom: 35px;   
      }
      .faq {
        padding-top: 25px;
        padding-bottom: 35px; 
      }
      .rodape-site {
        padding-top: 35px;
        padding-bottom: 25px;   
      }
    }
    @media (min-width: 769px) {
      .menu {
        min-height: 2em;
      }
    }
