@charset "UTF-8";

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* Post: Preenchimento Labial — estilos isolados */

li {
	list-style-position: inside;
}

.lt-aside {
	position: sticky;
	top: 96px;
}

.post-lead h2 {
	font-size: 1.45rem;
	color: #333;
	margin: 0 0 0.6rem;
}

.post-lead p {
	color: #444;
	font-size: 1.15rem;
}
.post-body h3 {
	font-size: 1.2rem;
	margin-top: 1rem;
}
.post-body p,
.post-body ul,
.post-body ol {
	font-size: 1.12rem;
	color: #444;
}
.myth-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.6rem;
	margin: 1rem 0;
}
.myth {
	background: #fff7f0;
	border-left: 4px solid #e9c7a8;
	padding: 0.8rem;
	border-radius: 8px;
}
.truth {
	background: #f6fffb;
	border-left: 4px solid #bfe5c7;
	padding: 0.8rem;
	border-radius: 8px;
}

.post-section {
	padding: 2.4rem;
	max-width: 1200px;
	margin: 0 auto;
	font-family: Inter, system-ui, Arial;
	color: #222;
}
.post-inner {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 1.6rem;
	align-items: start;
}

/* article */
.post-article {
	background: transparent;
}
.post-header h1 {
	font-size: 2rem;
	margin: 0 0 0.4rem;
	font-weight: 700;
}
.post-sub {
	color: #666;
	margin: 0;
}
.post-meta {
	color: #777;
	font-size: 1.25rem;
	margin-top: 0.6rem;
}

/* hero */
.post-hero {
	margin: 1rem 0;
	border-radius: 12px;
	overflow: hidden;
}
.post-hero img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
}
.post-hero figcaption {
	font-size: 1.1rem;
	color: #666;
	padding: 0.6rem 0;
}

/* lead */
.post-lead h2 {
	font-size: 1.45rem;
	color: #333;
	margin: 0 0 0.6rem;
}
.post-lead p {
	color: #444;
}

/* body content */
.post-body h3 {
	font-size: 1.25rem;
	margin-top: 1rem;
}
.post-body p,
.post-body ul,
.post-body ol {
	font-size: 1.15rem;
	color: #444;
}
.post-body ul {
	margin-left: 1.1rem;
}
.care-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	background: #fff;
	border-radius: 8px;
	padding: 1rem;
	margin: 1rem 0;
}
.testimonial {
	background: #fffbf7;
	border-left: 4px solid #c79f78;
	padding: 1rem;
	border-radius: 8px;
	margin: 1rem 0;
}
.checklist {
	list-style: disc;
	margin-left: 1.2rem;
}

/* CTA */
.post-cta {
	margin-top: 1.2rem;
	padding: 1rem;
	border-radius: 10px;
	background: linear-gradient(90deg, #fff, #fbfaf8);
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
}
.post-cta-text {
	font-size: 1.15rem;
}
.post-cta-actions {
	display: flex;
	gap: 0.8rem;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1.4rem;
	border: 0;
	cursor: pointer;
}
.btn-primary {
	background: #c79f78;
	color: #fff;
}
.btn-outline {
	background: transparent;
	border: 1px solid #e6d8c9;
	color: #855e4e;
}
.btn-ghost {
	background: #fff;
	border: 1px solid #efe7df;
	color: #855e4e;
}

/* aside */
.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 {
	display: flex;
	flex-direction: column;
	margin-top: 0.6rem;
}
.field input {
	padding: 0.75rem;
	border-radius: 8px;
	border: 1px solid #eaeaea;
	font-size: 1rem;
}
/* Form */
.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; /* centraliza horizontalmente */
}

.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);
}
.btn-block {
	flex: 1;
}

.lt-feedback {
	margin-top: 0.6rem;
	color: var(--cormarron);
	font-size: 0.95rem;
}
.lt-legal {
	margin-top: 0.6rem;
	color: var(--corareia);
	font-size: 0.85rem;
}

.lt-modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.45);
	z-index: 220;
}
.lt-modal[aria-hidden='false'] {
	display: flex;
}
.lt-modal-panel {
	background: var(--corbranco);
	padding: 1.2rem;
	border-radius: 12px;
	max-width: 520px;
	width: 94%;
	position: relative;
}
.lt-modal-close {
	position: absolute;
	right: 1rem;
	top: 1rem;
	background: transparent;
	border: 0;
	font-size: 1.6rem;
	cursor: pointer;
}

.lt-hero-ctas {
	display: flex;
	gap: 0.6rem;
	margin-bottom: 1rem;
}
/* faq */
.faq details {
	background: #fff;
	padding: 0.9rem;
	border-radius: 8px;
	margin-bottom: 0.6rem;
	border: 1px solid #f1ede9;
}
.faq summary {
	cursor: pointer;
	font-weight: 600;
}

/* responsive */
@media (max-width: 980px) {
	.post-inner {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.post-hero img {
		height: 220px;
	}
	.post-aside {
		position: static;
	}
}
