/* Cristiane Sato — layout da página inicial (sem Elementor) */

:root {
	--cs-gold: #9c6e2c;
	--cs-gold-dark: #8e642c;
	--cs-gold-hover: #9c702b;
	--cs-brown: #6b4f16;
	--cs-ink: #242424;
	--cs-text: #5a5a5a;
	--cs-grey: #54595f;
	--cs-navy: #3c4c6f;
	--cs-line: #d5d8dc;
	--cs-box: 1140px;
	--cs-roboto: "Roboto", sans-serif;
	--cs-slab: "Roboto Slab", serif;
	--cs-manrope: "Manrope", sans-serif;
}

.cs-page,
.cs-page *,
.cs-page *::before,
.cs-page *::after { box-sizing: border-box; }

body.cs-page {
	margin: 0;
	background: #fff;
	color: #111;
	font-family: var(--cs-manrope);
	font-size: 22px;
	font-weight: 300;
	line-height: 1.4;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
/* :where() = especificidade zero, para não brigar com as classes abaixo */
:where(.cs-page) img { max-width: 100%; height: auto; display: block; }
:where(.cs-page) a { color: inherit; }
:where(.cs-page) :is(h1, h2, h3, h4) { margin: 0; line-height: 1.2; }
:where(.cs-page) p { margin: 0 0 1em; }
:where(.cs-page) p:last-child { margin-bottom: 0; }
:where(.cs-page) button { font-family: inherit; }
.cs-center { text-align: center; }

/* ---------- Títulos, divisores, botões ---------- */
.cs-section-title {
	font-family: var(--cs-roboto);
	font-size: 30px;
	font-weight: 500;
	color: var(--cs-gold);
	text-align: center;
}
.cs-section-title--light { color: #fff; }

.cs-divider {
	display: block;
	width: 57px;
	max-width: 5%;
	min-width: 40px;
	border-top: 3px solid #4b4b4b;
	margin: 20px auto 0;
}
.cs-divider--thin {
	width: 70%;
	max-width: 798px;
	border-top: 1px solid var(--cs-gold);
	margin: 30px auto 0;
}

.cs-badge,
.cs-btn {
	display: inline-block;
	font-family: var(--cs-roboto);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	color: var(--cs-gold);
	background: transparent;
	border: 3px solid var(--cs-gold);
	border-radius: 30px;
	padding: 10px 50px;
	text-decoration: none;
	text-align: center;
}
.cs-btn { cursor: pointer; transition: color .3s, border-color .3s, background-color .3s; }
.cs-btn:hover { background: var(--cs-gold); color: #fff; }
.cs-badge--light,
.cs-btn--light { color: #fff; border-color: #fff; }
.cs-btn--light:hover { background: #fff; color: var(--cs-gold); }
.cs-btn--thin {
	border-width: 2px;
	border-radius: 100px;
	padding: 12px 24px;
}

/* ---------- Cabeçalho ---------- */
.cs-header { background: #fff; position: relative; z-index: 50; }
.cs-header__inner {
	max-width: 1381px;
	margin: 0 auto;
	padding: 0 10px;
	min-height: 74px;
	display: flex;
	align-items: center;
}
.cs-logo { flex: 0 0 13.923%; max-width: 13.923%; }
.cs-logo img { width: 100%; }
.cs-nav { flex: 1 1 auto; }
.cs-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.cs-nav li { margin: 0 10px; }
.cs-nav a {
	position: relative;
	display: block;
	padding: 15px 7px;
	font-family: var(--cs-manrope);
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	color: #333;
	text-decoration: none;
	transition: color .2s;
}
.cs-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--cs-gold-dark);
	opacity: 0;
	transition: opacity .2s;
}
.cs-nav a:hover { color: var(--cs-gold-hover); }
.cs-nav a:hover::after { opacity: 1; }

.cs-burger {
	display: none;
	width: 50px;
	padding: 0;
	margin: 0 auto;
	background: none;
	border: 0;
	cursor: pointer;
}
.cs-burger span {
	display: block;
	height: 4px;
	margin-bottom: 6px;
	background: #333;
	transition: background .2s, transform .25s, opacity .2s;
}
.cs-burger:hover span { background: var(--cs-gold-dark); }
.cs-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.cs-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.cs-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.cs-mobile-menu {
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
	text-align: center;
}
.cs-mobile-menu a {
	display: block;
	padding: 4px 0;
	font-size: 22px;
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #e8e8e8;
	background: #fff;
}
.cs-mobile-menu a:hover { background: var(--cs-gold-dark); color: #fff; }

/* ---------- Banner principal ---------- */
.cs-hero { padding: 40px 20px 110px; }
.cs-hero__slider {
	position: relative;
	height: 652px;
	overflow: hidden;
	background: #eee;
}
.cs-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .6s ease, visibility 0s linear .6s;
}
.cs-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	transition: opacity .6s ease;
	z-index: 1;
}
.cs-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1);
}
.cs-hero__slide.is-active .cs-hero__bg { animation: cs-kenburns var(--cs-kb, 3.6s) linear forwards; }
@keyframes cs-kenburns { from { transform: scale(1); } to { transform: scale(1.3); } }

.cs-hero__inner {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding: 80px 380px;
	text-decoration: none;
	color: #fff;
}
.cs-hero__inner--right { justify-content: flex-end; }
.cs-hero__content { display: block; text-align: left; }
.cs-hero__slide.is-active .cs-hero__content { animation: cs-fade-right .8s ease both; }
.cs-hero__title {
	display: block;
	font-family: var(--cs-roboto);
	font-size: 35px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 14px;
}
.cs-hero__sub {
	display: block;
	font-family: var(--cs-slab);
	font-size: 17px;
	line-height: 1.4;
	margin-bottom: 30px;
}
.cs-hero__btn {
	display: inline-block;
	font-family: var(--cs-roboto);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	padding: 12px 24px;
	border: 1px solid #fff;
	border-radius: 100px;
	transition: color .3s, border-color .3s;
}
.cs-hero__inner:hover .cs-hero__btn { color: var(--cs-brown); border-color: var(--cs-brown); }
.cs-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 12px;
}
.cs-hero__dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #242424;
	cursor: pointer;
}
.cs-hero__dots button.is-active { background: var(--cs-gold); }

