  :root {
  --primary-color: #007bff; /* Azul vibrante para botões e links principais */
  --secondary-color: #28a745; /* Verde para destaque ou sucesso (ex: Teste Gratuito) */
  --text-dark: #343a40; /* Texto principal escuro */
  --text-light: #f8f9fa; /* Texto claro (em backgrounds escuros) */
  --bg-light: #ffffff; /* Fundo principal claro */
  --bg-secondary: #f4f7f9; /* Fundo de seções de destaque */
  --gray-bg: #ebebeb; /* Fundo de seções de destaque */
  --border-color: #dee2e6; /* Cor de borda suave */
  --accent-color: #17a2b8; /* Ciano para detalhes ou ícones */
  --color-van: #1a1bad;
  --color-buttom_back: #dedbdb;

  /* Tipografia */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

}
   body {
    margin: 0 auto; /*Remove margens e preenchimentos padrão do corpo. */
    padding: 5px;  /*Remove margens e preenchimentos padrão do corpo. */
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6; /*Define a altura da linha para 1.6 vezes o tamanho da fonte */
    display: flex; /*Usa o modelo flexbox para o layout.*/
    flex-direction: column; /*Define a direção dos itens como uma coluna.*/
    min-height: 100vh; /* Define a altura mínima como 100% da altura da viewport (altura visível da janela do navegador).*/
    width: 420px;
    position: relative;
    top: 16px;
    }
    .mobile-container {
      width: 100%;
      max-width: 420px;   
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    .topo{
      display: grid;
      padding-top: 20px;
      background-color: var(--color-van);
      border-radius: 10px;
    }
    .cabeca{
      margin: 0 auto;
    }
  .row{
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
  }
   .seuNome{
    font-size: 1.2rem !important;
    color: #000 !important;
    font-weight: 600;
    padding-right: 6px;
    background-color: #c3bdbd;
   }
   #userName{
    width: 100%;
    height: 46px;
    border-radius: 5px;
    /* font-size: 1.2rem; */
    font-size: 1rem;
    padding-left: 10px;
   }
  #questionFormContainer{
    width: 100%;
    background-color: #c3bdbd;
    padding: 5px 0 0 10px;
    border-radius: 10px;
    
    justify-items: center;
  }

  footer {
      padding: 10px 0; /* Espaçamento interno do rodapé */
      /* border-right: 5px solid #c0c0c0;
      border-left: 5px solid #c0c0c0; */
      border-radius: 10px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  }

  h1, h2 {
    margin-top: 1em;
  }
  h1, .h1{
    font-size: 1.5rem !important;
    margin: 15px 0 !important;
    text-align: center;
    font-weight: 600;
  }
  h2, .h2{
    font-size: 1.2rem;
  }

  h1, h2 {
    text-shadow: 0 0 .2em #b6a4ed, 0 0 .2em #b6a4ed, 0 0 .2em #b6a4ed;
  }
.h1, .h2, h1, h2 {
    margin-bottom: .2rem;
}
h1, .h1 {
    font-size: 1.4rem;
    margin-top: 0;
}
h2, .h2 {
    font-size: 1.3rem;
    margin: 30px 0 10px 0;
    text-align: center;
}
  p {
    margin-top: 0;
    margin-bottom: .4em;
  }

  a {
    color: #007bff; /* Cor padrão para links */
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline; /* Sublinhado ao passar o mouse */
  }

  /* Telas grandes (Desktop) */
  .container.custom-container {
      margin: 0 auto; /* Centraliza o contêiner */
      position: relative;
      top: 78px;
  }

  .titLogoIs{
    max-height: 2.5rem;
    margin: 0 auto;
    display: flex;
  }
  
  .navbar{
    background-color: #c3bdbd;
  } 

  #nav-container{
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-brand{
    display: flex;
    justify-content: space-evenly;
    /* width: 1200px; */
    width: 300px;    /*ALTERADAO */
    padding: 0;
    color: #fff;
    margin: 0 auto;
  }
  
  .titPage{
    display: flex;
    justify-content: center; /* centraliza o texto horizontalmente */
    align-items: center; /* centraliza as linhas verticalmente */
    margin: 12px 0; /* 30px -> margens superior e inferior */
  }
  
  .titPage::before,
  .titPage::after{
    content: '';
    position: relative;
    height: 2px; /* espessura das linhas */
    background: var(--text-light);/* cor das linhas */
    min-width: 50px; /* largura mínima das linhas */
    flex-grow: 1; /* distribui a largura das linhas por igual */
    margin: 0 13px;
  }
  
  .titPage span{
    color: var(--text-light);
    /* padding: 0 29px; distancia do texto às linhas */
    font-family: 'Roboto', sans-serif;
    font-weight: bold; /* negrito */
    font-size: .9em; /* tamanho do texto */
    font-style: oblique;
  }
  .main-title {
    /* background-image: url('./img/comunica-graf.png'); */
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
  }

  b, strong {
    font-weight: bolder;
    font-size: .9rem;
  }

