/* =========================================================
   Marcos — Endocrinologia
   Design system (green/teal + amber on warm cream)
   ========================================================= */

/* ===== Tokens ===== */
:root {
	/* Green scale — strong #148484, weak #e8f3f3 (names kept for compatibility) */
	--c-plum-950: #082a2a;
	--c-plum-900: #0c3838;
	--c-plum-800: #0f5555;
	--c-plum-700: #148484;
	--c-plum-600: #1a9c9c;
	--c-plum-100: #d3e9e9;
	--c-plum-50:  #e8f3f3;

	--c-amber-500: #e8923f;
	--c-amber-400: #f2a85c;
	--c-amber-600: #cc7826;

	--c-cream: #faf6f1;
	--c-ink: #1f2b2b;
	--c-muted: #4f6060;
	--c-white: #ffffff;

	--radius: 16px;
	--radius-sm: 10px;
	--shadow: 0 10px 30px rgba(10, 50, 50, 0.12);
	--shadow-lg: 0 24px 60px rgba(8, 42, 42, 0.28);
	--container: 1160px;

	--font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--font-body: 'Plus Jakarta Sans', 'Segoe UI', Roboto, system-ui, -apple-system, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--c-ink);
	background: var(--c-cream);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; margin: 0 0 .55em; font-weight: 600; }
p { margin: 0 0 1em; }
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 22px;
}
.screen-reader-text {
	position: absolute;
	left: -9999px;
}
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--c-plum-800);
	color: #fff;
	padding: 10px 16px;
	z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }
.eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--c-amber-600);
	margin-bottom: 14px;
}
.section--dark .eyebrow,
.hero .eyebrow { color: var(--c-amber-400); }

/* ===== Icons ===== */
.icon {
	width: 1.1em;
	height: 1.1em;
	flex-shrink: 0;
}

/* ===== Buttons ===== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 14px 28px;
	border-radius: 999px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: .98rem;
	text-decoration: none;
	cursor: pointer;
	border: 0;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn--small { padding: 10px 20px; font-size: .88rem; }
.btn--large { padding: 17px 36px; font-size: 1.05rem; }
.btn:hover { transform: translateY(-2px); }
.btn--whatsapp {
	background: #25D366;
	color: #06371f;
	box-shadow: 0 8px 22px rgba(37, 211, 102, .38);
}
.btn--whatsapp:hover { background: #1fc15c; }
.btn--primary {
	background: var(--c-amber-500);
	color: var(--c-plum-950);
	box-shadow: 0 8px 22px rgba(232, 146, 63, .4);
}
.btn--primary:hover { background: var(--c-amber-400); }
.btn--outline {
	border: 2px solid var(--c-plum-700);
	color: var(--c-plum-800);
	background: transparent;
}
.btn--outline:hover { background: var(--c-plum-700); color: #fff; }
.btn--outline-light {
	border: 2px solid rgba(255,255,255,.45);
	color: var(--c-white);
	background: transparent;
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); }
.btn .icon { color: inherit; }

/* ===== Header ===== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid rgba(10, 50, 50, .08);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 22px;
}
.site-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.05; }
/* Covers both the theme's fallback img (.site-logo__img) and the WP
   custom-logo output (.custom-logo) from the_custom_logo(). The custom logo
   MUST NOT be wrapped in an extra <a> in header.php: the_custom_logo() emits
   its own <a>, and a nested anchor makes the browser hoist .custom-logo out of
   .site-logo, so these selectors would no longer match and the logo renders
   full-size. header.php wraps it in a <div> for that reason. */
.site-logo img,
.site-logo__img,
.site-logo .custom-logo { display: block; height: 56px; width: auto; max-width: 100%; }
.site-logo__text {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--c-plum-800);
}
.site-logo__sub {
	font-family: var(--font-body);
	font-size: .68rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--c-amber-600);
	font-weight: 700;
}
.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 8px;
}
.nav-toggle span {
	width: 24px;
	height: 2px;
	background: var(--c-plum-800);
	display: block;
	border-radius: 2px;
}
.primary-nav {
	position: fixed;
	inset: 0 0 0 28%;
	background: var(--c-plum-900);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 32px;
	transform: translateX(100%);
	transition: transform .25s ease;
	z-index: 60;
}
.primary-nav.is-open { transform: translateX(0); }
.primary-nav__list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.primary-nav__list a {
	color: var(--c-white);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.12rem;
}
.primary-nav__list a:hover { color: var(--c-amber-400); }

