@charset "UTF-8";

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

:root {
	--corpreto: #000000;
	--corareia: #c79f78;
	--cormarron: #855e4e;
	--corbege: #fdfaf0;
	--corbranco: #ffffff;
	--fontepadrao: sans-serif;
	--fontedestaque: serif;
	--lp-radius: 12px;
	--lp-shadow: 0 10px 30px rgba(18, 24, 35, 0.06);
	--lp-gap: 1rem;
	--lp-maxwidth: 1140px;
}


.ld-container {
	font-family: var(--fontepadrao);
}

li {
	list-style-position: inside;
}


#landing-dermico {
	background: var(--corbranco);
	color: var(--corpreto);
	font-family: var(--fontepadrao);
	padding: 32px 16px;
}
#landing-dermico .ld-container {
	max-width: var(--lp-maxwidth);
	margin: 0 auto;
	padding: 0 16px;
}


.ld-hero {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	margin-bottom: 24px;
}
.ld-hero-left {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	min-width: 260px;
}

.ld-hero-right {
	flex: 0 0 36%;
	max-width: 350px; 
	min-width: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.8rem;
}

.ld-hero-right img,
.ld-hero .ld-hero-right img {
	width: 100%;
	height: auto; 
	max-height: 420px; 
	object-fit: cover; 
	border-radius: 12px; 
	box-shadow: var(--lp-shadow);
	display: block;
}

.lp-kicker {
	font-size: 13px;
	text-transform: uppercase;
	color: var(--cormarron);
	letter-spacing: 0.8px;
	display: inline-block;
	margin-bottom: 8px;
}

.ld-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

#ld-dermico-title {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1.04;
	color: var(--ld-text);
}

.lead {
	margin: 0 0 12px;
	color: var(--cormarron);
	line-height: 1.2;
	font-size: 1.6rem;
}

.ld-ctas {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 700;
	border: 0;
	font-size: 15px;
}
.btn-primary {
	background: linear-gradient(180deg, var(--ld-accent), var(--ld-accent-dark));
	color: #fff;
	box-shadow: 0 10px 28px rgba(194, 206, 203, 0.14);
}
.btn-outline {
	background: transparent;
	color: var(--ld-accent-dark);
	border: 1px solid rgba(24, 79, 99, 0.08);
}


.ld-benefits {
	margin: 12px 0 14px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
}
.ld-benefits li {
	background: var(--corbege);
	padding: 10px 12px;
	border-radius: 8px;
	color: var(--ld-text);
	font-size: 14px;
}


.ld-trust {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 8px;
	flex-wrap: wrap;
}
.ld-badge {
	background: var(--corbranco);
	color: var(--corpreto);
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 1.6rem;
	border: 1px solid rgba(32, 106, 138, 0.06);
}


.ld-quick {
	text-align: right;
	color: var(--corareia);
	font-size: 14px;
}


.ld-main {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 22px;
	align-items: start;
}


.ld-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin: 14px 0 18px;
}
.ld-card {
	background: var(--corbranco);
	border-radius: var(--lp-radius);
	padding: 14px;
	box-shadow: var(--lp-shadow);
	border: 1px solid rgba(0, 0, 0, 0.03);
}
.ld-card h3 {
	margin-top: 0;
	color: var(--corpreto);
}

.ld-card li,
.ld-card p {
	color: var(--cormarron);
	font-size: 1.6rem;
	line-height: 1.4;
	list-style-position: inside;
}


.ld-ba {
	margin-top: 12px;
}
.ld-bna {
	position: relative;
	width: 100%;
	height: 320px;
	border-radius: 12px;
	overflow: hidden;
	background: #f6fbfd;
	touch-action: none;
	user-select: none;
}
.bna-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: clip-path 0.28s ease, transform 0.28s ease;
}
.bna-img.before {
	z-index: 1;
}
.bna-img.after {
	z-index: 2;
	clip-path: inset(0 0 0 50%);
}
.bna-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(24, 79, 99, 0.02),
		rgba(24, 79, 99, 0.02)
	);
}
.bna-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	transform: translateX(-50%);
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bna-handle::after {
	content: '';
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid rgba(16, 24, 32, 0.08);
	box-shadow: 0 10px 24px rgba(16, 24, 32, 0.08);
	transform: translateX(-50%);
	position: absolute;
	top: 50%;
}


