body,
ul {
  margin: 0px;
  padding: 0px;
}
header p {
  margin-left: 20px;
  color: black;
}
.logotipo {
  margin-left: 100px;
  display: flex;
  align-items: center;
  color: antiquewhite;
  font-size: 30px;
}

.tituloPrincipal {
  color: rgb(53, 53, 53);
  font-size: 28px;
}
a {
  color: black;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 25px
}

a:hover {
  background: rgba(0, 0, 0, 0.05);
  
}

#header { /* cabeza de página*/
  box-sizing: border-box;
  height: 120px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #D3D2D0;
  width: 100%;
}
#menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

#menu a {
  display: block;
  padding: 0.5rem;
}

#btn-mobile {
  display: none;
}

.parceiras {
  color: aliceblue;
}
.parceiras a {
  color: aliceblue;
}


.footerIcons img {
  width: 40px;
  height: 40px;
}
footer { /* pé do site*/
  color: white;
  background-color: #468B9E;
  text-align: center;
  padding: 0px;
  width: 100%;
}


/* Estilo para o footer */
/* Garantir que o footer ocupe toda a largura */
footer {
  color: #FFF; /* Cor do texto */
  background-color: #468B9E; /* Cor de fundo */
  text-align: center; /* Centraliza o conteúdo */
  padding: 20px 0; /* Espaçamento vertical */
  width: 100vw; /* Garante largura total da viewport */
  position: absolute; /* Mantém o footer no fluxo da página */
  box-sizing: border-box; /* Inclui padding e borda no cálculo da largura */
  overflow-x: hidden; /* Evita que conteúdo extra saia da largura */
  margin: 0; /* Remove margens externas */
}

/* Remover possíveis margens do body e html */
html, body {
  margin: 0;
  padding: 0;
  width: 100%; /* Garante largura total */
  overflow-x: hidden; /* Impede elementos de excederem a tela */
}

/* Ajustar elementos internos para não ultrapassar a largura */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Inclui padding e borda no cálculo */
}




#nav {
  font-size: 18px;
  margin-right: 30px;
}

@media (max-width: 600px) {
  .tituloPrincipal{
    display: none;
  }
  .logotipo {
    margin-left: 20px;
    display: flex;
    color: antiquewhite;
    font-size: 25px;
  }
  #menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0px;
    background: #e7e7e7;
    transition: 0.6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
  }

  #nav.active #menu {
    height: calc(100vh - 70px);
    visibility: visible;
    overflow-y: auto;
  }
  #menu a {
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  }
  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }
  #hamburger {
    border-top: 2px solid;
    width: 20px;
  }
  #hamburger::after,
  #hamburger::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }
  #nav.active #hamburger {
    border-top-color: transparent;
  }
  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }
  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
  .parceiras {
    color: rgb(169, 169, 169);
  }
  .parceiras a {
    color: darkgray;
  }


}