/* ---------- Sobre ---------- */
.cs-about__grid {
	width: 83.925%;
	margin: 0 auto;
	padding: 10px;
	display: flex;
}
.cs-about__media,
.cs-about__text { flex: 0 0 50%; max-width: 50%; padding: 10px; }
.cs-about__media img { width: 100%; }
.cs-about__text { display: flex; flex-direction: column; gap: 20px; }
.cs-about__sub { font-family: var(--cs-roboto); font-size: 19px; font-weight: 600; color: var(--cs-ink); }
.cs-about__title { font-family: var(--cs-roboto); font-size: 48px; font-weight: 600; color: var(--cs-gold); }
.cs-about__body { font-family: var(--cs-roboto); font-size: 20px; font-weight: 200; line-height: 1.4; color: var(--cs-text); }
.cs-about__body b, .cs-about__body strong { font-weight: 500; }

/* ---------- Filosofia ---------- */
.cs-philo { padding: 50px 10px 0; }
.cs-philo__body {
	max-width: 679px;
	margin: 20px auto 0;
	text-align: center;
}
.cs-philo__body h3 {
	font-family: var(--cs-roboto);
	font-size: 26px;
	font-weight: 500;
	color: var(--cs-ink);
}
.cs-philo__text,
.cs-exam__text,
.cs-exams__note,
.cs-acc__body,
.cs-modal__text {
	font-family: var(--cs-roboto);
	font-size: 17px;
	font-weight: 200;
	line-height: 1.4;
	color: var(--cs-text);
}
.cs-philo__text { margin-top: 17px; }
.cs-philo__text b, .cs-exam__text b, .cs-exams__note b, .cs-acc__body b, .cs-modal__text b, .cs-tech b { font-weight: 500; }
.cs-philo .cs-center { margin: 20px 0 50px; }