/* ===== Hero (chamativa) ===== */
.hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(1100px 520px at 78% -10%, rgba(232, 146, 63, .28), transparent 60%),
		radial-gradient(900px 640px at 8% 110%, rgba(106, 61, 156, .55), transparent 55%),
		linear-gradient(155deg, var(--c-plum-950) 0%, var(--c-plum-800) 55%, var(--c-plum-700) 100%);
	color: #fff;
	padding: 72px 0 84px;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
	background-size: 22px 22px;
	opacity: .4;
	pointer-events: none;
}
.hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 40px;
	align-items: center;
}
.hero__title {
	font-size: 2.1rem;
	color: #fff;
	letter-spacing: -.01em;
	margin-bottom: .35em;
}
.hero__title em {
	font-style: italic;
	color: var(--c-amber-400);
}
.hero__lead {
	font-size: 1.12rem;
	color: rgba(255,255,255,.86);
	max-width: 36ch;
	margin-bottom: 1.6em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 26px;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.16);
}
.hero__trust span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .9rem;
	color: rgba(255,255,255,.82);
}
.hero__trust .icon { color: var(--c-amber-400); width: 1.2em; height: 1.2em; }

.hero__media { position: relative; }
.hero__media .img-placeholder,
.hero__media .hero__photo {
	border-radius: 22px;
	box-shadow: var(--shadow-lg);
	aspect-ratio: 4/5;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: 50% 18%;
}
.hero__media::after {
	content: '';
	position: absolute;
	inset: auto -16px -16px auto;
	width: 62%;
	height: 62%;
	border: 2px solid rgba(232, 146, 63, .5);
	border-radius: 22px;
	z-index: -1;
}
.hero__badge {
	position: absolute;
	left: -10px;
	bottom: 22px;
	background: var(--c-white);
	color: var(--c-plum-900);
	border-radius: 14px;
	padding: 14px 18px;
	box-shadow: var(--shadow);
	max-width: 200px;
}
.hero__badge strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--c-amber-600); }
.hero__badge span { font-size: .82rem; color: var(--c-muted); line-height: 1.4; }

/* ===== Image placeholders ===== */
.img-placeholder {
	background: repeating-linear-gradient(45deg, var(--c-plum-100), var(--c-plum-100) 10px, #fff 10px, #fff 20px);
	border: 2px dashed var(--c-plum-600);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--c-plum-800);
	font-weight: 600;
	font-size: .95rem;
	padding: 16px;
	min-height: 240px;
}
.img-placeholder--portrait { aspect-ratio: 4/5; }
.img-placeholder--square { aspect-ratio: 1/1; }
.img-placeholder--wide { aspect-ratio: 16/10; }

/* ===== Real photos (replaces placeholders) ===== */
.photo {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	object-fit: cover;
	object-position: 50% 12%; /* keep the top of the head visible when cropping vertical portraits */
}
.photo--portrait { aspect-ratio: 4/5; }
.photo--square { aspect-ratio: 1/1; }
.photo--wide { aspect-ratio: 16/10; }

