/* ==========================================================================
   SXS LP for Urace — estilos das landing pages
   Padrão visual extraído de urace.us (vermelho #D91617, preto, Inter,
   títulos em sans display expandida, botões com raio 15px).
   Tudo escopado em .sxs-lp para não vazar para o tema.
   ========================================================================== */

:root {
	--sxs-red: #d91617;
	--sxs-red-600: #b51213;
	--sxs-black: #0b0b0c;
	--sxs-black-800: #16161a;
	--sxs-ink: #363744;
	--sxs-text: #1c1d24;
	--sxs-muted: #6b6c78;
	--sxs-gray: #f2f2f4;
	--sxs-line: #e2e2e8;
	--sxs-white: #fff;

	/* "Vinila Extended" é a fonte do site (licença comercial); Archivo expandida é o fallback aberto. */
	--sxs-font-display: "Vinila Extended", "Archivo", "Arial Black", sans-serif;
	--sxs-font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

	--sxs-container: 1246px;
	--sxs-gutter: 16px;
	--sxs-radius: 15px;
	--sxs-radius-lg: 20px;
	--sxs-section-y: clamp(64px, 9vw, 120px);
	--sxs-header-h: 64px;
}

@media (min-width: 768px) {
	:root { --sxs-gutter: 32px; }
}

/* Base ---------------------------------------------------------------- */

.sxs-lp-body {
	margin: 0;
	background: var(--sxs-white);
}

