.cabecalho {
    display: flex;
    flex-direction: column;
}

.container__logo__nav {
    background-color: var(--laranja-claro);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    padding: 2rem;
    position: fixed;
    z-index: 9999;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.06);
}

.logo {
    width: 5rem;
}

.container__contatos {
    display: flex;
    align-items: center;
    gap: 1rem; 
}

.tefone__whatsapp__instagram__facebook {
    height: .8rem;
}

.img__contato {
    height: .8rem;
    width: .8rem;
}

#btn__mobile {
    display: flex;
    font-size: 0.7rem;
    font-family: 'Actay';
    color: var(--azul-escuro);
    border: none;
    background: none;
    cursor: pointer;
    gap: .5rem;
}

#hamburger {
    display: block;
    border-top: 2px solid var(--azul-escuro);
    width: 20px;
}

#hamburger::after, #hamburger::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 4px;
    transition: .3s;
    position: relative;
}

.cabecalho__menu {
    position: absolute;
    display: flex; 
    flex-direction: column;
    width: 50%;
    height: 0px;
    top: 80px;
    right: -1px;
    padding: .5rem;
    padding-top: 1.5rem;
    transition: .5s;
    visibility: hidden;
    text-align: center;
    z-index: 999;
    background-color: var(--laranja-claro);
    gap: 1.5rem;
    overflow-y: hidden;
    
}

.cabecalho__link {
    font-size: 0.8rem;
    font-family: 'Actay';
}

.cabecalho__link a {
    color: var(--azul-escuro);
    cursor: pointer;
    text-decoration: none;
    border-bottom: 2px solid rgba(58, 28, 0, 0.09);
    display: block;
}

.cabecalho__link a:hover {
    color: var(--laranja);
}

.cabecalho .active {
    color: var(--laranja);
}

#cabecalho__navegacao.active .cabecalho__menu {
    display: flex;
    height: calc(100vh - 80px);
    visibility: visible;
    overflow-y: auto;
}

#cabecalho__navegacao.active #hamburger {
    border-top-color: transparent;
}

#cabecalho__navegacao.active #hamburger::before {
    transform: rotate(135deg);
}

#cabecalho__navegacao.active #hamburger::after {
    transform: rotate(-135deg);
    top: -6px;
}

.container__titulo__banner{
    margin-top: 5rem;
    z-index: 5; 
    display: flex;
    justify-content: center;  
}

.banner {
    width: 100%;
    border-radius: 10px 10px 10px 10px;
}

@media screen and (min-width: 1100px) {
    .logo {
        width: 7rem;
    }
    
    .container__contatos {
        gap: 2rem; 
    }

    .cabecalho__link {
        font-size: 1rem;
        font-family: 'Actay';
    }
    
    .tefone__whatsapp__instagram__facebook {
        height: 1rem;
    }
    
    .img__contato {
        height: 1rem;
        width: 1rem;
    } 

    .cabecalho__menu {
        display: flex;
        flex-direction: row;        
        position: initial;
        height: max-content;
        visibility: visible;
        width: max-content;
        padding: 0;
    }

    .cabecalho__link a{
        cursor: pointer;  
        text-decoration: none;
        border-bottom: none;
        display: block;
    }

    #btn__mobile {
        display: none;
    }
}

@media screen and (min-width: 820px) {
    .container__titulo__banner{
        background-color: var(--laranja-claro); 
        border-radius: 10px 10px 10px 10px;
    }
    
    .banner {
        width: 820px;
        height: 360px;
        border-radius: 0;
    }
}