/* ================================
   RESET E CONFIGURAÇÕES GERAIS
================================== */
:root {
  --violeta: rgb(57, 27, 73);
  --ametista: rgba(149, 112, 198, 1);
  --ametista-hover: rgba(120, 90, 160, 1);

  --cinza-claro: #f4f4f4; /*cor do card*/

  --lavanda-acinzentado: #D1C4E9;
  --lilas-branco: #E6E0EF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Inclui padding e border na largura e altura do elemento */
}

a {
  text-decoration: none;
}

/* ================================
   TIPOGRAFIA E CORES BÁSICAS
================================== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 92vh;
  background-color: white;
}

.logo {
  font-size: 24px;
  /*text-transform: uppercase;*/
  letter-spacing: 4px;
  color: #000000;
}

main {
  margin-left: 0; /* começa sem margem */
  transition: margin-left 0.3s ease;
  padding: 20px;
}

main h1 {
  position: relative;
  text-align: center;
  margin-top: 15px;

  font-size: 42px;
}

main h3 {
  position: relative;
  text-align: center;
  margin-top: 15px;

  font-size: 22px;
}

/* ================================
   CABEÇALHO E NAVEGAÇÃO
================================== */
#headerId {
  position: sticky; /* cria um contexto de empilhamento */
  top: 0;
  z-index: 2000; /* maior que o da sidebar (1000) */
  height: 8vh;
}

.cabecalho{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  position: relative;

  height: 8vh;
  text-align: center;
  line-height: 8vh;

  background-color: #f4f4f4;
  border-bottom: 1px solid #ccc;

  z-index: 1000;
}

.hamburger {
  position: absolute; /* <-- fixo em relação à janela */

  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
  cursor: pointer;
  z-index: 2000; /* bem acima de tudo */
  font-size: 32px;
}

.sidebar {
  justify-self: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 0; /* começa fechado */

  background-color: #f4f4f4;
  /* border-right: 1px solid #ccc; */
  overflow-x: hidden;
  transition: width 0.3s ease;
  padding-top: 60px;
  z-index: 1000;
}

.sidebar ul {
  list-style: none;
  padding: 20px 0px;
}

.sidebar li {
  padding: 10px 20px;
}

.sidebar a {
  text-decoration: none;
  color: #212529;
  display: block;
  padding: 8px 16px;
  transition: color 0.2s;
}

.sidebar a.atual {
  color: #212529;
  
  font-weight: 700;
  border-radius: 4px;
}

.sidebar a:hover {
  color: rgba(120, 90, 160, 1);
}

/* ================================
   RESET E CONFIGURAÇÕES GERAIS
================================== */
.home {
  background: linear-gradient(to right, var(--violeta), var(--ametista));
  border-radius: 8px;
  display: flex;
  align-items: flex-start;/*antes estava flex-start*/
  justify-content: center;

  margin: 0 auto;
  width: 90vw;

  padding: 20px 0px;

}

.home-about {
  display: flex;
  gap: 4vw; /* espaço entre os cards */
  padding: 20px;


  width: 90vw;
  margin: 5vw auto 5vw auto;

  border-radius: 12px;

  background: linear-gradient(to bottom, var(--violeta), var(--ametista-hover));
}

.home-about .card {
  background-color: var(--cinza-claro);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* espaçamento vertical entre os elementos */
  transition: all 0.3s ease;
}

.home-about .card p {
  align:justify;
}

.home-about .card:hover {
  transform: translateY(-8px);
}

.home-about .card a{
  margin-top: auto;
}

.home-about .card button:hover {
  background-color: rgba(120, 90, 160, 1);
}

.home-about .card h3 {
    text-align: center;
}

.home-service {
  display: flex;
  flex-direction: column; /*em coluna o titulo, texto p e o botao*/
  justify-content: center; /*alinha o conteudo no centro horizontal*/
  gap: 15px;
  padding: 30px;

  width: 40vw;

  border-radius: 12px;
  
  
}