/* ---------- Tecnologia ---------- */
.cs-tech { background: var(--cs-gold); margin: 30px 0 50px; padding: 0 10px; }
.cs-tech__inner { max-width: var(--cs-box); margin: 0 auto; display: flex; }
.cs-tech__text {
	flex: 0 0 66.666%;
	padding: 20px;
	font-family: var(--cs-roboto);
	font-size: 17px;
	font-weight: 200;
	line-height: 1.4;
	color: #fff;
}
.cs-tech__text h2 { font-family: var(--cs-roboto); font-size: 24px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.cs-tech__text p { margin: 0; }
.cs-tech__icon {
	flex: 0 0 33.333%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}
.cs-tech__icon svg { width: 50px; height: 50px; fill: #fff; transition: transform .3s; }
.cs-tech__icon:hover svg { transform: scale(1.1); }

/* ---------- Exames ---------- */
.cs-exams { padding: 0 10px; margin-top: 50px; }
.cs-exams__grid { max-width: var(--cs-box); margin: 0 auto; display: flex; }
.cs-exam { flex: 1 1 0; min-width: 0; padding: 10px; }
.cs-exam h3 { font-family: var(--cs-roboto); font-size: 20px; font-weight: 500; color: var(--cs-gold); margin-bottom: 4px; }
.cs-exam__text { margin-bottom: 20px; }

.cs-acc details { border: 0; }
.cs-acc summary {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border: 1px solid var(--cs-line);
	font-family: var(--cs-manrope);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: #2c2c2c;
	cursor: pointer;
	list-style: none;
}
.cs-acc summary::-webkit-details-marker { display: none; }
.cs-acc details + details summary { border-top: 0; }
.cs-acc__icon { display: inline-flex; width: 15px; height: 15px; flex: 0 0 15px; }
.cs-acc__icon svg { width: 15px; height: 15px; fill: var(--cs-gold); }
.cs-acc summary:hover .cs-acc__icon svg { fill: var(--cs-navy); }
.cs-acc__icon svg + svg,
.cs-acc details[open] .cs-acc__icon svg:first-child { display: none; }
.cs-acc details[open] .cs-acc__icon svg + svg { display: block; }
.cs-acc__body {
	padding: 10px;
	background: #fff;
	border: 1px solid var(--cs-line);
	border-top: 0;
	text-align: center;
}
.cs-acc__body p { margin: 0 0 .6em; }

.cs-exams__note { max-width: var(--cs-box); margin: 20px auto 0; text-align: center; }

/* ---------- Áreas de atuação ---------- */
.cs-areas { padding: 20px 40px 0; }
.cs-areas__row { display: grid; gap: 20px; margin-bottom: 20px; }
.cs-areas__row--a { grid-template-columns: 65fr 35fr; }
.cs-areas__row--b { grid-template-columns: 42fr 58fr; }
.cs-areas__row--single { grid-template-columns: 1fr; }
.cs-area {
	position: relative;
	height: 400px;
	overflow: hidden;
	background-color: #f4f2f0;
}
.cs-area__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	animation: cs-kenburns-soft 12s ease-in-out infinite alternate;
}
@keyframes cs-kenburns-soft { from { transform: scale(1); } to { transform: scale(1.15); } }
.cs-area__inner {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding: 50px;
}
.cs-area__inner--left { justify-content: flex-start; }
.cs-area__inner--center { justify-content: center; }
.cs-area__inner--right { justify-content: flex-end; }
.cs-area__content { max-width: var(--w, 50%); }
.cs-area h3 {
	font-family: var(--cs-roboto);
	font-size: 35px;
	font-weight: 700;
	line-height: 1;
	color: var(--cs-gold);
	margin-bottom: 30px;
}
.cs-area p {
	font-family: var(--cs-slab);
	font-size: 17px;
	line-height: 1.4;
	color: #424242;
	margin-bottom: 30px;
}

/* ---------- Consultas ---------- */
.cs-consult { background: #616161; padding-bottom: 50px; }
.cs-consult__head { background: #5f5f5f; padding: 50px 10px 20px; }
.cs-consult__head .cs-center { margin: 20px 0 0; }
.cs-consult__cards {
	max-width: var(--cs-box);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.cs-flip {
	flex: 1 1 50%;
	padding: 10px;
	height: 320px;
	perspective: 1000px;
	outline: none;
}
.cs-flip__card {
	position: relative;
	height: 300px;
	transform-style: preserve-3d;
	transition: transform 1s;
}
.cs-flip:hover .cs-flip__card,
.cs-flip:focus .cs-flip__card,
.cs-flip.is-flipped .cs-flip__card { transform: rotateX(-180deg); }
.cs-flip__face {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	color: #fff;
	text-align: center;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .12);
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.cs-flip__front { border-radius: 16px; }
.cs-flip__back { border-radius: 24px; transform: rotateX(180deg); }
.cs-flip__front img { width: 245px; margin-bottom: 30px; }
.cs-flip__front h4 { font-family: var(--cs-manrope); font-size: 18px; font-weight: 700; }
.cs-flip__back img { width: 136px; }
.cs-flip__back h4 { font-family: Arial, sans-serif; font-size: 32px; font-weight: 700; margin: 12px 0; line-height: 1.1; }
.cs-flip__back div { font-size: 18px; line-height: 28px; }

/* ---------- Formação ---------- */
.cs-cred { padding: 100px 0 0; }
.cs-cred .cs-section-title { margin-bottom: 20px; padding: 0 10px; }
.cs-cred__grid { max-width: var(--cs-box); margin: 0 auto; display: flex; align-items: center; }
.cs-cred__media { flex: 0 0 22.223%; padding: 10px 10px 50px; }
.cs-cred__media img { margin-left: auto; }
.cs-cred__list {
	flex: 1 1 auto;
	list-style: none;
	margin: 0;
	padding: 10px 10px 10px 64px;
}
.cs-cred__list li {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 0 3.5px;
	margin-top: 3.5px;
	font-family: var(--cs-roboto);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--cs-grey);
	transition: color .3s;
}
.cs-cred__list li:first-child { margin-top: 0; }
.cs-cred__list li:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 87%;
	border-top: 1.5px dotted #ddd;
}
.cs-cred__list li:hover { color: var(--cs-gold); }
.cs-cred__list svg { width: 14px; height: 14px; flex: 0 0 14px; fill: var(--cs-gold); margin-right: 5px; }

/* ---------- Contato ---------- */
.cs-contact { background: var(--cs-gold); padding: 30px 10px 30px; color: #fff; }
.cs-contact__body {
	max-width: 520px;
	margin: 20px auto 0;
	font-family: var(--cs-roboto);
	font-size: 17px;
	font-weight: 200;
	text-align: center;
}
.cs-contact__block p { margin: 0; line-height: 1.15; }
.cs-contact__block b { font-weight: 500; }
.cs-contact__block a { text-decoration: none; }
.cs-contact__block a:hover { text-decoration: underline; }
.cs-contact .cs-center { margin: 38px 0 20px; }

.cs-map { padding: 10px; }
.cs-map iframe { display: block; width: 100%; height: 300px; border: 0; }

.cs-footer { padding: 10px; text-align: center; }
.cs-footer p {
	font-family: var(--cs-roboto);
	font-size: 15px;
	font-weight: 200;
	color: #444;
	margin: 0;
	line-height: 32px;
}

/* ---------- Botão flutuante WhatsApp ---------- */
.cs-wa-float {
	position: fixed;
	right: 24px;
	bottom: 36px;
	width: 78px;
	z-index: 90;
	transition: transform .2s;
}
.cs-wa-float:hover { transform: scale(1.06); }
.cs-wa-float img { width: 100%; }

/* ---------- Popups ---------- */
.cs-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, .8);
	opacity: 0;
	transition: opacity .25s;
}
.cs-modal[hidden] { display: none; }
.cs-modal.is-open { opacity: 1; }
.cs-modal__box {
	position: relative;
	width: 640px;
	max-width: 100%;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	background: #fff;
	padding: 20px 20px 0;
	box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, .2);
}
.cs-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	padding: 6px;
	border: 0;
	background: none;
	cursor: pointer;
}
.cs-modal__close svg { width: 20px; height: 20px; fill: #1f2124; }
.cs-modal h2 {
	font-family: var(--cs-roboto);
	font-size: 24px;
	font-weight: 500;
	color: var(--cs-navy);
	padding-right: 36px;
}
.cs-modal__text { margin: 10px 0 20px; }
.cs-acc--modal summary { color: var(--cs-navy); }
.cs-modal .cs-center { margin: 20px 0 50px; }

/* ---------- Animações de entrada ---------- */
.js [data-anim] { opacity: 0; }
.js [data-anim].is-in { opacity: 1; animation-duration: .9s; animation-fill-mode: both; animation-timing-function: ease; }
.js [data-anim="fade"].is-in { animation-name: cs-fade; }
.js [data-anim="up"].is-in { animation-name: cs-fade-up; }
.js [data-anim="down"].is-in { animation-name: cs-fade-down; }
.js [data-anim="left"].is-in { animation-name: cs-fade-left; }
.js [data-anim="zoom"].is-in { animation-name: cs-zoom; }
.js [data-anim="slide-left"].is-in { animation-name: cs-slide-left; }
.js [data-anim="pulse"].is-in { animation-name: cs-pulse; }
.js [data-anim="drop"].is-in { animation-name: cs-drop; animation-duration: 1s; }
@keyframes cs-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cs-fade-up { from { opacity: 0; transform: translate3d(0, 40px, 0); } to { opacity: 1; transform: none; } }
@keyframes cs-fade-down { from { opacity: 0; transform: translate3d(0, -40px, 0); } to { opacity: 1; transform: none; } }
@keyframes cs-fade-left { from { opacity: 0; transform: translate3d(-40px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes cs-fade-right { from { opacity: 0; transform: translate3d(40px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes cs-zoom { from { opacity: 0; transform: scale3d(.6, .6, .6); } to { opacity: 1; transform: none; } }
@keyframes cs-slide-left { from { opacity: 0; transform: translate3d(-100px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes cs-pulse { 0% { opacity: 1; transform: scale(1); } 50% { transform: scale(1.1); } 100% { opacity: 1; transform: scale(1); } }
@keyframes cs-drop { 0% { opacity: 0; transform: translate3d(0, -300px, 0); } 60% { opacity: 1; transform: translate3d(0, 20px, 0); } 80% { transform: translate3d(0, -8px, 0); } 100% { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
	.js [data-anim] { opacity: 1; }
	.js [data-anim].is-in,
	.cs-hero__slide.is-active .cs-hero__bg,
	.cs-hero__slide.is-active .cs-hero__content,
	.cs-area__bg { animation: none; }
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
	.cs-hero { display: none; }
	.cs-about__grid { width: 100%; }
	.cs-about__title { font-size: 40px; }
	.cs-areas { padding: 20px 20px 0; }
	.cs-areas__row--a,
	.cs-areas__row--b { grid-template-columns: 1fr 1fr; }
	.cs-area h3 { font-size: 28px; margin-bottom: 20px; }
	.cs-area__inner { padding: 30px; }
	.cs-cred__list li { font-size: 18px; }
}

/* ---------- Celular ---------- */
@media (max-width: 767px) {
	.cs-header__inner { flex-direction: column; justify-content: center; gap: 1px; }
	.cs-logo { flex: 0 0 auto; max-width: 172px; padding: 8px; }
	.cs-nav { display: none; }
	.cs-burger { display: block; }
	.cs-burger span:last-child { margin-bottom: 0; }
	.cs-header__inner { padding-bottom: 10px; }

	.cs-about__grid,
	.cs-tech__inner,
	.cs-exams__grid,
	.cs-cred__grid { flex-direction: column; }
	.cs-about__media,
	.cs-about__text,
	.cs-tech__text,
	.cs-tech__icon,
	.cs-cred__media { flex: 1 1 auto; max-width: 100%; width: 100%; }
	.cs-about__text { text-align: center; }
	.cs-about__title { font-size: 36px; }
	.cs-about__body { font-size: 18px; }
	.cs-tech__icon { padding: 10px 10px 30px; }

	.cs-areas { padding: 20px 10px 0; }
	.cs-areas__row--a,
	.cs-areas__row--b { grid-template-columns: 1fr; }
	.cs-area__inner { padding: 30px 20px; }
	/* No celular a imagem sempre preenche o bloco, puxada para o lado oposto ao texto */
	.cs-area__bg { background-size: cover !important; background-position: var(--bgx, center) center; }
	.cs-area__content { max-width: 70%; }
	.cs-area h3 { font-size: 26px; }
	.cs-area p { font-size: 15px; }

	.cs-flip { flex-basis: 100%; }
	.cs-flip__front img { width: 200px; }
	.cs-flip__back h4 { font-size: 26px; }
	.cs-flip__back div { font-size: 16px; line-height: 1.3; }
	.cs-badge { padding: 10px 24px; }

	.cs-cred { padding-top: 60px; }
	.cs-cred__media { padding-bottom: 10px; }
	.cs-cred__media img { margin: 0 auto; max-width: 200px; }
	.cs-cred__list { padding: 10px 20px; }
	.cs-cred__list li { font-size: 17px; }

	.cs-wa-float { width: 76px; right: 12px; bottom: 29px; }
	.cs-modal__box { padding: 16px 16px 0; }
}
