@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-color: rgb(202, 202, 202);
    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 {
  border: none;
  background-color:transparent;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.voltar {
    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;
}

.secao2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.quadrado {
    background-color: rgb(202, 202, 202);
    border-radius: 3rem;
    padding: 2rem 5rem;
    display: flex;
    flex-direction: column;
    margin: 1rem 0rem;
}

.empresa img{
    width: 7rem;
    border-radius: 1.3rem;
}

.cima {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}


.empresa {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2rem;
}

.links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.links{
    font-size: 2rem;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    color: rgb(255, 255, 255);
    background-color: rgb(73, 73, 73);
    border-radius: 2rem;
    padding: 1rem 2rem;
}

.cima h1{
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-size: 3rem;
}


.meio {
  display: block;
  background-color: #9c9c9c;
  border-radius: 1rem;
  padding: 2rem 2rem;
}

.texto {
  position: relative;
  display: block;
}

  .texto img {
    height: auto;
    float: right;
    aspect-ratio: 4 / 5;
    width: 20rem;
    margin: 0 0 1rem 1rem;
    border-radius: 0.5rem;
  }


.texto p {
  font-size: clamp(0.8rem, 1.4vw, 2rem);
  line-height: 1.5;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}




























@media screen and (max-width: 973px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; 
    background-color: #58f4cc;
  }

  body {
    margin-bottom: 2rem;
  }

  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;
  }
 

  .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;
  }

  .quadrado {   
    padding: 1rem;
    border-radius: 0;
    max-width: 100%;
    height: 89vh;
    margin: 4rem 0 0 0;
  }


  .empresa {
    display: flex;
    justify-content: start;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .empresa img{
    width: clamp(2rem, 15vw, 10rem);
  }

  .cima h1{
    font-size: clamp(1rem, 10vw, 4rem);
  }

  .cima {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-bottom: 0;
  }



  .links-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10%;
    padding-left: 5rem;
  }

  .links{
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    color: rgb(255, 255, 255);
    background-color: rgb(73, 73, 73);
    font-size: clamp(0.8rem, 2.6vw, 3rem);
    padding: clamp(0.5rem, 2vw, 3rem) clamp(1.2rem, 4vw, 8rem);
    border-radius: clamp(1rem, 2vw, 2rem);
}

.meio {
  display: block; /* permite o float funcionar normalmente */
  background-color: #9c9c9c;
  border-radius: 1rem;
  padding: 1rem;
}

.texto {
  position: relative;
  display: block;
}

  .texto img {
    float: right;
    width: clamp(5rem, 40vw, 12rem);
    margin: 0 0 1rem 1rem;
    border-radius: 0.5rem;
  }


.texto p {
  font-size: clamp(0.8rem, 4vw, 1.2rem);
  line-height: 1.5;
}

    html, body {
    overflow-x: hidden;
  }
}
