header{
    height: 120px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #cc8aa9;
}

header img{
    max-height: 100px;
    margin-right: 60px;
}

header nav{
    display: flex;
    flex-direction: row;
    align-items: center;
}

header nav a{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 15px;
    color: white;
    font-weight: 600;
    height: 100px;
    transition: all 0.3s ease;
}

header nav #whatsapp{
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #8ab19e;
    background: #8ab19e;
    color: white;
    height: fit-content;
    margin-left: 20px;
    border-radius: 20px;
}

header nav #whatsapp i{
    margin-right: 4px;
    margin-left: 0px;
}

header nav #whatsapp:hover{    
    border: 1px solid #8ab19e;
    background: #8ab19e;
    color: white;
}

header nav a:hover{
    color: #f8f8f8;
    transform: scale(1.05);
}

header nav a i{
    margin-left: 4px;
}

.hamburguer{
    color: white;
    border: none;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 30px;
    position: absolute;
    right: 20px; 
}

#botaoProcedimentosPagina{
    display: none;
}

.hamburguer:hover{
    color: #f8f8f8;
    transform: scale(1.05);
    cursor: pointer;
}

.procedimentos{
    display: none;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    height:370px;
    width: 100%;
    background: #f8f8f8;
    box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 100px;
    z-index: 1001;
    padding: 40px 0px;
}
.procedimentos .coluna{
    height: 290px;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 0px 0px;
    padding: 0px 25px;
    border-right: 1px solid #e9e9e9;
}

.procedimentos .coluna:last-child{
    border-right:none;
}

.procedimentos .coluna p{
    width: 100%;
    padding: 5px 15px;
    color: #cc8aa9;
    margin-bottom: 10px;

}
.procedimentos .coluna a{
    width: 100%;
    padding: 5px 15px;
    color: #333;
    transition: all 0.2s ease;
}

.procedimentos .coluna a:hover{
    color: #cc8aa9;
}



@media only screen and (min-width: 900px){
    .hamburguer{
        display: none;    
    }
    .overlay{
        display: none;
    }
}

@media only screen and (max-width: 900px){

    .hamburguer{
        display: block;    
    }
    .menu{
        display: none;
        flex-direction: column;
        align-items: start;
        z-index: 50;
        position: fixed;
        top: 0;
        right: 0;
        padding: 20px 30px;
        background: #cc8aa9;
        height: 100vh;
        width: 80%;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    }
    header nav a{
        height: 50px;

    }
    header nav #whatsapp{
        width: 100%;
        margin: 0;
        margin-top: 20px;
        text-align: center;
    }
    header img{
        margin: 0;
    }
    #botaoProcedimentos{
        display: none;
    }
    #botaoProcedimentosPagina{
        display: block;
    }
}

.show{
    display: flex;
}