header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 0 40px #00000028;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .principal {
    padding: 30px 0;
    transition: all .3s;
}

header.fixo .principal {
    padding: 10px 0;
}

header .logo img {
    transition: all .3s;
    width: 370px;
}

header.fixo .logo img {
    width: 190px;
}

header .social {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 200px;
}

header .social svg {
    width: 25px;
    height: 25px;
    fill: var(--marrom);
}

header .social a:hover svg {
    fill: #753d35;
}

header .agendamento .cta__primary {
    align-items: center;
    padding: 10px 20px;
    width: 200px;
    justify-content: center;
}

header .agendamento .cta__primary:focus {
    background: var(--marrom);
    color: #fff;
}

header .agendamento .cta__primary .lines,
.chama__responsivo .lines {
    display: flex;
    gap: 2px;
    flex-direction: column;
}

header .agendamento .cta__primary .lines span,
.chama__responsivo .lines span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--marrom);
    transition: all .3s;
}

.chama__responsivo {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px #dedede solid;
    cursor: pointer;
}

header .agendamento .cta__primary .lines span:last-child {
    width: 25px;
}

header .agendamento .cta__primary:hover .lines span, header .agendamento .cta__primary:focus .lines span {
    width: 24px;
    background: #fff;
}


header .menu .menu-menu-header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 1px #dedede solid;
}

header .menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
    transition: all .3s;
}

header.fixo .menu ul {
    margin: 5px 0;
}

header .menu ul li a {
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    padding: 10px 20px;
    display: block;
    border-right: 1px #dedede solid;
    transition: all .4s;
}

header .menu a:hover {
    background: var(--marrom);
    color: #fff;
}

header .menu li:last-child a {
    border-right: 0;
}


/* Slider */
section.slider {
    background: #e29d7e;
    background-size: cover;
    display: flex;
    height: fit-content;
}

section.slider .item {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-bottom: 90px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

section.slider .item::after {
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    border-bottom: 2px #fff solid;
    border-left: 2px #fff solid;
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    animation: fade_move_down 2s ease-in-out infinite;
}

section.slider h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
}

section.slider p {
    max-width: 775px;
    margin: auto;
    font-size: 21px;
    line-height: 1.5;
    font-weight: 300;
}


section.slider .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    min-width: 100%;
    z-index: 10;
}

section.slider .owl-nav button {
    outline: none;
}

section.slider .owl-nav button span {
    display: flex;
    background: var(--marrom) !important;
    color: #fff !important;
    font-size: 14px !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-indent: -9999px;
    position: relative;
}

section.slider .owl-nav button span:hover {
    background: #000 !important;
}

section.slider .owl-nav button span:before {
    content: '';
    width: 9px;
    height: 9px;
    position: absolute;
    left: 9px;
    top: 10px;
    border-right: 2px #fff solid;
    border-bottom: 2px #fff solid;
    transform: rotate(-45deg);
}

section.slider .owl-nav .owl-prev {
    transform: rotate(180deg);
    margin-left: 20px;
}

section.slider .owl-nav .owl-next {
    margin-right: 20px;
}

@-webkit-keyframes fade_move_down {
    0%   { -webkit-transform:translate(0,-20px) rotate(-45deg); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -webkit-transform:translate(0,20px) rotate(-45deg); opacity: 0; }
}
@-moz-keyframes fade_move_down {
    0%   { -moz-transform:translate(0,-20px) rotate(-45deg); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -moz-transform:translate(0,20px) rotate(-45deg); opacity: 0; }
}
@keyframes fade_move_down {
    0%   { transform:translate(0,-20px) rotate(-45deg); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { transform:translate(0,20px) rotate(-45deg); opacity: 0; }
}


section.nav__especialiadades {
    display: flex;
    align-content: center;
    justify-content: center;
    position: relative;
    z-index: 99;
}

section.nav__especialiadades .boxed {
    background: #fff;
    box-shadow: 0 0 50px #00000021;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    margin-top: -42px;
}

section.nav__especialiadades a {
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px #dedede solid;
    width: 100%;
    justify-content: center;
}

section.nav__especialiadades a:last-child {
    border: 0;
}

section.nav__especialiadades a img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

section.nav__especialiadades a h3 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

section.nav__especialiadades a:hover h3 {
    color: var(--marrom);
}

/* Title Pages */
section.title__page {
    background: url(../img/bg-interno.jpg) center center no-repeat;
    display: flex;
    height: 355px;
    align-items: center;
    justify-content: center;
    background-size: cover;
}

section.title__page h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    text-align: center;
}


/* Menu Responsivo */
.menu__responsivo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #fff;
    height: 100%;
    overflow: auto;
    width: 300px;
    box-shadow: 0 0 30px #00000028;
}

.menu__responsivo .logo {
    margin: 30px;
}

.menu__responsivo ul {
    border-top: 1px #dedede solid;
}

.menu__responsivo ul li a {
    text-align: center;
    font-weight: bold;
    display: block;
    text-align: center;
    color: #000;
    padding: 15px;
    font-size: 16px;
    border-bottom: 1px #dedede solid;
}

.menu__responsivo ul li a:hover {
    background: var(--marrom);
    color: #fff;
}