@charset "utf-8";

/******************************
[Sumário de Estilos]

1. Fontes Importadas
2. Configurações Gerais e Resets
3. Estrutura do Cabeçalho (Header)
4. Painel do Menu Lateral (Mobile)
5. Seção de Diferenciais (Why)
6. Seção de Chamada para Ação (CTA)
7. Seção de Introdução e Formulário (Intro)
8. Seção de Experiências (Services)
9. Seção de Frase de Destaque (Extra)
10. Rodapé Estrutural (Footer)
11. Elementos da Página Sobre Mim
******************************/

/* 1. Fontes Importadas */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900');

/* 2. Configurações Gerais e Resets */
* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	box-sizing: border-box;
}
body {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	background: #FFFFFF;
	color: #a5a5a5;
}
div {
	display: block;
	position: relative;
}
ul {
	list-style: none;
	margin-bottom: 0px;
}
p {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 2.14;
	font-weight: 500;
	color: #828282;
}
p:last-of-type {
	margin-bottom: 0;
}
a {
	text-decoration: none;
	color: inherit;
	transition: all 200ms ease;
}
::selection {
	background: rgba(87,204,195,0.75);
	color: #FFFFFF;
}
h1 { font-size: 60px; }
h2 { font-size: 48px; }
h3 { font-size: 36px; }
h4 { font-size: 24px; }
h5 { font-size: 18px; }
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.2;
	color: #404040;
}
.trans_200 { transition: all 200ms ease; }
.trans_400 { transition: all 400ms ease; }

.super_container {
	width: 100%;
	overflow: hidden;
}
.parallax-window {
    min-height: 400px;
    background: transparent;
}
.parallax_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.button {
	height: 46px;
	border-radius: 20px;
}
.button a {
	display: block;
	padding-left: 40px;
	padding-right: 36px;
	line-height: 42px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
}
.button_1 {
	background: #887154;
	border: solid 2px transparent;
}
.button_1 a {
	color: #FFFFFF;
}
.button_1:hover {
	background: transparent;
	border: solid 2px #887154;
}
.button_1:hover a {
	color: #887154;
}
.section_subtitle {
	font-size: 18px;
	font-weight: 500;
	color: #a6abb2;
	line-height: 0.75;
}
.section_title {
	margin-top: 9px;
}
.intro_text {
	margin-top: 32px;
}

/* 3. Estrutura do Cabeçalho (Header) */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	z-index: 100;
	background: #FFFFFF;
}
.header_content {
	width: 100%;
	height: 117px;
	padding-left: 100px;
	padding-right: 102px;
}
.header.scrolled .header_content {
	height: 75px;
	box-shadow: 0px 5px 15px rgba(87,204,195,0.15);
}
.logo a {
    display: flex;
    align-items: center;
}
.main_logo {
    max-height: 75px;
    width: auto;
    object-fit: contain;
    transition: all 400ms ease;
}
.header.scrolled .main_logo {
    max-height: 40px;
}
.main_nav {
	margin-left: 226px;
}
.main_nav ul li a {
	font-size: 15px;
	font-weight: 600;
	color: #404040;
	white-space: nowrap;
}
.main_nav ul li a:hover,
.main_nav ul li.active a {
	color: #7E8C54;
}
.main_nav ul li:not(:last-child) {
	margin-right: 33px;
}
.work_hours {
	font-size: 15px;
	font-weight: 600;
	color: #404040;
	margin-right: 26px;
	white-space: nowrap;
}
.header_phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 46px;
	border-radius: 20px;
	background: #7E8C54;
	padding-left: 40px;
	padding-right: 36px;
	line-height: 46px;
	font-size: 14px;
	font-weight: 600;
	color: #FFFFFF;
	margin-right: 12px;
}
.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
.social ul li {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #e6ebf1;
	transition: all 200ms ease;
}
.social ul li:hover {
	background: #7E8C54;
}
.social ul li:hover a i {
	color: #FFFFFF;
}
.social ul li:not(:last-of-type) {
	margin-right: 15px;
}
.social ul li a {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 34px;
	text-align: center;
}
.social ul li a i {
	font-size: 16px;
	color: #404040;
}
.hamburger {
	display: none;
	cursor: pointer;
	border: solid 1px transparent;
	border-radius: 7px;
}
.hamburger i {
	font-size: 20px;
	color: #404040;
	padding: 5px 7px;
}

