:root {
  --cinza-claro: #f0edee;
  --azul-profundo: #44a1a0;
  --azul-marinho: #07393c;
  --black: #000000;
  --cinza: #808080;
  --branco: #ffffff;
  --branco-transparente: #ffffffc0;
  --laranja: #f60;
}

html {
  font-size: 62.5%;
}

body {
  margin:0;
  padding: 0;
  font-family: Manrope, sans-serif;
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--cinza);
}
/* cabecalho*/

.cabecalho {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  border-bottom: solid rgba(128, 128, 128, 0.375);
  padding: 2rem;
  padding-right: 3.3rem;

  .imagemlogo {
    display: flex;
    cursor: pointer;
    width: 23rem;
    height: auto;
  }
}

.ordemcabecalho {
  display: flex;
}


/* corpo da pagina */

.conteinerone{
  padding-left: 16rem;
  padding-right: 16rem;
  padding-top: 11.1rem;
  padding-bottom: 8.2rem;

}

.orgconteiner {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
  
}

.titulocorpo{
  font-size: 2.6rem;
  font-weight: 700;
  color: white;
}
.tituloone {
  font-size: 3.6rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-top: 6rem;
}

.textop{
  color: var(--branco);
  font-size: 1.8rem;
  line-height: 2.4rem;

  & b{
    font-weight: 700;
    font-size: 2rem;
  }
}
.textop ul{
display: flex;
align-items: start;
flex-direction: column;
padding-left: 2rem;

}

/*rodape*/

.rodape-alibe {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  padding-top: 5.2rem;

}
.footer-alibe {
  display: flex;
  cursor: pointer;
  color: var(--branco);
  font-size: 1.6rem;
}

.footer-alibe a:link,
.footer-alibe a:visited,  
.footer-alibe a:hover,
.footer-alibe a:active {
  color: var(--branco);}

.footer-alibe a:hover,
.footer-alibe a:active{
  color: var(--laranja);
  transition: ease 0.3s;
}

.rodape-mod{
  background-color:#383838;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--branco);
  padding: 4rem;
  padding-bottom: 2rem;
  font-size: 1.4rem;
}