/* ===== Section base ===== */
.section { padding: 64px 0; }
.section--light { background: var(--c-cream); }
.section--soft { background: var(--c-plum-50); }
.section--accent { background: var(--c-plum-100); }
.section--dark {
	background:
		radial-gradient(800px 500px at 90% 0%, rgba(106,61,156,.45), transparent 60%),
		linear-gradient(160deg, var(--c-plum-950), var(--c-plum-800));
	color: #fff;
}
.section--dark .section__title,
.section--dark .section__subtitle { color: #fff; }
.section--dark p { color: rgba(255,255,255,.82); }
.section__head { max-width: 720px; margin-bottom: 8px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title {
	font-size: 1.85rem;
	color: var(--c-plum-900);
}
.section__subtitle {
	font-size: 1.2rem;
	color: var(--c-plum-700);
	margin-top: 1.4em;
}
.section__lead { font-size: 1.08rem; max-width: 660px; color: var(--c-muted); }
.section--dark .section__lead { color: rgba(255,255,255,.85); }
.section__grid {
	display: grid;
	gap: 40px;
	align-items: center;
}
.prose p { color: var(--c-muted); }
.section--dark .prose p { color: rgba(255,255,255,.82); }

/* ===== Care cards (Áreas de atuação) ===== */
.card-grid {
	display: grid;
	gap: 22px;
	margin-top: 36px;
}
.care-card {
	background: var(--c-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 28px;
	border-top: 4px solid var(--c-amber-500);
	transition: transform .18s ease, box-shadow .18s ease;
}
.care-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.care-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--c-plum-100);
	color: var(--c-plum-700);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.care-card__icon .icon { width: 26px; height: 26px; }
.care-card__title {
	font-size: 1.18rem;
	color: var(--c-plum-800);
}
.care-card p { color: var(--c-muted); margin-bottom: 0; }

/* ===== Steps list (Como funciona) ===== */
.steps-list {
	list-style: none;
	margin: 38px 0 0;
	padding: 0;
	display: grid;
	gap: 26px;
	counter-reset: step;
}
.steps-list__item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}
.steps-list__number {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--c-amber-500);
	color: var(--c-plum-950);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.steps-list__title { color: #fff; font-size: 1.18rem; margin-bottom: .25em; }
.steps-disclaimer {
	margin-top: 36px;
	font-size: .9rem;
	color: rgba(255,255,255,.6);
	border-top: 1px solid rgba(255,255,255,.16);
	padding-top: 20px;
	max-width: 720px;
}

/* ===== Info / location cards ===== */
.info-grid {
	display: grid;
	gap: 18px;
	margin-top: 30px;
}
.info-card {
	background: var(--c-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 24px;
	border-left: 4px solid var(--c-amber-500);
}
.info-card__title {
	font-family: var(--font-body);
	font-size: .82rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--c-amber-600);
	margin-bottom: .5em;
	display: flex;
	align-items: center;
	gap: 8px;
}
.info-card p { margin: 0; color: var(--c-ink); }
.info-card a { color: var(--c-plum-700); font-weight: 600; text-decoration: underline; }

/* ===== Check list ===== */
.check-list {
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
	display: grid;
	gap: 14px;
}
.check-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 1rem;
	color: var(--c-muted);
}
.section--dark .check-list li { color: rgba(255,255,255,.85); }
.check-list li::before {
	content: '✓';
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--c-amber-500);
	color: var(--c-plum-950);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .8rem;
}

/* ===== CTA final ===== */
.cta-final {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(700px 400px at 85% 120%, rgba(232,146,63,.32), transparent 60%),
		linear-gradient(150deg, var(--c-plum-900), var(--c-plum-700));
	color: #fff;
	padding: 72px 0;
	text-align: center;
}
.cta-final__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-final__title { font-size: 1.9rem; color: #fff; }
.cta-final p { color: rgba(255,255,255,.85); }
.cta-final__actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
	margin-top: 28px;
}

/* ===== WhatsApp floating button ===== */
.whatsapp-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 90;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
	transition: transform .15s ease;
	animation: marcos-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float .icon { width: 30px; height: 30px; color: #fff; }
@keyframes marcos-pulse {
	0%, 100% { box-shadow: 0 8px 20px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.5); }
	50% { box-shadow: 0 8px 20px rgba(0,0,0,.25), 0 0 0 12px rgba(37,211,102,0); }
}