/* 4. Painel do Menu Lateral (Mobile) */
.menu {
	position: fixed;
	top: 0;
	right: -350px;
	width: 350px;
	height: 100vh;
	background: #7E8C54;
	z-index: 102;
	padding: 50px 30px 0 30px;
}
.menu.active {
	right: 0;
}
.menu_overlay {
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(255,255,255,0.75);
	z-index: 101;
	visibility: hidden;
	opacity: 0;
}
.menu_overlay.active {
	visibility: visible;
	opacity: 1;
}
.menu_close_container {
	position: absolute;
    top: 41px;
    left: 28px;
    width: 18px;
    height: 18px;
    transform: rotate(45deg);
    cursor: pointer;
    z-index: 1;
}
.menu_close div {
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    top: 8px;
}
.menu_close div:last-of-type {
    transform: rotate(90deg) translateX(-2px);
    transform-origin: center;
}
.menu_nav {
	margin-top: 75px;
}
.menu_nav ul li:not(:last-child) {
	margin-bottom: 1px;
}
.menu_nav ul li a {
	font-size: 24px;
	font-weight: 500;
	color: rgba(255,255,255,0.75);
}
.menu_social {
	position: absolute;
	bottom: 30px;
	left: 30px;
}
.menu_extra {
	margin-top: 50px;
}
.menu_link {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255,255,255,0.75);
}

/* 5. Seção de Diferenciais (Why) */
.why {
	width: 100%;
	background: #eff3f7;
	margin-top: 117px;
}
.why_content {
	padding-top: 102px;
	padding-bottom: 90px;
}
.why_list {
	margin-top: 37px;
}
.icon_container {
	width: 61px;
	height: 61px;
	border-radius: 50%;
	background: #6bdbd2;
}
.icon {
	width: 32px;
	height: 32px;
}
.icon img {
	max-width: 100%;
}
.why_list_content {
	padding-left: 37px;
}
.why_list_title {
	font-size: 18px;
	font-weight: 600;
	color: #404040;
	line-height: 1.2;
}
.why_list_text {
	font-size: 14px;
	font-weight: 500;
	color: #868686;
}
.why_image_container {
	width: 100%;
	height: 100%;
}
.why_image {
	position: absolute;
	bottom: 0;
	right: 0;
}

/* 6. Seção de Chamada para Ação (CTA) */
.cta {
	width: 100%;
	background: #887154;
	padding-top: 49px;
	padding-bottom: 46px;
}
.cta_title {
	font-size: 36px;
	font-weight: 600;
	color: #FFFFFF;
	line-height: 1.2;
}
.cta_text {
	font-size: 14px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 2;
}
.cta_phone {
	height: 59px;
	padding: 0 25px 0 24px;
	line-height: 59px;
	text-align: center;
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	background: #ee4860;
	border-radius: 19px;
	white-space: nowrap;
}

/* 7. Seção de Introdução e Formulário */
.intro {
	width: 100%;
	background: #EFF3F7;
	padding: 89px 0 90px 0;
}
.intro_content {
	padding-top: 30px;
}
.milestones {
	margin-top: 85px;
}
.milestone_counter {
	font-size: 36px;
	font-weight: 700;
	color: #7E8C54;
	line-height: 0.75;
}
.milestone_text {
	font-size: 18px;
	font-weight: 600;
	color: #404040;
	line-height: 1.5;
	margin-top: 5px;
}
.intro_form_container {
	width: 100%;
	background: #FFFFFF;
	padding: 136px 34px 63px 33px;
	box-shadow: 0px 25px 38px rgba(0,0,0,0.2);
}
.intro_form_title {
	position: absolute;
	top: 0;
	left: 0;
	width: 336px;
	height: 80px;
	background: #7E8C54;
	line-height: 80px;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	color: #FFFFFF;
}
.intro_input {
	width: calc((100% - 15px) / 2);
	height: 62px;
	background: transparent;
	border: solid 2px #e6ebf1;
	margin-bottom: 18px;
	padding-left: 25px;
	outline: none;
	font-size: 15px;
	color: #404040;
	font-weight: 500;
}
.intro_input:focus,
.intro_input:hover {
	border: solid 2px #7E8C54;
}
.intro_button {
	width: 100%;
	font-size: 14px;
	font-weight: 700;
	color: #FFFFFF;
	text-transform: uppercase;
	border: solid 2px transparent;
	cursor: pointer;
}