.ld-testimonial {
	margin: 14px 0;
	padding: 14px;
	border-left: 4px solid var(--ld-accent);
	background: var(--corbege);
	border-radius: 8px;
	color: var(--ld-text);
}
.ld-faq details {
	background: #fff;
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 8px;
	border: 1px solid #eef5f7;
}


.lt-aside .aside-card {
	display: flex;
	flex-direction: column;
	background: var(--corbranco);
	padding: 1.2rem;
	border-radius: 10px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
	margin-bottom: 1rem;
	gap: 0.2rem;
}
.lt-aside .aside-card h3 {
	font-size: 2.6rem;
	padding: 1.2rem;
}

.lt-aside .aside-card p {
	color: var(--cormarron);
	font-size: 1.6rem;
	line-height: 1.4;
	padding: 1.2rem;
}
.field input {
	padding: 0.75rem;
	border-radius: 8px;
	border: 1px solid #eaeaea;
	font-size: 1rem;
}

.agenda-form {
	background: var(--corbege);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.2rem;
	border-radius: 12px;
}
.agenda-form label {
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--corpreto);
}
.agenda-form input,
.agenda-form select,
.agenda-form textarea {
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid var(--corbege);
	font-size: 1.3rem;
	outline: none;
	background: var(--corbranco);
}
.agenda-form input:focus,
.agenda-form select:focus,
.agenda-form textarea:focus {
	box-shadow: 0 0 0 3px var(--corareia);
	border-color: var(--cormarron);
}

.form-check {
	display: flex;
	align-items: center;
	gap: 4rem;
	font-size: 1.9rem;
	color: var(--corareia);
}
.form-check a {
	color: var(--corareia);
	text-decoration: underline;
}

.btn-cta {
	max-width: 70%;
	align-items: center;
	padding: 12px 18px;
	background: var(--corareia);
	color: var(--corbranco);
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 2rem;
	cursor: pointer;
	transition: 0.15s;
}
.btn-cta:hover {
	background: var(--cormarron);
	transform: translateY(-2px);
}

.agenda-form .btn-cta {
	display: block;
	margin: 0 auto; 
}

.bk-feedback {
	margin-top: 10px;
	font-size: 1.6rem;
	color: red;
	font-weight: 900;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	font-weight: 700;
	font-size: 1.6rem;
	border: 0;
	cursor: pointer;
}
.btn-primary {
	background: var(--corareia);
	color: var(--corbranco);
}
.btn-outline {
	background: transparent;
	border: 1px solid #e6d8c9;
	color: var(--cormarron);
}
.btn-ghost {
	background: #fff;
	border: 1px solid #efe7df;
	color: var(--cormarron);
}

.ld-feedback {
	margin-top: 10px;
	color: var(--ld-muted);
	font-size: 14px;
}
.ld-legal {
	margin-top: 10px;
	color: #98a3a6;
	font-size: 12px;
}


.ld-modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(2, 6, 23, 0.45);
	z-index: 9999;
	padding: 20px;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.18s ease;
}
.ld-modal[aria-hidden='false'] {
	visibility: visible;
	opacity: 1;
}
.ld-modal-panel {
	width: 100%;
	max-width: 520px;
	background: #fff;
	border-radius: 12px;
	padding: 18px;
	box-shadow: 0 30px 60px rgba(3, 32, 72, 0.2);
}


@media (max-width: 980px) {
	.ld-hero {
		flex-direction: column;
	}
	.ld-hero-right {
		width: 100%;
		order: -1;
		align-items: center;
	}
	.ld-main {
		grid-template-columns: 1fr;
	}
	.ld-grid {
		grid-template-columns: 1fr;
	}
	.ld-bna {
		height: 220px;
	}
	.bna-img {
		height: 220px;
	}
}


.ld-form input:focus,
.btn:focus,
.ld-modal-close:focus,
.bna-handle:focus {
	outline: 3px solid rgba(32, 106, 138, 0.14);
	outline-offset: 2px;
}


.sr-only {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
