header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--verde);
	z-index: 9999;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .principal {
	padding: 10px 0;
	transition: all .3s;
}

header.fixo .principal {
	padding: 10px 0;
}

header .logo img {
	transition: all .3s;
	width: 228px
}

header.fixo .logo img {
	width: 100px;
}

header .social {
	display: flex;
	align-items: center;
	gap: 15px;
}

header .social svg {
	width: 20px;
	height: 20px;
	fill: #fff;
}

header .social a:hover svg {
	fill: var(--verde);
}


.chama__responsivo .lines {
	display: flex;
	gap: 5px;
	flex-direction: column;
}

.chama__responsivo .lines span {
	display: block;
	width: 25px;
	height: 5px;
	background: #004C5E;
	transition: all .3s;
	border-radius: 5px;
}

.chama__responsivo {
	display: flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	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;
}

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 {
	position: relative;
}

header .menu ul li a {
	color: #004B5E;
	font-weight: bold;
	padding: 10px 15px;
	display: block;
	transition: all .4s;
	text-align: center;
	line-height: 1;
	font-size: 17px;
	font-family: 'Bicyclette', sans-serif;
}

header .menu ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 320px;
	flex-direction: column;
	background: var(--verde);
	border-radius: 50px;
	padding: 15px;
	display: none;
	margin: 0;
}

header .menu ul.sub-menu li {
	width: 100%;
}

header .menu ul li.menu-item-has-children {
	position: relative;
	padding-right: 20px;
}

header .menu ul li.menu-item-has-children>a::after {
	content: '';
	position: absolute;
	display: block;
	right: 20px;
	top: calc(50% - 7px);
	transform: rotate(135deg) translateY(-50%);
	width: 7px;
	height: 7px;
	border-top: 2px #004B5E solid;
	border-right: 2px #004B5E solid;
}

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 {
	color: var(--roxo);
}

header .menu .orcamento {
	margin-left: 10px;
}

header .menu li:last-child a {
	border-right: 0;
}

header .menu ul li.whatsapp a {
	display: block;
	border-radius: 50px;
	overflow: hidden;
	box-sizing: border-box;
	padding: 0;
	background: var(--roxo);
	padding: 10px 40px;
	color: #fff;
	margin-left: 50px;
}

/* Slider */
section.slider {
	background: #000;
	background-size: cover;
	display: flex;
	height: fit-content;
    position: relative;
}

section.slider .item {
    position: relative;
}

section.slider .container {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	position: relative;
	width: 100%;
	overflow: hidden;
    position: relative;
	z-index: 12;
	padding: 150px 0;
}

section.slider .item img {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height: 100%;
	display: block;
	z-index: 1;
	object-fit: cover;
}

section.slider a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 15;

}

section.slider h2 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
}

section.slider p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 660px;
    margin: auto;
    margin-bottom: 30px;
}

section.slider button {
    display: table;
    padding: 15px 40px;
    border: 1px #fff solid;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    font-family: var(--font);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
}

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(--azul) !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: var(--verde) !important;
	color: var(--azul);
}

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: var(--azul);
	display: flex;
	padding: 90px 0;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center center;
}

section.title__page h1 {
	color: #fff;
	font-size: 60px;
	font-weight: 200;
	text-align: center;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-direction: column;
}

section.title__page p {
	font-size: 24px;
	line-height: 1.2;
	text-align: center;
	color: #000;
	max-width: 650px;
	margin: auto
}

/* Menu Responsivo */
.menu__responsivo {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	background: var(--verde);
	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 li a {
	text-align: center;
	font-weight: bold;
	display: block;
	text-align: center;
	color: var(--roxo);
	padding: 15px;
	font-size: 18px;
}

.menu__responsivo ul.sub-menu li a {
	font-size: 13px;
}

.menu__responsivo ul li a:hover {
	background: var(--verde);
	color: var(--roxo);
}

.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 var(--roxo) solid;
	border-right: 2px var(--roxo) solid;
}

.telefone-mobile {
	display: none;
	/* Initially hide the buttons on desktop */
}