/* 8. Seção de Experiências (Services) */
.services {
	background: #FFFFFF;
	padding: 91px 0 25px 0;
}
.services_row {
	margin-top: 68px;
}
.service_col {
	margin-bottom: 55px;
}
.service_title {
	font-size: 20px;
	font-weight: 600;
	color: #404040;
	line-height: 1.2;
	margin-top: 17px;
}
.service_text {
	margin-top: 21px;
	text-align: left;
}

/* 9. Seção de Frase de Destaque (Extra) */
.extra {
	padding: 54px 0 53px 0;
}
.extra_content {
	background: #FFFFFF;
	width: 393px;
	padding: 74px 30px 63px 46px;
	box-shadow: 0px 25px 38px rgba(0,0,0,0.2);
}
.extra_title {
	font-size: 72px;
	font-weight: 600;
	color: #404040;
	margin-top: 16px;
	line-height: 1.11;
}
.extra_text {
	margin-top: 20px;
}
.extra_link {
	display: inline-block;
	margin-top: 47px;
}

/* 10. Rodapé Estrutural (Footer) */
.footer {
	display: block;
	position: relative;
	background: #26292d;
}
.footer_content {
	padding: 94px 0 51px 0;
}
.footer_about {
	padding-top: 19px;
}
.footer_about_text {
	margin-top: 42px;
}
.footer_about_text p {
	color: #868686;
}
.footer_logo_img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}
.footer_title {
	font-size: 16px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 1.2;
}
.footer_contact {
	padding-top: 40px;
}
.contact_list {
	margin-top: 44px;
}
.contact_list li {
	font-size: 15px;
	font-weight: 500;
	color: #878787;
	margin-bottom: 12px;
}
.footer_location {
	padding-top: 40px;
}
.locations_list {
	max-width: 180px;
	margin-top: 42px;
}
.locations_list li {
	line-height: 1.6;
	margin-bottom: 19px;
}
.location_title {
	font-size: 15px;
	font-weight: 500;
	color: #7E8C54;
}
.location_text {
	margin-top: 13px;
}
.opening_hours {
	left: -32px;
	width: calc(100% + 67px);
	padding: 38px 35px 40px 32px;
	border: solid 2px #4d5157;
}
.opening_hours_list {
	margin-top: 44px;
}
.opening_hours_list li {
	white-space: nowrap;
	margin-bottom: 9px;
}
.footer_bar {
	width: 100%;
	background: #181a1d;
}
.footer_bar_content {
	height: 49px;
}
.copyright {
	font-size: 12px;
	font-weight: 500;
	color: #646464;
}
.footer_nav ul li:not(:last-child) {
	margin-right: 29px;
}
.footer_nav ul li a {
	font-size: 12px;
	font-weight: 500;
	color: #818181;
}
.footer_nav ul li a:hover {
	color: #7E8C54;
}

/* Ajustes Responsivos Básicos de Logotipo */
.menu .logo img,
.hamburger_container .logo img,
.menu_nav .logo img {
    max-height: 45px !important;
    width: auto !important;
    object-fit: contain;
}
@media only screen and (max-width: 991px) {
    .main_logo {
        max-height: 55px !important;
    }
    .header_content {
        height: 70px !important;
    }
}

/*********************************
11. Elementos da Página Sobre Mim
*********************************/
.about_page {
	margin-top: 150px;
	padding-bottom: 60px;
}
.about_image.h-100 {
	height: 100% !important;
}
.about_img_full {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0px 20px 40px rgba(0,0,0,0.1);
}
.about_title_page {
	margin-bottom: 25px;
}
.about_text_block p {
	margin-bottom: 20px;
	font-size: 15px;
}
.approach_box {
	background: #EFF3F7;
	padding: 40px;
	border-radius: 8px;
	margin-top: 40px;
}
.approach_title {
	font-size: 24px;
	font-weight: 600;
	color: #404040;
	margin-bottom: 15px;
}
.glossary_section {
	background: #FFFFFF;
	padding: 80px 0;
}
.glossary_card {
	background: #EFF3F7;
	padding: 30px;
	border-radius: 8px;
	height: 100%;
	box-shadow: 0px 5px 15px rgba(0,0,0,0.02);
	margin-bottom: 30px;
}
.glossary_card h4 {
	font-size: 18px;
	font-weight: 600;
	color: #7E8C54;
	margin-bottom: 15px;
}
.glossary_card p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 0;
}

