@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    margin-bottom: 0rem;
}

.fundo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.fundo::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('assets/fundo.png');
    background-size: cover;
    background-position: center;
    filter: blur(0.7px);

}

.logo{
    width: 10rem;
}

.logo-container {
    display: flex;
    justify-content: start;
}

a {
    text-decoration: none;
    color: aliceblue;
}

.cabecalho {
    background-color: #58f4cc;
}

.navegacao {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-left: 1rem;
    width: 100%;
}


.botaovoltar {
  cursor: pointer;
  border: none;
  background-color:transparent;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.voltar {
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid black;
    margin: 0 0.5rem;
    border-radius: 2rem;
    padding: 0.8rem 0.6rem;
    background-color:#91fde2;
    display: inline-block;
}

.itens-container{
    justify-content:start;
    align-items:center;
    display: flex;
    width: 100%;
}



.itens {
    display: flex;
    list-style-type: none;
    width: 100%;
    justify-content: end;
}

.itens li{
    white-space: nowrap;
    border: 1px solid black;
    margin: 0 0.5rem;
    border-radius: 2rem;
    padding: 0.8rem 0.6rem;
    background-color:#91fde2;
}

.itens a{
    color: black;
    font-family: Montserrat, sans-serif;
}

header {
    align-items: center;
    position: relative;
    display: flex;
    height: 11vh;
    
}

.material-icons {
    display: none;
}


.botaovoltar {
  cursor: pointer;
  border: none;
  background-color:transparent;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  background-color: #91fde2;
}

.voltar {
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid black;
    margin: 0 0.5rem;
    border-radius: 2rem;
    padding: 0.8rem 0.6rem;
    background-color:#91fde2;
    display: inline-block;
}

.quadrado { 
    margin: 1rem 7rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.texto {
    background-color: #c4c4c4;
    max-width: 70%;
    border-radius: 3rem;
    padding: 1rem 3rem;
    margin-top: 2rem;
}

.titulo1 {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    color: rgb(255, 255, 255);
    font-size: 3rem;
}


.lista {
    background-color: #cacaca;
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 2rem; 
  border-radius: 2rem;
  padding: 2rem 2rem;
  margin-top: 2rem;
}

.empresa {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
  text-decoration: none;
  color: black;
  font-family: Montserrat;
  font-weight: 600;
}

.empresa:hover {
  background-color: #e0e0e0;
}

.empresa img {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  border-radius: 10px;
}






















@media screen and (max-width: 973px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; 
    background-color: #58f4cc;
  }

  main {
    margin-top: 11vh; 
  }

  #menu-toggle {
    transition: transform 0.3s ease; 
    transform: rotate(0deg);
  }

  #menu-toggle.rotated {
    transform: rotate(90deg);
  }

  button {
    background-color:#58f4cc;
    border: none;
  }

  .quadrado {
    margin: 0 2rem;
  }

  .titulo1 {
    font-size: 2rem;
  }
  
  .texto {
    max-width: 100%;
    margin-top: 2rem;
    padding: 1rem 2rem;
  }


  .lista {
      background-color: #cacaca;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 2rem; 
    border-radius: 2rem;
    padding: 2rem 2rem;
    margin-top: 2rem;
  }


  .itens {
    position: fixed;
    z-index: 10000;
    top: 11vh;
    right: 0;
    width: 100vw;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    height: 89vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 2rem;
  }

  .itens.ativo {
    transform: translateX(0);
  }


  .itens li{
    border: 2px solid #08ce9c;
    margin: 1rem 1.4rem;
    border-radius: 2rem;
    padding: 2rem 3rem;
    background-color:#91fde2;

}

.itens a{
    color: rgb(0, 0, 0);
    font-family: Montserrat, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: start;
}

  .material-icons {
    display: block;
    position: absolute;
    right: 0.5rem;
    z-index: 1000;
  }

    html, body {
    overflow-x: hidden;
  }
}

@media screen and (max-width: 480px) {
  
.lista {
    background-color: #cacaca;
  display: grid;
  grid-template-columns: 1fr; 
  gap: 1rem; 
  border-radius: 2rem;
  padding: 2rem 2rem;
  margin-top: 2rem;
}

}