:root {
	--bg: #f7f0f0;
	--fg: #3b3a3a;
	--primary: #7a2424;
	--primary-fg: #fff;
	--secondary: #b98787;
	--popover: #fbf6f6;
	--border: #e5d8d8;
	--hero-title: #e59797;
	--radius: 0.75rem;
	--font: "Poppins", sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--fg);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font);
	font-weight: 700;
	line-height: 1.2;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
section[id] {
	scroll-margin-top: 96px;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 1rem;
}
.container-narrow {
	max-width: 768px;
}
.center {
	text-align: center;
}
.relative {
	position: relative;
}

.btn {
	display: inline-block;
	padding: 0.9rem 2rem;
	border-radius: 0.5rem;
	font-weight: 700;
	transition: opacity 0.2s;
	cursor: pointer;
	border: none;
}
.btn-primary {
	background: var(--primary);
	color: var(--primary-fg) !important;
}
.btn-primary:hover {
	opacity: 0.9;
}
.btn-sm {
	padding: 0.65rem 1.25rem;
	font-size: 0.875rem;
}
.btn-lg {
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
}

/* HEADER */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(247, 240, 240, 0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1rem;
}
.logo {
	height: 40px;
}
@media (min-width: 768px) {
	.logo {
		height: 48px;
	}
}
.nav-desktop {
	display: none;
	align-items: center;
	gap: 1.5rem;
}
.nav-desktop a {
	font-size: 0.875rem;
	color: rgba(59, 58, 58, 0.8);
	transition: color 0.2s;
}
.nav-desktop a:hover {
	color: var(--primary);
}
.ig-icon {
	color: rgba(73, 73, 73, 0.8);
}
.menu-toggle {
	display: block;
	background: none;
	border: none;
	color: var(--fg);
	cursor: pointer;
}
.nav-mobile {
	display: none;
	flex-direction: column;
	background: var(--bg);
	border-top: 1px solid var(--border);
	padding: 0 1rem 1rem;
}
.nav-mobile.open {
	display: flex;
}
.nav-mobile a {
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	color: rgba(59, 58, 58, 0.8);
}
.nav-mobile a.btn {
	margin-top: 1rem;
	text-align: center;
	border: none;
}
@media (min-width: 1024px) {
	.nav-desktop {
		display: flex;
	}
	.menu-toggle {
		display: none;
	}
	.nav-mobile {
		display: none !important;
	}
}

/* HERO */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
	padding-top: 150px;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(
			to right,
			rgba(51, 25, 25, 0.55),
			rgba(51, 25, 25, 0.15)
		),
		url("/assets/banner-lp-mobile.jpg");
	background-size: cover;
	background-position: center;
}
@media (min-width: 768px) {
	.hero {
		align-items: center;
		padding-top: 80px;
	}
	.hero-bg {
		background-image: linear-gradient(
				to right,
				rgba(51, 25, 25, 0.55),
				rgba(51, 25, 25, 0.15)
			),
			url("/assets/banner-lp.jpg");
	}
}
.hero-inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
}
.hero h1 {
	font-size: 2.5rem;
	color: var(--hero-title);
	margin-bottom: 1.5rem;
	line-height: 1.1;
}
@media (min-width: 768px) {
	.hero h1 {
		font-size: 3.5rem;
	}
}
@media (min-width: 1280px) {
	.hero h1 {
		font-size: 4rem;
	}
}
.hero-sub {
	font-size: 1.25rem;
	color: #fff;
	margin-bottom: 1rem;
	font-weight: 600;
}
@media (min-width: 768px) {
	.hero-sub {
		font-size: 1.5rem;
	}
}
.hero-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	margin-bottom: 1rem;
}
.hero-text-2 {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
}

/* SECTIONS */
.section {
	padding: 3.5rem 0;
}
@media (min-width: 768px) {
	.section {
		padding: 4rem 0;
	}
}
.section-title {
	font-size: 1.875rem;
	color: var(--primary);
	text-align: center;
	margin-bottom: 1rem;
}
@media (min-width: 768px) {
	.section-title {
		font-size: 2.25rem;
	}
}
.section-title.left {
	text-align: left;
}
.section-title.white {
	color: #fff;
}
.divider {
	width: 80px;
	height: 2px;
	background: var(--secondary);
	margin: 0 auto 3rem;
}
.divider.left {
	margin-left: 0;
}
.divider.white {
	background: #fff;
}
.section-intro {
	color: rgba(59, 58, 58, 0.7);
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3rem;
}
.subtitle {
	font-size: 1.25rem;
	color: var(--secondary);
	margin: 2rem 0 1rem;
}
.subtitle-center {
	font-size: 1.25rem;
	color: var(--secondary);
	margin: 0 0 1.5rem;
	text-align: center;
}

