/* CABEÇALHO */
/* FUNDO BRANCO DO CABEÇALHO */
#cabeçalho {
    /* position: fixed; */
    margin-bottom: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: #F8F8FF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* DIV COM BOTÕES E LOGO NO CABEÇALHO */
#meio {
    width: clamp(1000px,60%,1200px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* LOGO */
#cabeçalho img {
    /* width: 28%; */
    width: clamp(250px,30%,350px);
    height: auto;
    box-sizing: border-box;
    padding-left: 70px;
}
/* BOTOES DO CABECALHO */
.buttons {
    display: flex;
}
.buttons a {
    text-decoration: none;
    color: #063643;
    padding: 10px 15px;
    transition: 0.3s;
    border-radius: 10px;
    background: none;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 120%;
    line-height: 100%;
    letter-spacing: 0%;
}
.buttons a:hover {
    background: #6BB7CB66;
}