* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fonte-principal)
}

a{
 text-decoration: none;
}

.tags ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:root {
    --cor-primaria: #313033;
    --cor-secundaria: #B1A3DB;
    --cor-terciaria: #6C6C6C;
    --cor-4: #cacaca;
    --cor-5: rgb(59, 59, 59);
    --fonte-principal: 'Inter', sans-serif;
    --tamanho-base: 16px;
}

body{
    background-color: var(--cor-primaria);
}


.menu{
 height: 58px;
 display: flex;
 list-style: none;
 padding: 1rem;
 gap: 1rem;
 border-bottom: 1px solid var(--cor-5);
}

.menu-toggle {
  display: none;
}

.menu a, .botao-voltar {
    padding: 0.5rem;
    border: none;
    font-size: 14px;
    color: var(--cor-4);
    background-color: transparent;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.menu a::after, .botao-voltar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--cor-secundaria);
  transition: all 0.8s ease;
  transform: translateX(-50%);
}

.menu a:hover::after, .botao-voltar:hover::after {
  width: 100%;
}

.conteudoPrincipal{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    margin-top: 5%;
    padding: 2rem;
}

.conteudoPrincipal h1{
    color: var(--cor-secundaria);
    font-family: var(--fonte-principal);
    font-size: 4.5rem;
    font-weight: 200;
    padding: 1rem 0;
}

.conteudoPrincipal p{
    color: var(--cor-4);
}

.conteudoPrincipal img{
    padding: 1rem 0;
}

.textoHome img{
    cursor: pointer;
}

.conteudoProjetos {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  column-gap: 3rem;
  row-gap: 1.5rem;
  justify-content: center;
  margin: 2.5rem auto;
}

.conteudoProjetos h1{
    color: var(--cor-secundaria);
    font-family: var(--fonte-principal);
    font-size: 2rem;
    font-weight: 200;
    padding-bottom: 1rem;
}


.projeto01, .projeto02, .projeto03{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 300px;
    height: 12rem;
    background-color: var(--cor-5);
    border-radius: 1rem;
    padding: 2rem;
    transition: background-color 0.8s ease;
}

.projeto01 ul, .projeto02 ul, .projeto03 ul{
    display: flex;
    font-size: 12px;
    list-style: none;
    gap: 0.5rem;
}

.projeto01 li, .projeto02 li, .projeto03 li{
     background-color: var(--cor-secundaria);
     color: var(--cor-primaria);
     padding: 0.3rem 0.4rem;
     border-radius: 100px;
     
}

.projeto01:hover, .projeto02:hover, .projeto03:hover{
    background-color: rgb(74, 74, 74);
    color: var(--cor-primaria);
    transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.projetoInterno-01{
  margin-left: 5rem;
  margin-right: 5rem;
}

.titulo-projeto{
 color: var(--cor-4);
 align-items: flex-start;
 padding: 2.5rem 1.5rem 0.5rem;
}

.desafio { 
  width: 100%;
  padding: 1.5rem;
  background-color: var(--cor-5);
  color: var(--cor-4);
  margin: 1.5rem;
  border-radius: 8px;
  text-align: left;
  
}

.desafio h2 { 
    font-weight: 400;
}


.projetoInterno-01 ol{
    padding-left: 1rem;
    color: var(--cor-4);
    list-style: none;
}

.projetoInterno-01 li{
    width: 100%;
    gap: 0.3rem;
    margin: 0.5rem;
    background-color: var(--cor-5);
    transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--cor-4);
    padding: 0.7rem;
    border-radius: 8px;
}

a{
    text-decoration: none;
    color: inherit;
}

.projetoInterno-01 li:hover{
    width: 100%;
    gap: 0.3rem;
    margin: 0.5rem;
    background-color: var(--cor-terciaria);
    color: var(--cor-4);
    padding: 0.7rem;
    border-radius: 8px;
}

.texto-imagem, .texto-imagem6{
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--cor-4);
    gap: 2rem;
}

.texto-imagem2, .texto-imagem3, .texto-imagem4, .texto-imagem5 , .texto-imagem7{
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 1rem;
    padding: 2rem;
    color: var(--cor-4);
    gap: 2rem;
}

.texto-projeto-01{
   max-width: 70%;

}

.imagem-projeto-01 img, .imagem-projeto-05 img{
    max-width: 300px;
    border-radius: 0.5rem;
}

.imagem-projeto-02 img{
    max-width: 100%;
    border-radius: 0.5rem;
}
    
.imagem-projeto-03 img, .imagem-projeto-04 img{
    max-width: 100%;
    border-radius: 0.5rem;
}

.footer{
    display: flex;
    color: var(--cor-primaria);
    flex-direction: row-reverse;
    list-style: none;
    padding: 0.5rem 1rem 0 0;
    gap: 1rem;
    bottom: 2rem;
    width: 100%;

}

.footer a {
    padding: 1rem;
    border-radius: 4px;
    border: none;
    background: none;
    color: var(--cor-terciaria);
    position: relative;
    cursor: pointer;
}

.footer a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--cor-secundaria);
  transition: all 0.8s ease;
  transform: translateX(-50%);
}

.footer a:hover::after {
  width: 100%;
}