/* ===== Footer ===== */
.site-footer {
	background: var(--c-plum-950);
	color: rgba(255,255,255,.75);
	padding: 56px 0 28px;
}
.site-footer__grid {
	display: grid;
	gap: 36px;
}
.site-footer__name { font-family: var(--font-head); color: #fff; font-size: 1.35rem; margin-bottom: .15em; }
.site-footer__cro { color: var(--c-amber-400); font-weight: 600; font-size: .9rem; margin-bottom: 1.1em; }
.site-footer__address a,
.site-footer__contact a { color: #fff; text-decoration: underline; }
.site-footer h4 {
	font-family: var(--font-body);
	font-size: .78rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--c-amber-400);
	margin-bottom: 1em;
}
.site-footer__nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.site-footer__nav-list a { text-decoration: none; color: rgba(255,255,255,.75); }
.site-footer__nav-list a:hover { color: #fff; }
.site-footer__disclaimer {
	margin-top: 40px;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.12);
	font-size: .82rem;
	color: rgba(255,255,255,.55);
}
.site-footer__disclaimer a { color: rgba(255,255,255,.7); }

/* ===================================== */
/* ===== Tablet / Desktop breakpoints == */
/* ===================================== */
@media (min-width: 640px) {
	.card-grid { grid-template-columns: repeat(2, 1fr); }
	.cta-final__actions { flex-direction: row; justify-content: center; }
}

@media (min-width: 880px) {
	.nav-toggle { display: none; }
	.primary-nav {
		position: static;
		inset: auto;
		transform: none;
		flex-direction: row;
		align-items: center;
		background: transparent;
		padding: 0;
		gap: 26px;
	}
	.primary-nav__list {
		flex-direction: row;
		margin: 0;
		gap: 26px;
	}
	.primary-nav__list a { color: var(--c-plum-900); font-size: .96rem; font-weight: 600; }
	.primary-nav__list a:hover { color: var(--c-amber-600); }

	.hero { padding: 96px 0 104px; }
	.hero__grid { grid-template-columns: 1.05fr .95fr; }
	.hero__title { font-size: 3.1rem; }

	.section { padding: 88px 0; }
	.section__grid { grid-template-columns: 1fr 1fr; }
	.section__title { font-size: 2.4rem; }

	.card-grid { grid-template-columns: repeat(2, 1fr); }
	.steps-list { grid-template-columns: repeat(3, 1fr); }
	.info-grid { grid-template-columns: repeat(3, 1fr); }
	.check-list { grid-template-columns: repeat(2, 1fr); }

	.site-footer__grid { grid-template-columns: 2fr 1fr 1.4fr; }

	.whatsapp-float { right: 28px; bottom: 28px; width: 64px; height: 64px; }
	.whatsapp-float .icon { width: 34px; height: 34px; }
}

@media (min-width: 1100px) {
	.hero__title { font-size: 3.5rem; }
	.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   Inner pages
   ========================================================= */

/* ===== Page hero (compact) ===== */
.page-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(900px 460px at 82% -20%, rgba(232, 146, 63, .26), transparent 60%),
		radial-gradient(760px 520px at 4% 120%, rgba(106, 61, 156, .5), transparent 55%),
		linear-gradient(155deg, var(--c-plum-950) 0%, var(--c-plum-800) 60%, var(--c-plum-700) 100%);
	color: #fff;
	padding: 56px 0 52px;
}
.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
	background-size: 22px 22px;
	opacity: .4;
	pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero__title { font-size: 2rem; color: #fff; letter-spacing: -.01em; }
.page-hero__title em { font-style: italic; color: var(--c-amber-400); }
.page-hero__lead { font-size: 1.12rem; color: rgba(255,255,255,.86); max-width: 60ch; margin-bottom: 0; }
.page-hero__meta {
	font-size: .85rem;
	letter-spacing: .04em;
	color: rgba(255,255,255,.7);
	margin-bottom: 0;
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* ===== Rich text (long-form: termos, privacidade) ===== */
.rich-text { max-width: 780px; }
.rich-text > *:first-child { margin-top: 0; }
.rich-text h2 { font-size: 1.5rem; color: var(--c-plum-900); margin: 1.9em 0 .5em; }
.rich-text h3 { font-size: 1.18rem; color: var(--c-plum-800); margin: 1.5em 0 .4em; }
.rich-text p { color: var(--c-muted); }
.rich-text ul, .rich-text ol { color: var(--c-muted); padding-left: 1.35em; margin: 0 0 1.3em; }
.rich-text li { margin-bottom: .55em; }
.rich-text li::marker { color: var(--c-amber-600); }
.rich-text a { color: var(--c-plum-700); font-weight: 600; }
.rich-text strong { color: var(--c-ink); }

/* ===== Prose helpers shared by inner pages ===== */
.prose__subtitle {
	font-size: 1.25rem;
	color: var(--c-plum-800);
	margin: 1.4em 0 .4em;
}
.prose .check-list { margin-top: 20px; }

/* ===== Expandable cards (accordion) ===== */
.accordion {
	display: grid;
	gap: 14px;
	margin-top: 34px;
}
.accordion__item {
	background: var(--c-white);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
	border-left: 4px solid var(--c-amber-500);
	overflow: hidden;
}
.accordion__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	text-align: left;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 20px 24px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 1.12rem;
	line-height: 1.3;
	color: var(--c-plum-800);
	transition: color .15s ease;
}
.accordion__trigger:hover { color: var(--c-amber-600); }
.accordion__icon {
	position: relative;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}
.accordion__icon::before,
.accordion__icon::after {
	content: '';
	position: absolute;
	background: var(--c-amber-600);
	border-radius: 2px;
	transition: transform .25s ease, opacity .25s ease;
}
.accordion__icon::before { top: 50%; left: 0; width: 100%; height: 2px; margin-top: -1px; }
.accordion__icon::after { left: 50%; top: 0; width: 2px; height: 100%; margin-left: -1px; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: scaleY(0); opacity: 0; }
.accordion__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
}
.accordion__panel-inner { padding: 0 24px 22px; color: var(--c-muted); }
.accordion__panel-inner > *:last-child { margin-bottom: 0; }
.no-js .accordion__panel { max-height: none; }

/* ===== Ordered list (cards numerados) ===== */
.ordered-list {
	counter-reset: oli;
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
	display: grid;
	gap: 14px;
}
.ordered-list li {
	counter-increment: oli;
	position: relative;
	padding: 18px 22px 18px 66px;
	background: var(--c-white);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
	color: var(--c-ink);
}
.ordered-list li::before {
	content: counter(oli);
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--c-amber-500);
	color: var(--c-plum-950);
	font-family: var(--font-head);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ===== Note / disclaimer card ===== */
.note-card {
	background: var(--c-plum-50);
	border-left: 4px solid var(--c-plum-600);
	border-radius: var(--radius-sm);
	padding: 22px 26px;
	margin-top: 32px;
	max-width: 820px;
}
.note-card p { color: var(--c-muted); margin: 0; }
.note-card p + p { margin-top: .8em; }

/* ===== Guide cards (conteúdos) ===== */
.guide-card {
	background: var(--c-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 28px;
	border-top: 4px solid var(--c-amber-500);
}
.guide-card__title { font-size: 1.18rem; color: var(--c-plum-800); margin-bottom: .2em; }
.guide-card__list {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: grid;
	gap: 13px;
}
.guide-card__list li {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	color: var(--c-muted);
	font-size: .98rem;
}
.guide-card__list li::before {
	content: '›';
	flex-shrink: 0;
	color: var(--c-amber-600);
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.2;
}

/* ===== Contact channel cards ===== */
.contact-grid { display: grid; gap: 18px; margin-top: 30px; }
.contact-card {
	background: var(--c-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 26px;
	border-top: 4px solid var(--c-amber-500);
	text-align: center;
}
.contact-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--c-plum-100);
	color: var(--c-plum-700);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}
.contact-card__icon .icon { width: 26px; height: 26px; }
.contact-card__label {
	font-size: .78rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--c-amber-600);
	margin-bottom: .35em;
}
.contact-card a { color: var(--c-plum-700); font-weight: 600; text-decoration: none; word-break: break-word; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { margin: 0; color: var(--c-ink); }

@media (min-width: 640px) {
	.contact-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 880px) {
	.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.page-hero { padding: 84px 0 76px; }
	.page-hero__title { font-size: 2.9rem; }
}

/* Hide the injected floating WhatsApp button (a.float) and its Font Awesome
   icon (.fa-whatsapp), but only on theme-rendered pages/posts (.marcos-native
   — the 8 theme pages and posts). Elementor-built pages keep their own button.
   The theme renders its own WhatsApp float (.whatsapp-float) and inline SVG
   icon via marcos_icon(), neither of which uses these classes. */
.marcos-native a.float,
.marcos-native .fa-whatsapp { display: none !important; }