#titulo {
  font-size: 2.5rem;         /* Tamanho grande para destaque */
  font-weight: 700;
  color: var(--lavanda-acinzentado);            /* Tom escuro para boa leitura */
  margin-bottom: 12px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.home-service p {
  font-size: 1.1rem;
  color: var(--lilas-branco);            /* Cinza escuro suave */
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 24px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.home-service a button {
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: rgba(149, 112, 198, 1);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(149, 112, 198, 0.5);
}

.home-service a button:hover {
  background-color: rgba(120, 90, 160, 1); /* tom roxo mais escuro no hover */
  box-shadow: 0 6px 18px rgba(120, 90, 160, 0.6);
}

/* ================================
   ESTRUTURA DAS ETAPAS
================================== */
.etapas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: system-ui, sans-serif;
  flex-wrap: wrap;
  margin-top: 15px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  text-align: center;
}

.icone {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #aaa;
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.step.active .icone {
  background-color: rgba(120, 90, 160, 1);
}

.seta {
  font-size: 20px;
  color: #999;
}

/*================================
   FORMULÁRIO
==================================*/
.registro {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cenario {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
  width: 100%;
  gap: 1px;
  margin-top: 15px;
}

.campo {
  display: flex;
  flex-direction: column;

  position: relative;

  padding: 3rem 40px;
  gap: 15px;
  width: 800px;
  height: auto;
  border: 2px solid black;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.textarea-container {
  position: relative;
  height: 100px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-top: 2rem;
}

.textarea-container textarea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  line-height: 1.5rem;
  border: 1px solid #aaa;
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
  box-sizing: border-box;
  overflow-y: auto;
  resize: none;
  z-index: 1;
  outline: none;
  padding: 0.4rem 1rem;
  line-height: 2rem;
}

/* .textarea-container textarea::-webkit-scrollbar {
  display: none;
} */ /* Achei melhor manter a scrollbar*/

.textarea-container textarea.focused {
  max-height: 120px;
  border-color: rgba(120, 90, 160, 1);
  z-index: 10;
}

.textarea-container label {
  position: absolute;
  top: -2rem;
  left: 0.25rem;
  font-size: 18px;
  color: #aaa;
  background: transparent;
  padding: 0 4px;
  z-index: 2;
  transition: color 0.05s ease;
}

.textarea-container textarea.focused~label {
  color: rgba(120, 90, 160, 1);
}

#curto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  line-height: 1.5rem;
  border: 1px solid #aaa;
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
  box-sizing: border-box;
  overflow-y: auto;
  resize: none;
  z-index: 1;
  outline: none;
  padding: 0.4rem 1rem;
  line-height: 2rem;
}

/* ================================
   BOTÕES
================================== */
button {
  position: center;
  padding: 10px;
  background-color: rgba(149, 112, 198, 1);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.botao{
  position: center;
  width: 300px;
  padding: 10px;
  background-color: rgba(149, 112, 198, 1);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.botao-submit {
  margin: 5%;
  font-family: Arial, Helvetica, sans-serif;
  width: 90%;

  display: inline-flex;
  /* permite alinhar texto + spinner */
  align-items: center;
  /* centraliza verticalmente */
  justify-content: center;
  /* centraliza o conteúdo horizontalmente */
  gap: 0.5em;
  /* espaço entre texto e spinner */

  padding: 0.6em 1em;
  font-size: 1rem;
  background-color: var(--ametista);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.botao-reset {
  font-family: Arial, Helvetica, sans-serif;
  width: 150px;
  position: absolute;

  top: 1rem;
  right: 1rem;

  padding: 10px 5px;
  font-size: 12px;
  background-color: var(--ametista);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.botao-submit:hover,
.botao-reset:hover{
  background-color: var(--ametista-hover);
}

.spinner {
  width: 0.8em;
  height: 0.8em;
  border: 2px solid #f4f4f4;
  border-top-color: purple;
  border-radius: 50%;
  animation: spin 1s ease-in-out infinite;
}

.botao-reverso {
  border: 2px solid rgba(149, 112, 198, 1);
  background-color: white;
  color: rgba(149, 112, 198, 1);
  font-weight: bold;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.botao:hover {
  background-color: rgba(120, 90, 160, 1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #555;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content ul {
  padding-left: 1rem;
  list-style-type: disc;
  line-height: 1.5rem;
}

.info-icon {
  display: inline-block;
  font-size: 14px;
  margin-left: 6px;
  color: rgba(149, 112, 198, 1);
  border: 1px solid rgba(149, 112, 198, 1);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.info-icon:hover {
  background-color: rgba(120, 90, 160, 1);
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.voltar-btn {
  position: absolute;
  left: 100px;
  /* ou ajuste conforme necessário */
  top: 1rem;
  /* alinhado com a logo */
  width: 150px;
  padding: 6px 12px;
  font-size: 1rem;
  background-color: rgba(161, 23, 230, 0.583);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
}

.voltar-btn:hover {
  background-color: #a117e6;
}

.tab-buttons{
  width: 100%;
  padding: 2px 0px;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 3%;

  position: sticky;
  top: 8vh;
  z-index: 2000;

  border: 1px solid #ccc;
  
  background-color: #f4f4f4;


  margin-bottom: 1em;
}

.tab-btn {
  width: 20%;
  height: 55px;

  border: 2px solid var(--ametista);
  background-color: white;
  color: #212529;
  /* texto mais visível */
  font-weight: bold;
  padding: 20px 10px;
  
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;

}

/* Ativo: fundo roxo translúcido, texto branco */
.tab-btn.active {
  background-color: var(--ametista-hover);
  color: #212529;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================
   MENSAGENS DE ERRO E FEEDBACK
================================== */
.falha {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  display: block;
  width: 100%;
  text-align: center;
  color: rgba(230, 23, 23, 0.781);
}

.error {
  max-width: 600px;
  margin: 80px auto;
  padding: 40px;
  border: 1px solid rgba(161, 23, 230, 0.3);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.error img {
  height: 200px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(161, 23, 230, 0.4));
}

.error h2 {
  font-size: 28px;
  margin-bottom: 12px;

}

.error p {
  font-size: 18px;
  margin-bottom: 24px;
}

.resposta-container {
  /* margin: 20px 10px; */
  /* background-color: #ffffff; */
  border-left: 5px solid var(--ametista);
  padding: 10px 20px;
  
  /* border-radius: 12px; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* width: 90%; */
  height: 70vh;
  overflow-y: scroll;
  
}

/* Títulos */
.resposta-container h1,
.resposta-container h2,
.resposta-container h3 {
  color: var(--ametista-hover);
  margin-top: 10px;
  margin-bottom: 10px;
}

.resposta-container h1 {
  font-size: 1.8em;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 6px;
}

.resposta-container h2 {
  font-size: 1.5em;
}

.resposta-container h3 {
  font-size: 1.2em;
}

/* Parágrafos */
.resposta-container p {
  font-size: 1em;
  color: #212529;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Listas */
.resposta-container ul,
.resposta-container ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.resposta-container li {
  margin-bottom: 6px;
  font-size: 1em;
  line-height: 1.5;
  color: #495057;
  position: relative;
}

.escolha-tecnica{
  margin-left: 5%; 
  margin-right: 5%; 
  width: 80%; 
  display: flex; 
  justify-content: space-between;
}

/* .resposta-container ul li::before {
  content: "•";
  color: rgba(161, 23, 230, 0.583);
  position: absolute;
  left: -15px;
  font-weight: bold;
} */

/* ================================
   ANIMAÇÕES
================================== */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.01);
  }

  100% {
    transform: scale(1);
  }
}

/* ================================
   "CATALOGO"
================================== */
.categoria-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.categoria {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0 auto;
  width: 90vw;

  border: 2px solid rgba(149, 112, 198, 1);
  /* cor roxa translúcida */
  border-radius: 8px;
  padding: 15px 30px;
  height: auto;
}

.categoria legend {
  text-align: center;
  font-size: 2rem;
  color: #000000;
  padding: 0 8px;
}

.accordion {

  margin: 0 auto;

  width: 80vw;
  border: 2px solid rgba(149, 112, 198, 1);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background-color: rgba(149, 112, 198, 1);
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h2,
.accordion-header h3 {
  text-align: center;
  font-size: 1.5rem;
  margin: 0;
  color: white;
}

.accordion-body {

  margin: 0 auto;
  width: 100%; /*tamanho do pai: accordion = 80vw*/
  
  padding: 20px;
  background-color: #ffffff;
  display: none;
}

.accordion.tecnica {
  margin-top: 30px;
}

.arrow {
  font-size: 20px;
  color: white;
  transition: transform 0.3s ease;
}

.accordion.open .accordion-body {
  display: block;
}

.accordion.open>.accordion-header .arrow {
  transform: rotate(180deg);
}
/* mudança*/
.catalog-content {

  margin: 0 auto;
  width: 60vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.seta-esquerda,
.seta-direita {
  position: absolute;
  position-anchor: --catalogo;
  font-size: 28px;

  background: transparent;
  border: none;

  cursor: pointer;
  color: #555;
  z-index: 10;

}

.seta-esquerda.desativada,
.seta-direita.desativada {
  opacity: 0.0; /* aparência apagada */
  cursor: not-allowed; /* cursor bloqueado */
  pointer-events: none;
  color: #aaa; /* tom mais claro */
  transition: opacity 0.3s ease, color 0.3s ease;
}

.seta-esquerda {
  right: calc(anchor(left) + 0px);
  top: calc(anchor(top) + (anchor(bottom) - anchor(top))/2);
}

.seta-direita {
  left: calc(anchor(right) + 0px);
  top: calc(anchor(top) + (anchor(bottom) - anchor(top))/2);
}

.catalog-content .pagina {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  position: relative;
  font-size: 18px;
  background-color: rgba(245, 245, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 25px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  width: 100%; /*pai: catalog-content = 60vw*/
  
  min-height: 30vh;
  line-height: 1.6;
  color: #333;

  /* text-align: justify;  péssima ideia*/

  anchor-name: --catalogo;
}

.catalog-content .pagina span {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 14px;
  color: #555;
}

.catalog-content .pagina.active {
  display: block;
}

.catalog-controls {
  padding: 0px;
}

/* ================================
   "BREADCRUMBS"
================================== */
.breadcrumbs {
  font-size: 0.95em;
  color: #6c757d;
  margin: 10px 90px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.breadcrumbs a {
  text-decoration: none;
  color: #212529;
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumbs span {
  color: #212529;
}

.breadcrumbs a:hover {
  color: var(--ametista-hover);
}

#escolher-dnv{
  color: var(--lilas-branco);
  padding: 5px 10px;
  background-color: var(--ametista);
  border-radius: 5px;
  /* border: 1px solid var(--violeta); */
}

#escolher-dnv:hover{
  background-color: var(--ametista-hover);
}

/* ================================
   "ICONES"
================================== */
.material-symbols-outlined {
  font-size: 40px;
  color: #000000;
  vertical-align: middle;
}

/* ================================
   "MEDIA QUERIES" -> RESPONSIVIDADE
================================== */

@media screen and (max-width: 576px){

  h1{
    font-size: 30px;
  }

  .breadcrumbs {
    font-size: 0.55em;
  }

  main{
    width: 100%;
    padding: 0px;

    margin: 0;
  }

  .home{
    width: 100%;
    border-radius: 0;

    flex-direction: column-reverse;
    justify-content: center;
    
  }

  .home-service{
    width: 100%;
    height: auto;

    padding: 10px;

    align-items: center;

    gap: 40px;
  }

  .home-service img{
    width: 100%;
    height: 250px;
  }

  .home-service #titulo{
    text-align: center;
  }

  .home-service p{
    margin: 0 auto;
    text-align: justify;
  }

  .home-about{
    flex-direction: column;
  }

  /* tela de boas práticas */
  .categoria {

  }

  .categoria legend{
    font-size: 1.5rem;
  }

  .pagina{
    overflow-y: auto;
    height: 350px;
  }

  /* TELA DE PLANEJAMENTO */
  .etapas {
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .step {
    font-size: 12px;
    width: 30%;

    flex: 1 1;
  }

  .icone {
    width: 30px;
    height: 30px;
    
  }

  .campo {
    padding: 3rem 10px;
    gap: 20px;
    
  }

  .botao-reset {
    width: 100px;

    top: 0.5rem;
    right: 1rem;
    font-size: 10px;

  }

  .textarea-container {
    width: 100%;
    height: 100px;
    margin-top: 2rem;
  }

  .textarea-container textarea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    font-size: 14px;
    
    /* z-index: 0; */
    outline: none;

    line-height: 2rem;
  }

  .textarea-container label {
    position: absolute;
    top: -2rem;
    left: 0.25rem;
    font-size: 11px;
    
    /* z-index: 2; */
  }

  /* tela de guias da técnica */
  .tab-buttons{
    display: flex;
    width: 100%;

    position: sticky;
    

    margin-bottom: 1em;
  }

  .tab-btn{
    font-size: 8px;
  }

}

@media screen and (min-width: 577px) and (max-width: 900px){
  h1{
    font-size: 35px;
  }

  main{
    width: 100%;
    padding: 0px;

    margin: 0;
  }

  .home{
    width: 100%;
    border-radius: 0;

    flex-direction: column-reverse;
    justify-content: center;
    
  }

  .home-service{
    width: 100%;
    height: auto;

    padding: 10px;

    align-items: center;

    gap: 40px;
  }

  .home-service img{
    width: 85%;
    height: 325px;
  }

  .home-service #titulo{
    text-align: center;
  }

  .home-service p{
    margin: 0 auto;
    text-align: justify;
  }

  .home-about{
    flex-direction: column;
  }

  /* tela de boas práticas */
  .categoria {

  }

  .categoria legend{
    font-size: 1.7rem;
  }

  .pagina{
    overflow-y: auto;
    height: 350px;
  }

  /* TELA DE PLANEJAMENTO */
  .step {
    font-size: 14px; /* valor base*/
    /* width: 30%;

    flex: 1 1; */
  }

  .icone {
    width: 33px;
    height: 33px;
    
  }

  .campo {
    padding: 3rem 25px;
    gap: 20px;
    
  }

  .botao-reset {
    width: 150px;

    /* top: 1rem; */
    /* right: 1rem; */
    font-size: 12px;

  }

  .textarea-container {
    width: 100%;
    height: 100px;
    margin-top: 2rem;
  }

  .textarea-container textarea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    font-size: 16px;
    
    /* z-index: 0; */
    outline: none;

    line-height: 2rem;
  }

  .textarea-container label {
    position: absolute;
    top: -2rem;
    left: 0.25rem;
    font-size: 16px;
    
    /* z-index: 2; */
  }
}

@media screen and (min-width: 901px) and (max-width: 1100px){
  h1{
    font-size: 40px;
  }

  main{
    width: 100%;
    padding: 0px;

    margin: 0;
  }

  .home-service img{
    width: 100%;
    height: 325px;
  }

  .home-about{
    flex-direction: column;
  }

  /* tela de boas práticas */
  /* nao precisou estilizar a tela de boaPraticas */
}