header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 1000;
    background-color: rgb(0, 0, 0);

}

.container__cabecalho__link i{
  font-size: 42px;
  color: #0a66c2;
}


.container__bannertopo{
    display: flex;
    justify-content: center;
}

.container__bannertopo img{
        height: max-content;
    width: 100%;
}


.container__cabecalho{
    display: flex;
    align-items: center;
    background-color: rgb(0, 0, 0);
    padding: 20px;
    justify-content: space-between;
}

.container__cabecalho__nav ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.container__cabecalho__nav ul li a:hover {
  color: #00bcd4; /* cor de destaque */
}


.container__cabecalho__logo img{
    width: 270px;
}

.container__cabecalho__nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 264px;
}

.container__cabecalho__nav li{
    list-style-type: none;
    padding: 10px;

}
.container__cabecalho__nav a{
    text-decoration: none;
    font-size: 18px;
    color: rgb(255, 255, 255);
    font-family: 'sans-serif' , Montserrat;
}


/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}



/* Botão do menu */
.menu-toggle {
  width: 30px;
  cursor: pointer;
}
.menu-toggle i{
    color: aliceblue;
}


/* Menu (oculto por padrão) */
.menu {
  display: none;
  margin-top: 20px;
}

.menu ul {
  list-style: none;
}

.menu li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

/* Classe ativa */
.menu.active {
  display: block;
}


.container__header__hamburguer{
    display: none;
}