.sxs-lp {
	color: var(--sxs-text);
	font-family: var(--sxs-font-body);
	font-size: 16px; /* px, não rem: o tema pode redefinir o font-size do <html>. */
	line-height: 1.6;
	text-align: left;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

.sxs-lp *,
.sxs-lp *::before,
.sxs-lp *::after { box-sizing: border-box; }

/*
 * Reset + blindagem contra CSS global do tema. O tema do urace.us, por exemplo, aplica
 * "* { font-family; font-size }", "a { display: inline-block }" e "header { position: fixed }".
 * :where() mantém a especificidade em 0,1,0: as classes abaixo (mesma especificidade,
 * declaradas depois) prevalecem, e o tema (0,0,1) perde.
 */
.sxs-lp :where(*) {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}
.sxs-lp :where(h1, h2, h3, p, ul, ol, figure, fieldset, legend) { margin: 0; padding: 0; }
.sxs-lp :where(ul, ol) { list-style: none; }
.sxs-lp :where(img) { display: block; max-width: 100%; height: auto; }
.sxs-lp :where(a) { color: inherit; display: inline; }

.sxs-lp-icon { width: 1.15em; height: 1.15em; flex: none; }

.sxs-lp-container {
	width: 100%;
	max-width: calc(var(--sxs-container) + var(--sxs-gutter) * 2);
	margin: 0 auto;
	padding: 0 var(--sxs-gutter);
}

.sxs-lp :focus-visible {
	outline: 3px solid var(--sxs-red);
	outline-offset: 3px;
}

html:has(.sxs-lp) { scroll-behavior: smooth; scroll-padding-top: calc(var(--sxs-header-h) + 16px); }

/* Tipografia --------------------------------------------------------- */

.sxs-lp-hero__title,
.sxs-lp-title,
.sxs-lp-logo,
.sxs-lp-card__title,
.sxs-lp-pillar__title,
.sxs-lp-package__name,
.sxs-lp-package__price-value,
.sxs-lp-checklist__title,
.sxs-lp-success__title,
.sxs-lp-method__watermark,
.sxs-lp-call__phone {
	font-family: var(--sxs-font-display);
	font-stretch: 125%;
	letter-spacing: -0.01em;
}

.sxs-lp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	color: var(--sxs-red);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sxs-lp-eyebrow::before {
	content: "";
	width: 40px;
	height: 3px;
	background: var(--sxs-red);
}

.sxs-lp-eyebrow--light { color: var(--sxs-white); }

.sxs-lp-title {
	color: inherit;
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 800;
	line-height: 1.12;
}

.sxs-lp-subtitle {
	margin-top: 16px;
	color: var(--sxs-muted);
	font-size: clamp(17px, 1.6vw, 20px);
	line-height: 1.5;
}

.sxs-lp-heading { max-width: 760px; }
.sxs-lp-heading--center { margin: 0 auto; text-align: center; }
.sxs-lp-heading--center .sxs-lp-eyebrow { justify-content: center; }

/* Botões ------------------------------------------------------------- */

.sxs-lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 14px 28px;
	border: 2px solid transparent;
	border-radius: var(--sxs-radius);
	font-family: var(--sxs-font-body);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sxs-lp-btn:hover { transform: translateY(-2px); }
.sxs-lp-btn:active { transform: translateY(0); }

.sxs-lp-btn--primary { background: var(--sxs-red); color: var(--sxs-white); }
.sxs-lp-btn--primary:hover { background: var(--sxs-red-600); color: var(--sxs-white); }

.sxs-lp-btn--outline { border-color: var(--sxs-ink); background: transparent; color: var(--sxs-ink); }
.sxs-lp-btn--outline:hover { border-color: var(--sxs-red); background: var(--sxs-red); color: var(--sxs-white); }

.sxs-lp-btn--light { background: var(--sxs-white); color: var(--sxs-red); }
.sxs-lp-btn--light:hover { background: var(--sxs-black); color: var(--sxs-white); }

.sxs-lp-btn--outline-light { border-color: rgba(255, 255, 255, 0.7); background: transparent; color: var(--sxs-white); }
.sxs-lp-btn--outline-light:hover { border-color: var(--sxs-white); background: var(--sxs-white); color: var(--sxs-red); }

.sxs-lp-btn--ghost { background: transparent; color: var(--sxs-ink); text-decoration: underline; text-underline-offset: 4px; }
.sxs-lp-btn--ghost:hover { color: var(--sxs-red); transform: none; }

.sxs-lp-btn--block { width: 100%; }

/* Faixa vermelha inclinada (assinatura visual do urace.us) ------------ */

.sxs-lp-stripe {
	display: block;
	height: 14px;
	background: linear-gradient(90deg, var(--sxs-red) 0 70%, var(--sxs-red-600) 70%);
	transform: skewX(-35deg);
}

.sxs-lp-stripe--hero {
	position: absolute;
	right: -40px;
	bottom: 56px;
	width: min(38vw, 420px);
	z-index: 2;
}

.sxs-lp-stripe--inline { width: 140px; margin-top: 40px; margin-left: 6px; }

/* Header ------------------------------------------------------------- */

.sxs-lp-header {
	position: sticky;
	top: 0;
	left: auto;
	display: block;
	width: auto;
	height: auto;
	z-index: 50;
	background: var(--sxs-black);
	color: var(--sxs-white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-bar .sxs-lp-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .sxs-lp-header { top: 0; } }

.sxs-lp-header__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	height: var(--sxs-header-h);
}

.sxs-lp-logo {
	color: var(--sxs-white);
	font-size: 24px;
	font-style: italic;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	letter-spacing: 0.02em;
}

.sxs-lp-logo__u { color: var(--sxs-red); }

.sxs-lp-header__brand {
	display: none;
	padding: 5px 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sxs-lp-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
	padding: 8px 16px;
	border: 1px solid var(--sxs-white);
	border-radius: var(--sxs-radius);
	color: var(--sxs-white);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.sxs-lp-header__phone:hover { background: var(--sxs-white); color: var(--sxs-black); }

@media (min-width: 768px) {
	.sxs-lp-header__brand { display: inline-block; }
}

@media (max-width: 479px) {
	.sxs-lp-header__phone span { display: none; }
	/* Só o ícone no celular: área de toque mínima de 44×44px (WCAG 2.5.5). */
	.sxs-lp-header__phone { justify-content: center; min-width: 44px; min-height: 44px; padding: 10px; }
}

/* Hero --------------------------------------------------------------- */

.sxs-lp-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: min(88vh, 820px);
	padding: 140px 0 clamp(72px, 10vw, 120px);
	background: var(--sxs-black);
	color: var(--sxs-white);
	isolation: isolate;
}

.sxs-lp-hero__media {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.sxs-lp-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.sxs-lp-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(0deg, rgba(11, 11, 12, 0.95) 0%, rgba(11, 11, 12, 0.55) 45%, rgba(11, 11, 12, 0.2) 100%),
		linear-gradient(90deg, rgba(11, 11, 12, 0.8) 0%, rgba(11, 11, 12, 0) 70%);
}

/* Placeholder enquanto não há foto aprovada. */
.sxs-lp-hero--placeholder .sxs-lp-hero__media {
	background:
		radial-gradient(60% 80% at 85% 20%, rgba(217, 22, 23, 0.35), transparent 60%),
		repeating-linear-gradient(-35deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 28px),
		linear-gradient(160deg, #2a2b33 0%, var(--sxs-black) 70%);
}

.sxs-lp-placeholder-tag {
	position: absolute;
	top: 96px;
	right: var(--sxs-gutter);
	z-index: 1;
	padding: 6px 12px;
	border: 1px dashed rgba(255, 255, 255, 0.35);
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sxs-lp-hero__inner { position: relative; }

.sxs-lp-hero__title {
	max-width: 18ch;
	font-size: clamp(34px, 5.2vw, 64px);
	font-weight: 800;
	line-height: 1.04;
}

.sxs-lp-hero__subtitle {
	max-width: 640px;
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(17px, 1.6vw, 20px);
	line-height: 1.55;
}

.sxs-lp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 28px;
	margin-top: 40px;
}

.sxs-lp-hero__support {
	max-width: 420px;
	padding-left: 16px;
	border-left: 2px solid var(--sxs-red);
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.5;
}

/* Seções: temas ------------------------------------------------------ */

.sxs-lp-section { position: relative; padding: var(--sxs-section-y) 0; }
.sxs-lp-section--light { background: var(--sxs-white); }
.sxs-lp-section--gray { background: var(--sxs-gray); }
.sxs-lp-section--dark { background: var(--sxs-black); color: var(--sxs-white); }
.sxs-lp-section--dark .sxs-lp-subtitle { color: rgba(255, 255, 255, 0.7); }
.sxs-lp-section--red { background: var(--sxs-red); color: var(--sxs-white); }
.sxs-lp-section--red .sxs-lp-eyebrow { color: var(--sxs-white); }
.sxs-lp-section--red .sxs-lp-eyebrow::before { background: var(--sxs-white); }
.sxs-lp-section--red .sxs-lp-subtitle { color: rgba(255, 255, 255, 0.85); }

/* Layout em duas colunas -------------------------------------------- */

.sxs-lp-split {
	display: grid;
	gap: 40px;
}

@media (min-width: 992px) {
	.sxs-lp-split { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 80px; align-items: start; }
	.sxs-lp-split--heading { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); align-items: end; }
	.sxs-lp-split--faq { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); }
	.sxs-lp-split--single { grid-template-columns: minmax(0, 1fr); }
	.sxs-lp-split--single > .sxs-lp-split__main { max-width: 860px; }
}

