@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
  margin-bottom: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  position: relative;
}

/* Estilo do footer */
footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #9b5d00;
  color: white;
  text-align: center;
  padding: 10px;
  z-index: 100;
}

a {
  text-decoration: none;
}



.navbar {
    z-index: 1000;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
    transition: background-color 0.3s ease;
    position: fixed;
    width: 98vw;
    height: 14vh;

    /* Arredondamento da parte inferior */
    border-bottom-left-radius: 10050px; /* Menor que o da direita */
    border-bottom-right-radius: 10050px; 
    overflow: hidden; /* Para garantir que nada saia do contêiner */
}

.navbar::after {
    content: '';
    position: absolute; 
    bottom: 0; 
    left: 0;
    width: 100%;
    height: 100%; 
    border: 2px solid transparent; 
    border-bottom-left-radius: 10010px; 
    border-bottom-right-radius: 10060px; 
    border-color: transparent transparent #ff9a00 transparent; 
    pointer-events: none; 
}

.navbar.colored {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

#linha {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff9a00;
  transition: width 0.3s ease, left 0.3s ease;
}

.navbar.opacity {
  background-color: #f5f5f5;
  backdrop-filter: saturate(180%) blur(4px);
}

#icones {
  display: block;
  margin-left: 17em;

}

#icones a {
  margin-right: 5em;
  text-decoration: none;
  color: #000;
}

#icones a:hover {

  color: black;
}


#icones img {
  width: 200px;
  height: 200px;
  margin-right: 15em;
}


#icones {
  display: flex;
  justify-content: space-around;
  width: 700px;
  align-items: center;
  color: white;
  margin-left: -350px;
  
}

.imagem {
  position: fixed;
  z-index: -1;
}