input{
  border: none !important;
}
#questionForm{
    /*width: 290px;*/
    width: 380px;
    max-width: 100%;
    margin-top: 2em;
    height: 45rem;
}

.question, .form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
}
.form-group{
  height: 15px;
}
 .question select {/* NOVO */
    width: 62px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.hidden {
    display: none !important;
}

 #btnContinuar{
   margin-bottom: 20px !important;
 }
.botao-estilizado1 {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    /* border: none; */
    cursor: pointer;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    display: flex;
    margin: 0 auto;
    width: auto;
    font-weight: bold;
    border-radius: 10px;
    margin-top: .5rem;
}
.botao-estilizado2 {
    color: #ae9a9a;
    padding: 5px;
    border: none;
    cursor: pointer;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
    font-size: .75em;
    height: auto;
    border: 1px #000 solid;
    border-radius: 5px;
}
.botao-estilizado3 {
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    height: 40px;
    align-self: center;
    font-weight: bold;
    align-items: center;
    padding: 23px 30px;
    display: flex;
    width: auto;
}
.botao-estilizado4 {
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    height: 40px;
    align-self: center;
    font-weight: bold;
    align-items: center;
    margin-top: 10px;
}

.botao-estilizado:hover {
    box-shadow: 5px 5px 10px rgba(12, 0, 0, 0.5);
    color: black;
}

/* Estilos para labels das perguntas */
.question label {
    flex: 1; /*NOVO*/
    font-weight: bold;
    /* font-size: 1.1em; */
    font-size: .8em;
    font-style: italic;
    /* color: #333; */
    color: #232222;
    margin-bottom: 5px;
    margin: 1px 0 1px 10px;
    line-height: 1.2;
}

/*@media (max-width: 1200px) {
  .container {
      max-width: 600px;
      /* max-width: 100% !important; *
  }
}*/
/*@media (min-width: 1200px) {
  .container {
      max-width: 600px;
      /* max-width: 100% !important; *
  }
}*/
/*@media (min-width: 992px) {
  .container {
      max-width: 600px;
      /* max-width: 100% !important; *
  }
}*/

/*@media (min-width: 768px) {
  .container {
      max-width: 600px;
      /* width: 100%; *
  }
  .titPage span {
      font-size: 1.0em;
      padding: 0 13px;
  }
  .titLogoIs {
      max-height: 3rem;
      margin-right: 20px;
  }
  /* .titPage::before,
  .titPage::after {
      min-width: 60px; /* largura mínima das linhas 
      margin: 0 20px;
  }*
 .container.custom-container {
      /* padding: 0; *
  }
}*/

/*@media (max-width: 768px) {
  .container {
      /* max-width: 100%; *
      max-width: 600px;
  }
  .titPage span {
      font-size: 1.0em;
      padding: 0 13px;
  }
  .titLogoIs {
      max-height: 3rem;
      margin-right: 20px;
  }
}*/

/*@media (max-width: 576px) {
  .container custom-container {
     display: block;
  }
  /* .container {
    max-width: 100% !important;
  } *
  .question label {
      font-size: .95em;
  }
  .botao-estilizado2 {
      font-size: .75em;
  }
  .titLogoIs {
      max-height: 2rem;
      margin: 0;
  }

  .titPage span {
      font-size: .7em;
  }
  .titPage::before, .titPage::after {
      min-width: 0;
      margin: 0;
  }
  .botao-estilizado3 {
      height: 40px;
      font-weight: lighter;
      padding: 0 5px;
      font-size: .8rem;
      margin-right: 10px;
  }
  /* .especif{
      height: 40px;
      font-weight: 600;
      padding: 23px 30px;
      display: flex;
      font-size: .9rem;
  } *
  .botao-estilizado2 {
      padding: 3px;
  }
  .titPrime{
      margin-top: 0;
  }
}*/
