/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
	--navy: #16214B;
	--navy-dark: #0B1A30;
	--wine: #942626;
	--gold: #B49469;
	--gold-light: #D4BD97;
	--cream: #F3EBE1;
	--cream-deep: #E1CCC4;
	--ink: #1B2436;
	--slate: #5B6472;
	--white: #FFFFFF;

	--font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--font-label: 'Cinzel', Georgia, serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--radius: 3px;
	--shadow-soft: 0 18px 45px rgba(11, 26, 48, 0.10);
	--shadow-lift: 0 24px 60px rgba(11, 26, 48, 0.16);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);

	--header-h: 148px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0; color: var(--navy); }
p { margin: 0; line-height: 1.65; color: var(--slate); }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
	html { scroll-behavior: auto; }
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}

.wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
}

.eyebrow {
	font-family: var(--font-label);
	font-size: 12.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wine);
	margin: 0 0 16px;
	position: relative;
	padding-left: 28px;
}
.eyebrow::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 18px;
	height: 1px;
	background: var(--gold);
}
.eyebrow--light { color: var(--gold-light); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	border: 1px solid transparent;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
	white-space: nowrap;
}
.btn--cta { background: var(--wine); color: var(--white); }
.btn--cta:hover { background: #7a1e1e; transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--gold { background: var(--gold); color: var(--navy-dark); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--ghost { background: transparent; color: var(--navy); border-color: rgba(22,33,75,0.25); }
.btn--ghost:hover { border-color: var(--navy); background: rgba(22,33,75,0.04); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn-icon { flex-shrink: 0; display: block; }

/* ==========================================================================
   Topbar + Header
   ========================================================================== */
.topbar {
	background: var(--navy-dark);
	color: var(--cream);
}
.topbar__inner {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 24px;
	font-size: 12.5px;
	font-family: var(--font-label);
	letter-spacing: 0.04em;
}
.topbar__item { opacity: 0.85; }
.topbar__sep { opacity: 0.4; }
.topbar__phone {
	margin-left: auto;
	color: var(--gold-light);
	font-weight: 600;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(243, 235, 225, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(22,33,75,0.08);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 32px;
	height: 132px;
}
.site-header__logo img { height: 96px; width: auto; }
.site-header__nav {
	display: flex;
	gap: 28px;
	margin-left: auto;
	font-size: 14.5px;
	font-weight: 500;
}
.site-header__nav a { position: relative; padding: 4px 0; color: var(--navy); }
.site-header__nav a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 1px;
	background: var(--wine);
	transition: width 0.25s var(--ease);
}
.site-header__nav a:hover::after { width: 100%; }

@media (max-width: 640px) {
	.site-header__nav { display: none; }
	.topbar__item:nth-child(3) { display: none; }
	.site-header__inner { height: 92px; }
	.site-header__logo img { height: 64px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
	padding: 96px 0 88px;
	overflow: hidden;
}
.hero__ornament {
	position: absolute;
	right: -8%;
	top: 50%;
	transform: translateY(-50%);
	width: 560px;
	height: 560px;
	opacity: 0.9;
	pointer-events: none;
}
.hero__inner { position: relative; max-width: 700px; }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero__title {
	color: var(--white);
	font-size: clamp(34px, 5.2vw, 56px);
	font-weight: 600;
	margin-bottom: 22px;
}
.hero__title em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.hero__subtitle {
	color: rgba(243,235,225,0.82);
	font-size: 17.5px;
	max-width: 560px;
	margin-bottom: 26px;
}
.hero__bullets {
	list-style: none;
	margin: 0 0 34px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.hero__bullets li {
	position: relative;
	padding-left: 26px;
	color: rgba(243,235,225,0.85);
	font-size: 15px;
	font-weight: 500;
}
.hero__bullets li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 12px;
	height: 12px;
	border: 1.5px solid var(--gold-light);
	border-radius: 50%;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__actions .btn--ghost { color: var(--cream); border-color: rgba(243,235,225,0.35); }
.hero__actions .btn--ghost:hover { border-color: var(--gold-light); background: rgba(243,235,225,0.06); }
.hero__credential {
	font-family: var(--font-label);
	font-size: 12px;
	letter-spacing: 0.05em;
	color: rgba(243,235,225,0.6);
}

@media (max-width: 780px) {
	.hero { padding: 64px 0 56px; }
	.hero__ornament { width: 340px; height: 340px; right: -18%; opacity: 0.5; }
}

/* ==========================================================================
   Quem somos
   ========================================================================== */
.about { background: var(--cream-deep); border-bottom: 1px solid rgba(22,33,75,0.08); }
.about__grid {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 56px;
	align-items: center;
}
.about__media {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lift);
}
.about__media::after {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid rgba(180,148,105,0.5);
	outline: 8px solid var(--cream);
	outline-offset: -8px;
	pointer-events: none;
}
.about__media img { width: 100%; height: auto; display: block; }
.about__content { max-width: 560px; }
.about__lead {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(20px, 2.4vw, 26px);
	color: var(--navy);
	line-height: 1.5;
	margin-bottom: 22px;
}
.about__text { font-size: 15.5px; }

@media (max-width: 860px) {
	.about__grid { grid-template-columns: 1fr; gap: 32px; }
	.about__media { max-width: 320px; margin: 0 auto; }
}

/* ==========================================================================
   Sections (generic)
   ========================================================================== */
.section { padding: 88px 0; }
.section__title {
	font-size: clamp(26px, 3.4vw, 38px);
	max-width: 640px;
	margin-bottom: 48px;
}

/* Para quem é esse atendimento */
.situations .section__title { margin-bottom: 18px; }
.situations__intro { font-size: 15.5px; color: var(--slate); max-width: 620px; margin-bottom: 40px; }
.situations__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.situation-card {
	background: var(--white);
	border: 1px solid rgba(22,33,75,0.08);
	border-top: 3px solid var(--gold);
	border-radius: var(--radius);
	padding: 28px 24px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.situation-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.situation-card h3 { font-size: 20px; margin-bottom: 10px; }
.situation-card p { font-size: 14.5px; }
.situations__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 36px;
	font-weight: 600;
	font-size: 15px;
	color: var(--wine);
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s var(--ease);
}
.situations__cta:hover { border-color: var(--wine); }

/* Aviso importante */
.warning { background: var(--navy); }
.warning__inner {
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
	padding: 64px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.warning__inner h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); }
.warning__inner p { color: rgba(243,235,225,0.78); font-size: 15.5px; }

@media (max-width: 980px) { .situations__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .situations__grid { grid-template-columns: 1fr; } }

/* Como funciona */
.process { background: var(--white); }
.process__list { display: flex; flex-direction: column; gap: 0; }
.process__step {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	padding: 26px 0;
	border-bottom: 1px solid rgba(22,33,75,0.09);
}
.process__step:last-child { border-bottom: none; }
.process__num {
	font-family: var(--font-display);
	font-size: 40px;
	font-weight: 600;
	color: var(--gold);
	line-height: 1;
	min-width: 64px;
}
.process__step h3 { font-size: 20px; margin-bottom: 6px; }
.process__step p { font-size: 15px; max-width: 520px; }

@media (max-width: 640px) {
	.process__step { gap: 16px; }
	.process__num { font-size: 30px; min-width: 44px; }
}

/* CTA band */
.cta-band {
	background: radial-gradient(120% 160% at 15% 20%, #1c2a5c 0%, var(--navy-dark) 60%);
	padding: 80px 0;
	text-align: center;
}
.cta-band__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta-band h2 { color: var(--white); font-size: clamp(26px, 4vw, 40px); }

/* FAQ */
.faq__list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq__item {
	background: var(--white);
	border: 1px solid rgba(22,33,75,0.09);
	border-radius: var(--radius);
	overflow: hidden;
}
.faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: transparent;
	border: none;
	text-align: left;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15.5px;
	color: var(--navy);
}
.faq__icon {
	position: relative;
	width: 16px; height: 16px;
	flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
	content: '';
	position: absolute;
	background: var(--wine);
	transition: transform 0.25s var(--ease);
}
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.faq__item[data-open="true"] .faq__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
	padding: 0 24px;
}
.faq__item[data-open="true"] .faq__answer { max-height: 240px; padding: 0 24px 22px; }
.faq__answer p { font-size: 14.5px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-dark); color: rgba(243,235,225,0.75); padding: 56px 0 32px; }
.site-footer__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(243,235,225,0.12);
}
.site-footer__brand img { margin-bottom: 14px; width: 320px; max-width: 100%; height: auto; }
.site-footer__brand p { color: rgba(243,235,225,0.6); font-size: 13px; }
.site-footer__contact { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.site-footer__contact a:hover { color: var(--gold-light); }
.site-footer__legal { font-size: 12.5px; display: flex; flex-direction: column; gap: 8px; }
.site-footer__legal a { color: var(--gold-light); }
.site-footer__legal p { color: rgba(243,235,225,0.45); font-size: 11.5px; }

@media (max-width: 780px) {
	.site-footer__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WhatsApp float
   ========================================================================== */
.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25D366;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lift);
	z-index: 50;
	transition: transform 0.25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ==========================================================================
   LGPD banner
   ========================================================================== */
.lgpd-banner {
	position: fixed;
	left: 20px; right: 20px; bottom: 20px;
	max-width: 640px;
	margin: 0 auto;
	background: var(--navy-dark);
	color: var(--cream);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lift);
	z-index: 99999;
	transform: translateY(140%);
	transition: transform 0.4s var(--ease);
}
.lgpd-banner.is-visible { transform: translateY(0); }
.lgpd-banner__inner { padding: 22px 24px; display: flex; flex-direction: column; gap: 14px; }
.lgpd-banner p { color: rgba(243,235,225,0.85); font-size: 13.5px; }
.lgpd-banner a { color: var(--gold-light); text-decoration: underline; }
.lgpd-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.lgpd-reopen {
	position: fixed;
	left: 20px; bottom: 20px;
	background: var(--navy);
	color: var(--cream);
	border: none;
	border-radius: 20px;
	padding: 8px 16px;
	font-size: 12px;
	z-index: 99998;
	box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.situations__grid .situation-card:nth-child(1) { transition-delay: 0s; }
.situations__grid .situation-card:nth-child(2) { transition-delay: 0.08s; }
.situations__grid .situation-card:nth-child(3) { transition-delay: 0.16s; }
.situations__grid .situation-card:nth-child(4) { transition-delay: 0.24s; }

/* ==========================================================================
   Fallback page content (page.php)
   ========================================================================== */
.page-content { max-width: 760px; }
.page-content__body { margin-top: 24px; }
.page-content__body h2 { font-size: 22px; margin: 28px 0 10px; }
.page-content__body p { margin-bottom: 14px; }
