@font-face {
    font-family: 'Host Grotesk';
    src: url('fonts/HostGrotesk-Regular.woff2') format('woff2'),
         url('fonts/HostGrotesk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Host Grotesk';
    src: url('fonts/HostGrotesk-Bold.woff2') format('woff2'),
         url('fonts/HostGrotesk-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}



html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Host Grotesk', sans-serif;
   background-image: url('../img/Portal-Chamados.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh; /* Ajusta a altura da imagem para a altura total da viewport */
  width: 100vw; /* Ajusta a largura da imagem para a largura total da viewport */
  
}

header {
 
  padding: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

nav ul li {
  margin-left: 20px;
}

nav a {
  text-decoration: none;
  color: black;
}

#faq {
  position: absolute;
  left: 10px;
  top: 10px;
}

main {
  text-align: center;
  padding: 140px 20px;
}

.botoes-centro {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.botao {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 150px;
  height: 150px;
  margin: 10px;
  background-color: #FFFFFF;
  color: #3FAD88;
  text-decoration: none;
  border-radius: 15px;
  padding: 10px;
}


.faq {
  color: #FFFFFF;
  justify-content: left;
}

.titulo {
  color: #FFFFFF;
  text-align: left;
  padding-left: 80px;
   font-size: 44px; 
}

.botao img {
  width: 50px;
  height: 50px;
}

.botao:hover {
	background-image: linear-gradient(to right, #ffffff 0%, #f0fff4 100%);
    box-shadow: 0 4px 12px rgba(29,90,61,0.2);
    transform: translateY(-3px);
}




.btn:hover {
  background-image: linear-gradient(to right, #ffffff 0%, #f0fff4 100%);
  box-shadow: 0 4px 12px rgba(29,90,61,0.2);
  transform: translateY(-3px);
}

.btn {
  background-color: white;
  color: #3FAD88 !important; 
  text-transform: uppercase; 
  text-decoration: none; 
  font-weight: bold; 
  width: 150px;
  height: 150px;
  margin: 10px;
  border-radius: 15px;
  padding: 10px;
}

footer {
  background-color: rgba(240, 240, 240, 0.8);
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

footer .contato, footer .marca {
  text-align: left;
  color: #3FAD88;
  padding-left: 20px;
}

footer .marca img {
  width: 150px;
  height: auto; /* Corrigido para manter a proporção da imagem */
  color: #3FAD88;
}

/* Estilos para telas pequenas (como smartphones) */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  
  nav ul li {
    margin: 10px 0;
  }
}