/* GRID */
.grid {
	display: grid;
	gap: 2rem;
}
.grid-2 {
	grid-template-columns: 1fr;
}
.grid-3 {
	grid-template-columns: 1fr;
}
.grid-4 {
	grid-template-columns: 1fr;
}
.items-center {
	align-items: center;
}
@media (min-width: 640px) {
	.grid-4 {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 768px) {
	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1024px) {
	.grid-2 {
		grid-template-columns: 1fr 1fr;
	}
	.grid-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* CARDS */
.card {
	background: var(--popover);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.2s;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.card:hover {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12);
}
.card img {
	width: 100%;
	height: 12rem;
	object-fit: cover;
}
.card-body {
	padding: 1.5rem;
}
.card-body h3 {
	color: var(--primary);
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}
.card-body p {
	color: rgba(59, 58, 58, 0.7);
	font-size: 0.875rem;
}

/* SINTOMAS panel */
.panel {
	background: var(--popover);
	border-radius: 1rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
	padding: 2rem;
}
@media (min-width: 768px) {
	.panel {
		padding: 2.5rem;
	}
}
.panel h3 {
	color: var(--primary);
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}
.check-list {
	list-style: none;
	margin-bottom: 2rem;
}
.check-list li {
	padding-left: 1.5rem;
	position: relative;
	margin-bottom: 1rem;
	color: rgba(59, 58, 58, 0.8);
}
.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--primary);
	font-weight: 700;
}
#sintomas p {
	color: rgba(59, 58, 58, 0.7);
	margin-bottom: 1.5rem;
}

/* PARALLAX */
.parallax {
	position: relative;
	height: 350px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: #333;
}
.parallax::before {
	content: "";
	position: absolute;
	inset: -15% 0;
	background-image: var(--parallax-bg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	z-index: 0;
}
@supports (-webkit-touch-callout: none) {
	.parallax::before {
		background-attachment: scroll;
	}
}
.parallax-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(80, 20, 20, 0.75),
		rgba(100, 40, 40, 0.65)
	);
	z-index: 1;
}
.parallax-text {
	position: relative;
	z-index: 2;
	text-align: center;
}
.parallax-text p {
	font-size: 1.5rem;
	color: #fff;
	font-style: italic;
	max-width: 768px;
	margin: 0 auto;
	line-height: 1.5;
}
@media (min-width: 768px) {
	.parallax-text p {
		font-size: 1.875rem;
	}
}

/* AVALIACAO */
#avaliacao p {
	color: rgba(59, 58, 58, 0.7);
	margin-bottom: 1.5rem;
}
.consulta-img-wrap {
	display: flex;
	justify-content: center;
}
@media (min-width: 1024px) {
	.consulta-img-wrap {
		justify-content: flex-end;
	}
}
.consulta-img {
	width: 450px;
	height: 450px;
	max-width: 100%;
	object-fit: cover;
	border-radius: 1rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.avaliacao-grid {
	margin-bottom: 3.5rem;
}
.mini-cards {
	margin-bottom: 2.5rem;
}
.mini-card {
	background: var(--popover);
	padding: 1.5rem;
	border-radius: 0.75rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
	height: 100%;
}
.mini-card p {
	color: rgba(59, 58, 58, 0.8);
	font-size: 0.875rem;
}

/* SOBRE */
.sobre-img {
	border-radius: 1rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	max-width: 400px;
	margin: 0 auto;
	width: 100%;
	object-fit: cover;
}
#sobre p {
	color: rgba(59, 58, 58, 0.7);
	margin-bottom: 1rem;
}

/* LOCALIZACAO */
.info-cards {
	margin-bottom: 2.5rem;
}
.info-card {
	background: var(--popover);
	padding: 1.5rem;
	border-radius: 0.75rem;
	text-align: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
}
.info-card strong {
	display: block;
	color: var(--primary);
	margin-bottom: 0.5rem;
}
.info-card p {
	color: rgba(59, 58, 58, 0.8);
	font-size: 0.875rem;
}
.map-wrap {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

/* FAQ */
.faq {
	background: #b97d7d;
}
.faq-list details {
	background: var(--popover);
	border-radius: 0.75rem;
	padding: 1rem 1.5rem;
	margin-bottom: 0.75rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.faq-list summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--fg);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.faq-list summary::after {
	content: "+";
	font-size: 1.25rem;
	color: var(--primary);
}
.faq-list details[open] summary::after {
	content: "−";
}
.faq-list details p {
	margin-top: 0.75rem;
	color: rgba(59, 58, 58, 0.7);
}

/* CTA FINAL */
.cta-final {
	position: relative;
	padding: 3.5rem 0;
	overflow: hidden;
}
.cta-bg {
	position: absolute;
	inset: 0;
	background-image: url("/assets/cta-fundo.jpg");
	background-size: cover;
	background-position: center;
	opacity: 0.2;
}
.cta-final .container {
	position: relative;
	z-index: 1;
}
.cta-final p {
	color: rgba(59, 58, 58, 0.7);
	margin-bottom: 2rem;
}
.cta-final .section-title {
	margin-bottom: 1.5rem;
}

/* FOOTER */
.site-footer {
	background: var(--primary);
	color: var(--primary-fg);
	padding: 3rem 0;
}
.footer-grid {
	margin-bottom: 3rem;
}
.footer-logo {
	height: 40px;
	margin-bottom: 1rem;
}
.footer-ig {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
}
.footer-ig:hover {
	color: #fff;
}
.site-footer h4 {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
}
.site-footer p,
.site-footer a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
	line-height: 1.6;
}
.site-footer a:hover {
	color: #fff;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
}
@media (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
	}
}
