header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .principal {
    padding: 15px 0;
    transition: all .3s;
}

header.fixo .principal {
    padding: 10px 0;
    background: #002266;
}

header .logo img {
    transition: all .3s;
    width: 150px;
}

header.fixo .logo img {
    width: 100px;
}

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: #fff;
    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;
    gap: 5px;
}

header.fixo .menu ul {
    margin: 5px 0;
}

header .menu ul li {
    position: relative;
}

header .menu ul li a {
    color: #fff;
    font-weight: 400;
    padding: 10px 30px;
    display: block;
    transition: all .4s;
    border-radius: 40px;
    text-align: center;
    font-size: 16px;
}

header .menu ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 270px;
    flex-direction: column;
    background: #fff;
    box-shadow: -1px 14px 10px #0003;
    border-radius: 0 0 10px 10px;
    padding: 15px;
    display: none;
    margin: 0;
}

header .menu ul.sub-menu li {
    width: 100%;
    border-bottom: 1px #cbcbcb solid;
    padding: 10px 0;
    
}

header .menu ul.sub-menu li a {
    color: #000;
    padding: 10px;
}

header .menu ul.sub-menu li a:hover {
    color: #fff;
    background: var(--azul);
}

header .menu ul.sub-menu li span {
    display: block;
    color: #6b6b6b;
    padding-top: 5px;
    font-size: small;
}

header .menu ul.sub-menu li:hover span {
    color: #fff;
}

header .menu li.menu-item-has-children:hover ul.sub-menu {
    display: flex;
}

header .menu li:hover > a,
header .menu a:hover,
header .menu .orcamento a {
    background: #fff;
    color: #000;
}


header .menu .orcamento {
    margin-left: 10px;
}

header .menu li:last-child a {
    border-right: 0;
}

header .menu ul li.whatsapp a {
    width: 40px;
    height: 40px;
    display: block;
    border: 2px #4caf50 solid;
    border-radius: 50%;
    text-indent: -9999px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
    background: url(../img/icone-whats.png) center center no-repeat;
    background-size: 20px;
    margin-left: 10px;
}


/* Slider */
section.slider {
    background: #000;
    background-size: cover;
    display: flex;
    height: fit-content;
}

section.slider .item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    width: 100%;
    overflow: hidden;
}

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: 15px 30px;
    margin-top: -42px;
}

section.nav__especialiadades a {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px #dedede solid;
    width: 100%;
    justify-content: center;
    position: relative;
    font-weight: bold;
}

section.nav__especialiadades a:last-child {
    border: 0;
}

section.nav__especialiadades .icone {
    display: flex;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--laranja);
    align-items: center;
    position: relative;
    justify-content: center;
}

section.nav__especialiadades a:hover .icone,
section.nav__especialiadades a.active .icone {
    background: #333;
}

section.nav__especialiadades a:hover .icone:after,
    section.nav__especialiadades a.active .icone:after {
    content: '';
    width: 10px;
    height: 10px;
    border: 20px #333 solid;
    display: block;
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
}

section.nav__especialiadades a img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    position: relative;
    z-index: 10;
}

section.nav__especialiadades a h3 {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

section.nav__especialiadades a:hover h3 {
    color: var(--laranja);
}

section.nav__especialiadades a h4 {
    font-size: 15px;
    color: #6b6b6b;
    margin-top: 3px;
    font-weight: 500;
}

section.nav__especialiadades a:hover h4 {
    color: var(--laranja);
}

/* Title Pages */
section.title__page {
    background:url(../img/bg-padrao.jpg) center center no-repeat #000;
    display: flex;
    height: 455px;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    padding-top: 70px;
}

section.title__page h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 200;
    text-align: center;
    font-weight: bold;
}

section.title__page p {
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    max-width: 760px;
    margin: auto;
    font-weight: 200;
    padding-bottom: 20px;
}

section.title__page p:after {
    content: '';
    width: 150px;
    height: 5px;
    display: block;
    margin: auto;
    margin-top: 15px;
    background: #fff;
    border-radius: 10px;
}


/* Menu Responsivo */
.menu__responsivo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background: var(--azul);
    height: 100%;
    overflow: auto;
    width: 300px;
    box-shadow: 0 0 30px #00000028;
}

.menu__responsivo .logo {
    margin: 30px;
    text-align: center;
}

.menu__responsivo .logo img {
    max-width: 180px;
}

.menu__responsivo ul {
    border-top: 1px #2b53c0 solid;
}

.menu__responsivo ul li a {
    text-align: center;
    font-weight: bold;
    display: block;
    text-align: center;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    border-bottom: 1px #2b53c0 solid;
}

.menu__responsivo ul.sub-menu li a {
    font-size: 13px;
} 

.menu__responsivo ul li a:hover {
    background: #fff;
    color: #000;
}


.menu__responsivo ul li.orcamento,
.menu__responsivo ul li.whatsapp  {
    display: none;
} 

.menu__responsivo ul li.menu-item-has-children > a {
    position: relative;
}

.menu__responsivo ul li.menu-item-has-children > a::after {
    content: '';
    position: absolute;
    display: block;
    right: 20px;
    top: calc(50% - 10px);
    transform: rotate(135deg) translateY(-50%);
    width: 10px;
    height: 10px;
    border-top: 2px #2b53c0 solid;
    border-right: 2px #2b53c0 solid;
}

.telefone-mobile { 
    display: none; /* Initially hide the buttons on desktop */ 
  } 