footer {
    background: #4b3833;
    padding: 100px 0;
}

footer .principal .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .principal .right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 55px;
}

footer .principal .endereco {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fae7e2;
    line-height: 20px;
}

footer .principal .endereco a {
    color: #fae7e2;
}

footer .principal .endereco strong {
    display: block;
    color: #fae7e2;
}

footer .principal .endereco svg {
    width: 35px;
    fill: #b9a6a1;
}

footer .social {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .social svg {
    width: 25px;
    height: 25px;
    fill: #b9a6a1;
}

footer .social a:hover svg {
    fill: var(--marrom);
}

footer .agendamento .cta__primary {
    align-items: center;
    padding: 15px 30px;
    background: transparent;
    color: #fff;
    border-color: #dac7c2;
    width: 220px;
    justify-content: center;
}

footer .agendamento .cta__primary .lines {
    display: flex;
    gap: 2px;
    flex-direction: column;
}

footer .agendamento .cta__primary .lines span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #dac7c2;
    transition: all .3s;
}

footer .agendamento .cta__primary .lines span:last-child {
    width: 25px;
}

footer .agendamento .cta__primary:hover .lines span {
    width: 24px;
    background: #fff;
}

footer .menu  {
    margin-top: 45px;
    padding-bottom: 45px;
}

footer .menu .menu-menu-footer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 1px #dedede solid;
}

footer .menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
    border-bottom: 1px #64504b solid;
}

footer .menu a {
    text-transform: uppercase;
    color: #b9a6a1;
    font-weight: 600;
    padding: 10px 30px;
    display: block;
    border-right: 1px #64504b solid;
    transition: all .4s;
}

footer .menu a:hover {
    background: var(--marrom);
    color: #fff;
}

footer .menu li:last-child a {
    border-right: 0;
}

footer .copy .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .copy p {
    color: #9a8884;
    font-size: 12px;
}

footer .copy img {
    width: 60px;
    opacity: .45;
    display: block;
}


/* Agendamento */
.agendamento__sidebar {
    position: fixed;
    height: 100%;
    width: 350px;
    background: #fff;
    z-index: 9999;
    right: 0;
    top: 0;
    padding:30px;
    transform: translateX(100%);
    transition: all .5s;
    overflow: auto;
}

.agendamento__sidebar.open  {
    box-shadow: 0 0 30px #0000003a;
    transform: translateX(0);
}

.agendamento__sidebar h2 {
    text-transform: uppercase;
    font-size: 16px;
    border-bottom: 1px #dedede solid;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
    padding-right: 30px;
}

.agendamento__sidebar .fechar {
    width: 2px;
    height: 25px;
    position: absolute;
    right: 30px;
    top: 25px;
    transform: rotate(-45deg);
    cursor: pointer;
    z-index: 30;
    width: 25px;
}

.agendamento__sidebar .fechar:after {
    content:'';
    width: 25px;
    height: 2px;
    background: var(--marrom);
    display: block;
    position: absolute;
    top: 11px;
    left: 0;
}

.agendamento__sidebar .fechar:before {
    content:'';
    width: 25px;
    height: 2px;
    background: var(--marrom);
    display: block;
    position: absolute;
    top: 11px;
    left: 0;
    transform: rotate(90deg);
}

.agendamento__sidebar .box {
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 0 10px #00000018;
    margin-bottom: 30px;
}

.agendamento__sidebar img {
    width: 90px;
    height: 120px;
    object-fit: cover;
    display: block;
}

.agendamento__sidebar .box .content {
    flex:1;
    padding-right: 10px;
}

.agendamento__sidebar .agendamento {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px #3b8400 solid;
    color: #333;
    font-weight: bold;
    gap: 10px;
    text-transform: uppercase;
    padding:5px 10px;
    transition: all .4s;
    font-size: 12px;
    width: 100%;
}

.agendamento__sidebar .agendamento svg {
    width: 15px;
    height: 15px;
    fill: #3b8400;
}

.agendamento__sidebar .agendamento:hover {
    background: #3b8400;
    color: #fff;
}

.agendamento__sidebar .agendamento:hover svg {
    fill: #fff;
}

.agendamento__sidebar .box .content h3 {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.agendamento__sidebar .box .content .cargo {
    margin-bottom: 20px;
    color: var(--marrom);
    font-size: 12px;
    font-weight: bold;
}