:root {
	--bg: #ffffff;
	--bg-soft: #f9fafb;
	--text: #101828;
	--muted: #4a5565;
	--muted-soft: #6a7282;
	--primary: #9d2449;
	--border: #f1f3f5;
	--success: #5db139;
	--teal: #0ab1a6;
	--gradient: linear-gradient(90deg, #9d2449 0%, #b38e5d 100%);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Montserrat", sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.45;
	position: relative;
	overflow-x: hidden;
}

.page-bg {
	position: fixed;
	inset: -120px -120px auto;
	height: 560px;
	background:
		radial-gradient(circle at 20% 10%, rgba(157, 36, 73, 0.1), transparent 55%),
		radial-gradient(circle at 85% 0%, rgba(179, 142, 93, 0.18), transparent 48%);
	pointer-events: none;
	z-index: -1;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

.narrow {
	width: min(780px, calc(100% - 48px));
}

.compact {
	width: min(720px, calc(100% - 48px));
}

.section {
	padding: 80px 0;
}

.section-muted {
	background: var(--bg-soft);
}

.section-title {
	text-align: center;
	margin-bottom: 52px;
}

.section-title h2 {
	margin: 0 0 12px;
	font-size: clamp(1.8rem, 2.8vw, 2.2rem);
	line-height: 1.2;
}

.section-title p {
	margin: 0;
	color: var(--muted);
	font-size: 1rem;
}

.site-header {
	position: sticky;
	top: 0;
	backdrop-filter: blur(8px);
	background: rgba(255, 255, 255, 0.85);
	border-bottom: 1px solid var(--border);
	z-index: 20;
}

.nav-wrap {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand-logo {
	width: 48px;
	height: 48px;
}

.brand span {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.brand strong {
	font-size: 1.15rem;
}

.brand small {
	margin-top: 5px;
	color: var(--muted-soft);
	font-size: 0.75rem;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-nav a {
	font-size: 0.92rem;
	color: var(--muted);
}

.site-nav a.btn-sm {
	color: #fff;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 12px;
	border: 1px solid transparent;
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	letter-spacing: 0.2px;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn-sm {
	padding: 7px 22px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
}

.btn-primary {
	min-width: 275px;
	padding: 14px 20px;
	background: var(--primary);
	color: #fff;
	box-shadow: 0 12px 26px rgba(157, 36, 73, 0.24);
}

.btn-outline {
	min-width: 240px;
	padding: 14px 20px;
	border-color: #e5e7eb;
	color: #6b7280;
	background: #fff;
}

.btn-icon {
	width: 18px;
	height: 18px;
	display: block;
}

.hero {
	text-align: center;
}

.hero-content {
	display: grid;
	justify-items: center;
}

.pill {
	margin-bottom: 26px;
	background: var(--primary);
	color: #fff;
	font: 600 0.82rem/1 "Roboto", sans-serif;
	border-radius: 999px;
	padding: 10px 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.pill-icon {
	width: 16px;
	height: 16px;
	display: block;
}

.hero h1 {
	margin: 0;
	font-size: clamp(2.2rem, 5.4vw, 3.8rem);
	line-height: 1.16;
	font-weight: 800;
}

.hero h1 span {
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lead {
	margin: 30px auto 0;
	max-width: 820px;
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	color: var(--muted);
}

.sublead {
	margin: 18px auto 0;
	max-width: 760px;
	font-size: 1rem;
	color: var(--muted-soft);
}


.download-options {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	align-items: flex-start;
}

.download-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.qr-placeholder {
	display: flex;
	justify-content: center;
}

.qr-placeholder img {
	width: clamp(96px, 14vw, 140px);
	height: auto;
	display: block;
}

.hero-highlights {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 26px;
	list-style: none;
	padding: 0;
	margin: 36px 0 50px;
	color: var(--muted-soft);
	font-size: 0.9rem;
}

.hero-highlights li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
}

.dot-green {
	background: var(--success);
}

.dot-teal {
	background: var(--teal);
}

.dot-rose {
	background: var(--primary);
}

.phone-frame {
	width: 384px;
	max-width: 95%;
	border-radius: 40px;
	background: #101828;
	padding: 12px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
	animation: float-in 900ms ease;
}

.phone-screen {
	border: 3px solid #fff;
	border-radius: 26px;
	height: 670px;
	min-height: 670px;
	background: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #4a5565;
	overflow: hidden;
}

.phone-screen img {
	width: 96px;
	height: 96px;
	opacity: 0.65;
}

.phone-screen video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.phone-screen p {
	margin: 18px 0 8px;
	font-size: 0.9rem;
}

.phone-screen small {
	color: #d1d5dc;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.feature-card {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	border: 1px solid var(--border);
	min-height: 167px;
}

.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	margin-bottom: 16px;
	display: grid;
	place-items: center;
}

.feature-icon img {
	width: 24px;
	height: 24px;
	display: block;
}

.feature-icon-blue { background: rgba(92, 120, 177, 0.08); }
.feature-icon-orange { background: rgba(241, 134, 43, 0.08); }
.feature-icon-teal { background: rgba(10, 177, 166, 0.08); }
.feature-icon-gold { background: rgba(179, 142, 93, 0.08); }

.feature-card h3 {
	margin: 0;
	font-size: 1.1rem;
}

.feature-card p {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.steps-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
}

.steps-list li {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 22px 24px 22px 104px;
	font-size: 1rem;
	display: flex;
	flex-direction: column;
	gap: 7px;
	position: relative;
}

.steps-list li::before {
	content: "";
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	box-sizing: border-box;
	width: 55.996px;
	height: 55.996px;
	padding: 0 15.999px;
	justify-content: center;
	align-items: center;
	border-radius: 14px;
	background: rgba(157, 36, 73, 0.05);
}

.steps-list li::after {
	content: "";
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	width: 23.998px;
	height: 23.998px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.steps-list li:nth-child(1)::after { background-image: url("./Assets/Icon-download.svg"); }
.steps-list li:nth-child(2)::after { background-image: url("./Assets/Icon-escudo.svg"); }
.steps-list li:nth-child(3)::after { background-image: url("./Assets/Icon-docs.svg"); }
.steps-list li:nth-child(4)::after { background-image: url("./Assets/Icon-phone.svg"); }
.steps-list li:nth-child(5)::after { background-image: url("./Assets/Icon-wallet2.svg"); }

.steps-list li span {
	color: var(--primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.callout {
	margin-top: 34px;
	border: 1px solid rgba(157, 36, 73, 0.2);
	border-radius: 16px;
	padding: 26px 28px;
	background: linear-gradient(90deg, rgba(157, 36, 73, 0.05) 0%, rgba(179, 142, 93, 0.05) 100%);
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.callout-icon {
	display: flex;
	box-sizing: border-box;
	width: 47.997px;
	height: 47.997px;
	padding: 0 12.006px 0 11.993px;
	justify-content: center;
	align-items: center;
	border-radius: 14px;
	background: #9D2449;
	flex: 0 0 auto;
}

.callout-icon img {
	width: 100%;
	height: auto;
	display: block;
}

.callout-text {
	min-width: 0;
}

.callout h3 {
	margin: 0 0 10px;
	font-size: 1.15rem;
}

.callout p {
	margin: 0;
	color: #364153;
}

.procedures-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.procedure-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 24px;
}

.procedure-card h3 {
	margin: 0;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--border);
	font-size: 1.1rem;
	line-height: 1.4;
}

.procedure-card ul {
	margin: 16px 0 0;
	padding-left: 0;
	list-style: none;
}

.procedure-card li {
	margin-bottom: 10px;
	padding-left: 28px;
	position: relative;
	color: #364153;
	font-size: 0.9rem;
}

.procedure-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 18px;
	height: 18px;
	background: url("./Assets/Icon-checkmark.svg") center/contain no-repeat;
}

.reasons-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px 32px;
	margin-bottom: 44px;
}

.reasons-grid article h3 {
	margin: 0 0 6px;
	font-size: 1.1rem;
}

.reasons-grid article {
	position: relative;
	padding-left: 64px;
}

.reasons-grid article::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(157, 36, 73, 0.07) center/24px 24px no-repeat;
}

.reasons-grid article:nth-child(1)::before { background-image: url("./Assets/Icon-clock2.svg"); }
.reasons-grid article:nth-child(2)::before { background-image: url("./Assets/Icon-escudo.svg"); }
.reasons-grid article:nth-child(3)::before { background-image: url("./Assets/Icon-checkbox.svg"); }
.reasons-grid article:nth-child(4)::before { background-image: url("./Assets/Icon-phone.svg"); }

.reasons-grid article p {
	margin: 0;
	color: var(--muted);
}

.hero-banner {
	border-radius: 16px;
	padding: 40px;
	text-align: center;
	color: #fff;
	background: var(--gradient);
}

.hero-banner h3 {
	margin: 0;
	font-size: 1.7rem;
}

.hero-banner p {
	margin: 16px auto 22px;
	max-width: 720px;
	color: rgba(255, 255, 255, 0.9);
}

.hero-banner .badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 999px;
	padding: 12px 24px;
	background: rgba(255, 255, 255, 0.22);
	font-weight: 600;
}

.badge-icon {
	width: 19.992px;
	height: 19.992px;
	display: block;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border: 0;
	background: transparent;
	color: var(--text);
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.faq-question:focus-visible {
	outline: 2px solid rgba(157, 36, 73, 0.45);
	outline-offset: -2px;
}

.faq-icon {
	color: transparent;
	font-size: 0;
	line-height: 0;
	width: 20px;
	height: 20px;
	background: url("./Assets/Icon-dropdown.svg") center/contain no-repeat;
	transition: transform 160ms ease, color 160ms ease;
}

.faq-answer {
	padding: 0 16px 16px;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.faq-answer p {
	margin: 0;
}

.faq-item.is-open {
	border-color: rgba(157, 36, 73, 0.35);
	box-shadow: 0 8px 20px rgba(157, 36, 73, 0.08);
}

.faq-item.is-open .faq-icon {
	transform: rotate(45deg);
}

.support-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px;
}

.support-card h3 {
	margin: 0;
	font-size: 1.2rem;
}

.support-org {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border);
}

.support-org-icon {
	display: flex;
	width: 47.997px;
	height: 47.997px;
	padding: 0 12.006px 0 11.993px;
	justify-content: center;
	align-items: center;
	border-radius: 14px;
	background: rgba(157, 36, 73, 0.05);
}

.support-org-text h3 {
	margin: 0;
}

.support-org-text p {
	margin: 8px 0 0;
	color: var(--muted);
}

.support-card address {
	margin: 0;
	padding: 0 0 16px;
	border-bottom: 1px solid var(--border);
	color: var(--muted);
	font-style: normal;
	line-height: 1.6;
}

.support-address {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	column-gap: 10px;
	align-items: start;
}

.support-address span {
	grid-column: 2;
	display: block;
}

.support-inline-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	margin-top: 0;
}

.support-address .support-inline-icon {
	grid-column: 1;
	margin-top: 2px;
}

.whatsapp {
	margin: 16px 0 0;
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	column-gap: 10px;
	row-gap: 2px;
	align-items: start;
	color: var(--muted-soft);
}

.whatsapp .support-inline-icon {
	grid-column: 1;
	grid-row: 1 / span 2;
	margin-top: 1px;
}

.whatsapp-text {
	grid-column: 2;
	display: block;
	font-size: 0.75rem;
	line-height: 1.2;
}

.whatsapp strong {
	grid-column: 2;
	display: block;
	color: #25d366;
	margin-left: 0;
	line-height: 1.2;
}

.site-footer {
	padding: 48px 0 30px;
	background: var(--bg-soft);
	border-top: 1px solid var(--border);
}

.footer-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.footer-brand {
	gap: 10px;
}

.brand-logo-sm {
	width: 40px;
	height: 40px;
}

.footer-nav {
	display: flex;
	gap: 24px;
	color: var(--muted);
	font-size: 0.9rem;
}

.copy {
	margin: 28px 0 0;
	text-align: center;
	color: var(--muted-soft);
	font-size: 0.75rem;
}

@keyframes float-in {
	from {
		transform: translateY(18px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (max-width: 1080px) {
	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.procedures-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.site-nav {
		gap: 16px;
	}

	.site-nav a {
		font-size: 0.82rem;
	}

	.section {
		padding: 64px 0;
	}

	.download-options {
		width: 100%;
		gap: 18px;
	}

	.download-option {
		width: 100%;
	}

	.download-option .btn {
		width: 100%;
		min-width: 0;
	}

	.phone-screen {
		height: 560px;
		min-height: 560px;
	}

	.reasons-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.hero-banner {
		padding: 28px 20px;
	}

	.footer-main {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 600px) {
	.container,
	.narrow,
	.compact {
		width: min(100%, calc(100% - 28px));
	}

	.nav-wrap {
		height: auto;
		padding: 14px 0;
		flex-direction: column;
		gap: 12px;
	}

	.site-nav {
		width: 100%;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.support-card {
		padding: 24px;
	}
}
