*{
    margin: 0;
    padding: 0;
}
.cabecalho{
    padding:2% 0 0 12%;
    height: 5%;
    width: 100%;
    display: flex;
    gap: 40%;
    top: 0%;
    align-items: center;
    transition: background 0.3s ease;
    z-index: 1000;
}
.cabecalho.ativo{
    background: transparent;
}
.logo{
    font-size: 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.cabecalho__menu{
    display: flex;
    gap:70px;
}
.cabecalho__menu__link{
    font-size:20px;
    text-decoration: none;
    color: white;
    font-weight:500px;
}
.cabecalho__menu__link:hover{
    color: black;
    text-decoration: underline;
    transition: 1s;
}
.cabecalho__menu__link.ativo{
    color: #00f5ff;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1100;
    flex-shrink: 0;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #00CED1;
    border-radius: 3px;
    transition: 0.3s;
}
@media (max-width: 1024px) {

.cabecalho { 
        padding: 2% 4%; gap: 30%; 
}
.cabecalho__menu { 
    gap: 30px; 
}
.cabecalho__menu__link {
     font-size: 15px; 
}

}
@media (max-width:768px) {
     .cabecalho {
        padding: 12px 5%;
        gap: 0;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        background: #105e4d !important;
        height: auto;
        overflow: visible;
        box-sizing: border-box;
    }
    .menu-toggle {
        display: flex;
        margin-left: auto;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    .cabecalho__menu {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        background: #105e4d;
        padding: 8px 0 16px;
        border-top: 1px solid #1a1a1a;
    }
    .cabecalho__menu.aberto { display: flex; }
    .cabecalho__menu__link {
        font-size: 17px;
        padding: 13px 5%;
        border-bottom: 1px solid #1a1a1a;
        width: 100%;
        box-sizing: border-box;
    }
}