/*********************************
12. Página Áreas de Cuidado
*********************************/
.care_page_intro {
	margin-top: 150px;
	padding-bottom: 50px;
}
.care_intro_text {
	margin-top: 25px;
}
.care_intro_text p {
	font-size: 15px;
	margin-bottom: 15px;
	text-align: left;
}
.modalities_section {
	padding-bottom: 80px;
}
.modality_row {
	align-items: stretch !important;
}
.modality_card {
	background: #EFF3F7;
	padding: 40px;
	border-radius: 8px;
	height: 100%;
	box-shadow: 0px 10px 25px rgba(0,0,0,0.02);
}
.modality_header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}
.modality_header i {
	font-size: 30px;
	color: #7E8C54;
}
.modality_header h3 {
	font-size: 22px;
	font-weight: 600;
	margin: 0;
}
.modality_features {
	margin-top: 25px;
	border-top: 1px solid #dbe1e8;
	padding-top: 20px;
}
.modality_features li {
	font-size: 14px;
	color: #616161;
	margin-bottom: 10px;
}
.care_image_container {
	height: 100%;
	width: 100%;
}
.care_photo {
	width: 100%;
	height: 100%;
	min-height: 350px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0px 10px 30px rgba(0,0,0,0.05);
}
.public_section {
	background: #FFFFFF;
	padding: 80px 0;
}
.public_card {
	background: #EFF3F7;
	padding: 35px;
	border-radius: 8px;
	height: 100%;
}
.public_title_box {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}
.public_icon_box {
	width: 40px;
	height: 40px;
}
.public_icon_box img {
	max-width: 100%;
	height: auto;
}
.public_title_box h4 {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
	color: #7E8C54;
}
.faq_section {
	background: #EFF3F7;
	padding: 80px 0;
}
.faq_card {
	border: none !important;
	background: #FFFFFF !important;
	margin-bottom: 15px;
	border-radius: 8px !important;
	box-shadow: 0px 4px 12px rgba(0,0,0,0.03);
	overflow: hidden;
}
.faq_header {
	background: #FFFFFF !important;
	padding: 0 !important;
	border-bottom: none !important;
}
.faq_btn {
	width: 100%;
	text-align: left;
	padding: 20px 25px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	color: #404040 !important;
	text-decoration: none !important;
	display: flex;
	justify-content: space-between;
	align-items: center;
	white-space: normal;
}
.faq_btn:hover, .faq_btn:focus {
	color: #7E8C54 !important;
}
.faq_body {
	padding: 0 25px 25px 25px !important;
	font-size: 14px;
	line-height: 1.6;
	color: #757575;
}

/*********************************
13. Página Meu Espaço (Consultório)
*********************************/
.space_page_intro {
	margin-top: 150px;
	padding-bottom: 40px;
}
.space_intro_text {
	margin-top: 25px;
}
.space_intro_text p {
	font-size: 15px;
	line-height: 1.8;
	text-align: left;
}
.space_gallery_section {
	padding-bottom: 90px;
}
.gallery_col {
	margin-bottom: 30px;
}
.gallery_thumb {
	width: 100%;
	aspect-ratio: 1 / 1; /* Força o elemento pai a ser sempre quadrado */
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0px 10px 25px rgba(0,0,0,0.04);
}
.gallery_img_square {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Faz a imagem preencher o quadrado sem distorcer, recortando se necessário */
	transition: transform 400ms ease;
}
.gallery_thumb:hover .gallery_img_square {
	transform: scale(1.03); /* Efeito sutil de aproximação ao passar o mouse */
}

/*********************************
14. Página de Contato
*********************************/
.contact_page_container {
	margin-top: 150px;
	padding-bottom: 80px;
}
.contact_intro_text {
	margin-top: 25px;
	margin-bottom: 40px;
}
.contact_intro_text p {
	font-size: 15px;
	line-height: 1.8;
	text-align: left;
}
.contact_info_list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.contact_info_item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.contact_info_icon {
	width: 50px;
	height: 50px;
	background: #EFF3F7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.contact_info_icon i {
	font-size: 20px;
	color: #7E8C54;
}
.contact_info_content h4 {
	font-size: 16px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 5px;
	color: #404040;
}
.contact_info_content p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 0;
	color: #757575;
}
.contact_info_content p a:hover {
	color: #7E8C54;
}
.map_wrapper {
	width: 100%;
	height: 100%;
	min-height: 450px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0px 10px 30px rgba(0,0,0,0.05);
}