.sxs-lp-prose { display: grid; gap: 16px; margin-top: 28px; color: var(--sxs-ink); font-size: 18px; line-height: 1.65; }
.sxs-lp-section--dark .sxs-lp-prose { color: rgba(255, 255, 255, 0.8); }

/* Checklist (destaques/benefícios) ----------------------------------- */

.sxs-lp-checklist {
	padding: clamp(28px, 3vw, 40px);
	border-radius: var(--sxs-radius-lg);
	background: var(--sxs-black);
	color: var(--sxs-white);
	position: relative;
	overflow: hidden;
}

.sxs-lp-checklist::before {
	content: "";
	position: absolute;
	top: 0;
	left: 32px;
	width: 64px;
	height: 4px;
	background: var(--sxs-red);
}

.sxs-lp-section--gray .sxs-lp-checklist,
.sxs-lp-section--dark .sxs-lp-checklist { background: var(--sxs-white); color: var(--sxs-text); }

.sxs-lp-checklist__title { margin-bottom: 20px; font-size: 20px; font-weight: 800; }

.sxs-lp-checklist ul { display: grid; gap: 14px; }

.sxs-lp-checklist li {
	display: flex;
	gap: 12px;
	font-size: 16px;
	line-height: 1.5;
}

.sxs-lp-checklist .sxs-lp-icon {
	width: 22px;
	height: 22px;
	padding: 4px;
	border-radius: 50%;
	background: var(--sxs-red);
	color: var(--sxs-white);
	margin-top: 1px;
}

/* Grade de cards ----------------------------------------------------- */

.sxs-lp-cards {
	display: grid;
	gap: 20px;
	margin-top: 48px;
	counter-reset: sxs-card;
}

@media (min-width: 640px) {
	.sxs-lp-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
	.sxs-lp-cards--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.sxs-lp-cards--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.sxs-lp-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 32px 28px;
	border-radius: var(--sxs-radius-lg);
	background: var(--sxs-gray);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sxs-lp-section--gray .sxs-lp-card { background: var(--sxs-white); }
.sxs-lp-section--dark .sxs-lp-card { background: var(--sxs-black-800); }

.sxs-lp-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(11, 11, 12, 0.08); }

.sxs-lp-card__marker {
	display: block;
	width: 40px;
	height: 4px;
	margin-bottom: 12px;
	background: var(--sxs-red);
	transform: skewX(-35deg);
}

.sxs-lp-cards--numbered .sxs-lp-card__marker {
	width: auto;
	height: auto;
	background: none;
	transform: none;
	color: var(--sxs-red);
	font-family: var(--sxs-font-display);
	font-stretch: 125%;
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 8px;
}

.sxs-lp-card__title { font-size: 17px; font-weight: 800; line-height: 1.25; }
.sxs-lp-card__text { color: var(--sxs-muted); font-size: 15.5px; line-height: 1.6; }
.sxs-lp-section--dark .sxs-lp-card__text { color: rgba(255, 255, 255, 0.7); }

/* Método ------------------------------------------------------------- */

.sxs-lp-method { overflow: hidden; }

.sxs-lp-method__watermark {
	position: absolute;
	top: 24px;
	left: 50%;
	transform: translateX(-50%);
	color: transparent;
	font-size: clamp(72px, 13vw, 200px);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
	pointer-events: none;
	user-select: none;
}

.sxs-lp-method .sxs-lp-container { position: relative; }

.sxs-lp-method__title { display: grid; gap: 12px; }

.sxs-lp-method__brand {
	color: var(--sxs-red);
	font-size: clamp(34px, 5.5vw, 64px);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.sxs-lp-method__headline { font-size: clamp(24px, 2.8vw, 34px); }

.sxs-lp-method__body { margin-top: 40px; }

.sxs-lp-method__text {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
	line-height: 1.65;
}

.sxs-lp-pillars {
	display: grid;
	gap: 0;
	margin-top: 56px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (min-width: 640px) {
	.sxs-lp-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
	.sxs-lp-pillars { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.sxs-lp-pillars:has(> li:nth-child(5)) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.sxs-lp-pillar {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 28px 28px 28px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.sxs-lp-pillar__index {
	color: var(--sxs-red);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.sxs-lp-pillar__title { font-size: 19px; font-weight: 800; line-height: 1.25; }
.sxs-lp-pillar__text { color: rgba(255, 255, 255, 0.7); font-size: 15.5px; line-height: 1.6; }

/* Formulário de lead ------------------------------------------------- */

.sxs-lp-lead__grid { display: grid; gap: 40px; }

@media (min-width: 992px) {
	.sxs-lp-lead__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 72px; align-items: start; }
	.sxs-lp-lead__intro { position: sticky; top: calc(var(--sxs-header-h) + 40px); }
}

.sxs-lp-lead__text { margin-top: 20px; color: var(--sxs-ink); font-size: 18px; line-height: 1.6; }

.sxs-lp-lead__panel {
	padding: clamp(24px, 4vw, 48px);
	border-radius: var(--sxs-radius-lg);
	background: var(--sxs-white);
	box-shadow: 0 24px 60px rgba(11, 11, 12, 0.08);
}

.sxs-lp-form__grid {
	display: grid;
	gap: 20px;
	margin-bottom: 28px;
}

@media (min-width: 640px) {
	.sxs-lp-form__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sxs-lp-field--full { grid-column: 1 / -1; }
}

.sxs-lp-field { display: flex; flex-direction: column; gap: 8px; }

.sxs-lp-field__fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }

.sxs-lp-field__label {
	padding: 0;
	color: var(--sxs-text);
	font-size: 14px;
	font-weight: 600;
}

.sxs-lp-field__label span { color: var(--sxs-red); }
.sxs-lp-field__fieldset .sxs-lp-field__label { margin-bottom: 10px; }

.sxs-lp-field input:not([type="radio"]),
.sxs-lp-field select,
.sxs-lp-field textarea {
	width: 100%;
	min-height: 52px;
	padding: 12px 16px;
	border: 1px solid var(--sxs-line);
	border-radius: 12px;
	background: var(--sxs-white);
	color: var(--sxs-text);
	font-family: inherit;
	font-size: 16px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sxs-lp-field textarea { resize: vertical; min-height: 110px; }

.sxs-lp-field input:not([type="radio"]):focus,
.sxs-lp-field select:focus,
.sxs-lp-field textarea:focus {
	border-color: var(--sxs-red);
	box-shadow: 0 0 0 4px rgba(217, 22, 23, 0.12);
	outline: none;
}

.sxs-lp-field__options { display: flex; flex-wrap: wrap; gap: 12px; }

.sxs-lp-radio {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 120px;
	padding: 12px 18px;
	border: 1px solid var(--sxs-line);
	border-radius: 12px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.sxs-lp-radio input { width: 18px; height: 18px; margin: 0; accent-color: var(--sxs-red); }
.sxs-lp-radio:has(input:checked) { border-color: var(--sxs-red); background: rgba(217, 22, 23, 0.05); }

.sxs-lp-field__error { min-height: 0; color: var(--sxs-red); font-size: 13px; font-weight: 500; }
.sxs-lp-field__error:empty { display: none; }

.sxs-lp-field.is-invalid input:not([type="radio"]),
.sxs-lp-field.is-invalid select,
.sxs-lp-field.is-invalid textarea,
.sxs-lp-field.is-invalid .sxs-lp-radio { border-color: var(--sxs-red); }

.sxs-lp-form__microcopy {
	margin-top: 16px;
	color: var(--sxs-muted);
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
}

/* Honeypot: fora da tela, mas não display:none (alguns bots ignoram campos ocultos). */
.sxs-lp-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.sxs-lp-form__error {
	margin-bottom: 16px;
	padding: 12px 16px;
	border-radius: 12px;
	background: rgba(217, 22, 23, 0.08);
	color: var(--sxs-red-600);
	font-size: 14px;
	line-height: 1.5;
}
.sxs-lp-form__error[hidden] { display: none; }
.sxs-lp-form__error a { font-weight: 700; }

.sxs-lp-btn.is-loading { opacity: 0.7; cursor: progress; }
.sxs-lp-btn.is-loading .sxs-lp-icon { animation: sxs-lp-nudge 0.8s ease-in-out infinite alternate; }
@keyframes sxs-lp-nudge { to { transform: translateX(4px); } }

/* Modo HTML personalizado: herda a fonte da LP; o estilo interno é do próprio HTML. */
.sxs-lp-lead__custom { min-height: 120px; }
.sxs-lp-lead__custom iframe { max-width: 100%; border: 0; }

/* Tela pós-envio */

.sxs-lp-success { text-align: center; padding: 16px 0; }
.sxs-lp .sxs-lp-success:focus,
.sxs-lp .sxs-lp-success:focus-visible { outline: none; } /* foco programático após o envio */
.sxs-lp-success[hidden] { display: none; }

.sxs-lp-success__icon {
	display: inline-grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin-bottom: 24px;
	border-radius: 50%;
	background: var(--sxs-red);
	color: var(--sxs-white);
}

.sxs-lp-success__icon .sxs-lp-icon { width: 34px; height: 34px; }

.sxs-lp-success__title { max-width: 520px; margin: 0 auto; font-size: clamp(22px, 2.4vw, 28px); font-weight: 800; line-height: 1.2; }
.sxs-lp-success__text { max-width: 520px; margin: 16px auto 0; color: var(--sxs-ink); font-size: 17px; }

.sxs-lp-success__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: 32px;
}

.sxs-lp-success__note { margin-top: 12px; color: var(--sxs-muted); font-size: 15px; }

/* Pacotes ------------------------------------------------------------ */

.sxs-lp-pricing__text { color: var(--sxs-ink); font-size: 18px; line-height: 1.65; }

.sxs-lp-packages {
	display: grid;
	gap: 24px;
	margin-top: 56px;
}

@media (min-width: 992px) {
	.sxs-lp-packages { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
}

.sxs-lp-package {
	display: flex;
	flex-direction: column;
	padding: 36px 32px;
	border: 1px solid var(--sxs-line);
	border-radius: var(--sxs-radius-lg);
	background: var(--sxs-white);
	position: relative;
}

.sxs-lp-package--featured {
	border-color: var(--sxs-black);
	background: var(--sxs-black);
	color: var(--sxs-white);
}

.sxs-lp-package::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 32px;
	width: 64px;
	height: 4px;
	background: var(--sxs-red);
}

.sxs-lp-package__name { font-size: 22px; font-weight: 800; line-height: 1.2; }
.sxs-lp-package__text { margin-top: 12px; color: var(--sxs-muted); font-size: 15.5px; }
.sxs-lp-package--featured .sxs-lp-package__text { color: rgba(255, 255, 255, 0.72); }

.sxs-lp-package__price {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--sxs-line);
}

.sxs-lp-package--featured .sxs-lp-package__price { border-color: rgba(255, 255, 255, 0.14); }

.sxs-lp-package__price-label { color: var(--sxs-muted); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.sxs-lp-package--featured .sxs-lp-package__price-label { color: rgba(255, 255, 255, 0.6); }
.sxs-lp-package__price-value { color: var(--sxs-red); font-size: 32px; font-weight: 800; line-height: 1.1; }

.sxs-lp-package__includes { margin-top: 24px; font-size: 14px; font-weight: 700; }

.sxs-lp-package__items { display: grid; gap: 10px; margin: 12px 0 32px; flex: 1; }

.sxs-lp-package__items li { display: flex; gap: 10px; font-size: 15px; line-height: 1.5; }
.sxs-lp-package__items .sxs-lp-icon { color: var(--sxs-red); margin-top: 3px; }

.sxs-lp-package .sxs-lp-btn { width: 100%; }
.sxs-lp-package--featured .sxs-lp-btn--primary:hover { background: var(--sxs-white); color: var(--sxs-red); }

/* CTA de ligação ----------------------------------------------------- */

.sxs-lp-call { overflow: hidden; text-align: center; }

.sxs-lp-call__pattern {
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(-35deg, rgba(0, 0, 0, 0.07) 0 2px, transparent 2px 36px),
		linear-gradient(115deg, transparent 0 62%, rgba(0, 0, 0, 0.18) 62% 100%);
	pointer-events: none;
}

.sxs-lp-call__inner { position: relative; }

.sxs-lp-call__text {
	max-width: 680px;
	margin: 24px auto 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	line-height: 1.6;
}

.sxs-lp-call__phone { margin-top: 32px; font-size: clamp(26px, 4vw, 40px); font-weight: 800; }

.sxs-lp-call__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 16px;
	margin-top: 32px;
}

.sxs-lp-call__microcopy { margin-top: 20px; color: rgba(255, 255, 255, 0.8); font-size: 14px; }

/* FAQ ---------------------------------------------------------------- */

.sxs-lp-faq__list { border-top: 1px solid var(--sxs-line); }

.sxs-lp-faq__item { width: auto; padding: 0; border-bottom: 1px solid var(--sxs-line); }
.sxs-lp .sxs-lp-faq__item[open] { padding-bottom: 0; } /* temas com details[open] { padding } */

.sxs-lp-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 0;
	cursor: pointer;
	list-style: none;
}

.sxs-lp-faq__item summary::-webkit-details-marker { display: none; }

.sxs-lp-faq__question {
	font-family: var(--sxs-font-body);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	transition: color 0.2s ease;
}

.sxs-lp-faq__item summary:hover .sxs-lp-faq__question { color: var(--sxs-red); }

.sxs-lp-faq__toggle {
	display: grid;
	place-items: center;
	flex: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--sxs-gray);
	color: var(--sxs-red);
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.sxs-lp-faq__item[open] .sxs-lp-faq__toggle { transform: rotate(45deg); background: var(--sxs-red); color: var(--sxs-white); }

.sxs-lp-faq__answer { max-width: 720px; padding: 0 56px 24px 0; color: var(--sxs-ink); font-size: 16.5px; line-height: 1.65; }
.sxs-lp-faq__answer p { margin: 0; }

/* Footer ------------------------------------------------------------- */

.sxs-lp-footer { padding: 40px 0; background: var(--sxs-black); color: rgba(255, 255, 255, 0.6); }

.sxs-lp-footer__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

.sxs-lp-logo--footer { font-size: 28px; }
.sxs-lp-footer__tagline { margin-top: 8px; font-size: 14px; }
.sxs-lp-footer__copy { font-size: 13px; }

.sxs-lp-empty { padding: 120px 0; }

/* Movimento reduzido ------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	html:has(.sxs-lp) { scroll-behavior: auto; }
	.sxs-lp *,
	.sxs-lp *::before,
	.sxs-lp *::after { transition: none !important; }
}

/* Acessibilidade: link "pular para o conteúdo" visível só no foco. */
.sxs-lp-skip {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 100;
	padding: 12px 20px;
	border-radius: var(--sxs-radius);
	background: var(--sxs-white);
	color: var(--sxs-black);
	font-weight: 700;
}
.sxs-lp-skip:focus { top: 16px; }
