:root {
	--navy: #17213b;
	--navy-2: #263152;
	--wine: #7a2048;
	--wine-dark: #5f1536;
	--magenta: #d62976;
	--gold: #f2b134;
	--turquoise: #16a6a1;
	--ivory: #fff9f1;
	--paper: #fffdf9;
	--white: #ffffff;
	--ink: #20242c;
	--muted: #667085;
	--line: rgba(23, 33, 59, 0.12);
	--shadow-sm: 0 10px 34px rgba(23, 33, 59, 0.08);
	--shadow-md: 0 24px 70px rgba(23, 33, 59, 0.14);
	--radius-sm: 14px;
	--radius-md: 22px;
	--radius-lg: 32px;
	--header-height: 78px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
}

a {
	color: var(--wine);
	text-underline-offset: 3px;
}

a:hover {
	color: var(--wine-dark);
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	transform: translateY(-180%);
	padding: 10px 16px;
	border-radius: 10px;
	background: var(--white);
	color: var(--navy);
	font-weight: 700;
	box-shadow: var(--shadow-sm);
}

.skip-link:focus {
	transform: translateY(0);
}

.container-xl {
	--bs-gutter-x: 2rem;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header .navbar {
	min-height: var(--header-height);
	padding: 10px 0;
}

.site-header.is-scrolled,
.pagina-legal .site-header,
.pagina-confirmacion .site-header {
	background: rgba(255, 253, 249, 0.96);
	box-shadow: 0 8px 30px rgba(23, 33, 59, 0.08);
	backdrop-filter: blur(18px);
}

.brand-lockup {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--white);
}

.brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.09em;
}

.brand-copy strong {
	font-size: 1rem;
	font-weight: 850;
}

.brand-copy small {
	margin-top: 4px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	opacity: 0.82;
}

.site-header.is-scrolled .brand-lockup,
.pagina-legal .site-header .brand-lockup,
.pagina-confirmacion .site-header .brand-lockup {
	color: var(--navy);
}

.navbar-nav .nav-link {
	position: relative;
	padding: 10px 14px !important;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.93rem;
	font-weight: 650;
}

.navbar-nav .nav-link::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 5px;
	height: 2px;
	border-radius: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus-visible::after {
	transform: scaleX(1);
}

.site-header.is-scrolled .navbar-nav .nav-link,
.pagina-legal .site-header .navbar-nav .nav-link,
.pagina-confirmacion .site-header .navbar-nav .nav-link {
	color: var(--navy);
}

.navbar-toggler {
	width: 46px;
	height: 46px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 14px;
	box-shadow: none !important;
}

.navbar-toggler span {
	display: block;
	height: 2px;
	margin: 5px 0;
	border-radius: 2px;
	background: var(--white);
}

.site-header.is-scrolled .navbar-toggler,
.pagina-legal .site-header .navbar-toggler,
.pagina-confirmacion .site-header .navbar-toggler {
	border-color: var(--line);
}

.site-header.is-scrolled .navbar-toggler span,
.pagina-legal .site-header .navbar-toggler span,
.pagina-confirmacion .site-header .navbar-toggler span {
	background: var(--navy);
}

.btn {
	border-radius: 999px;
	font-weight: 750;
	letter-spacing: -0.01em;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-brand {
	border-color: var(--magenta);
	background: linear-gradient(135deg, var(--wine), var(--magenta));
	color: var(--white);
	box-shadow: 0 12px 28px rgba(122, 32, 72, 0.25);
}

.btn-brand:hover,
.btn-brand:focus {
	border-color: var(--wine-dark);
	background: linear-gradient(135deg, var(--wine-dark), var(--wine));
	color: var(--white);
	box-shadow: 0 16px 32px rgba(122, 32, 72, 0.32);
}

.btn-lg {
	min-height: 54px;
	padding: 14px 24px;
	font-size: 1rem;
}

.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--navy);
}

.hero-media,
.hero-overlay {
	position: absolute;
	inset: 0;
}

.hero-media picture,
.hero-media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.hero-media img {
	object-position: center 36%;
	animation: heroZoom 16s ease-out both;
}

@keyframes heroZoom {
	from { transform: scale(1.045); }
	to { transform: scale(1); }
}

.hero-overlay {
	background:
		linear-gradient(90deg, rgba(10, 16, 37, 0.9) 0%, rgba(10, 16, 37, 0.72) 46%, rgba(10, 16, 37, 0.26) 100%),
		linear-gradient(0deg, rgba(10, 16, 37, 0.76) 0%, transparent 52%);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding-top: calc(var(--header-height) + 90px);
	padding-bottom: 90px;
	color: var(--white);
}

.hero-kicker,
.section-kicker,
.form-step {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 18px;
	color: var(--magenta);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero-kicker {
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	backdrop-filter: blur(10px);
}

.pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 0 rgba(242, 177, 52, 0.65);
	animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
	70% { box-shadow: 0 0 0 10px rgba(242, 177, 52, 0); }
	100% { box-shadow: 0 0 0 0 rgba(242, 177, 52, 0); }
}

.hero h1 {
	max-width: 890px;
	margin: 0;
	font-size: clamp(3rem, 6.5vw, 6.4rem);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: -0.055em;
	text-wrap: balance;
}

.hero h1 span {
	display: block;
	color: var(--gold);
}

.hero-lead {
	max-width: 720px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(1.05rem, 1.7vw, 1.28rem);
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hero-actions .btn-outline-light {
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
}

.hero-note {
	max-width: 360px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius-md);
	background: rgba(13, 20, 43, 0.5);
	backdrop-filter: blur(16px);
}

.hero-note-label {
	display: block;
	margin-bottom: 10px;
	color: var(--gold);
	font-size: 0.74rem;
	font-weight: 850;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.hero-note strong {
	display: block;
	font-size: 1.3rem;
	line-height: 1.3;
}

.hero-note p {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.73);
	font-size: 0.92rem;
	line-height: 1.6;
}

.confetti {
	position: absolute;
	z-index: 1;
	width: 14px;
	height: 52px;
	border-radius: 999px;
	transform: rotate(24deg);
	opacity: 0.82;
}

.confetti-one {
	top: 20%;
	right: 12%;
	background: var(--gold);
}

.confetti-two {
	top: 38%;
	right: 6%;
	height: 34px;
	background: var(--magenta);
	transform: rotate(-38deg);
}

.confetti-three {
	top: 18%;
	left: 7%;
	height: 28px;
	background: var(--turquoise);
	transform: rotate(62deg);
}

.scroll-hint {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: 24px;
	width: 28px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 999px;
	transform: translateX(-50%);
}

.scroll-hint span {
	position: absolute;
	top: 8px;
	left: 50%;
	width: 4px;
	height: 8px;
	border-radius: 999px;
	background: var(--white);
	transform: translateX(-50%);
	animation: scrollHint 1.8s infinite;
}

@keyframes scrollHint {
	0% { opacity: 0; transform: translate(-50%, 0); }
	30% { opacity: 1; }
	100% { opacity: 0; transform: translate(-50%, 16px); }
}

.trust-bar {
	position: relative;
	z-index: 4;
	margin-top: -1px;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid > div {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 23px 20px;
}

.trust-grid > div:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 25%;
	right: 0;
	bottom: 25%;
	width: 1px;
	background: var(--line);
}

.trust-grid strong {
	color: var(--wine);
	font-size: 1rem;
	font-weight: 850;
}

.trust-grid span {
	color: var(--muted);
	font-size: 0.83rem;
	line-height: 1.4;
}

.section {
	position: relative;
	padding: 110px 0;
}

.section-kicker::before {
	content: "";
	width: 28px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
}

.section-title {
	margin: 0;
	color: var(--navy);
	font-size: clamp(2.35rem, 4vw, 4.6rem);
	font-weight: 880;
	line-height: 1.04;
	letter-spacing: -0.05em;
	text-wrap: balance;
}

.section-copy,
.section-heading > p {
	color: var(--muted);
	font-size: 1.07rem;
	line-height: 1.8;
}

.section-heading.centered {
	max-width: 830px;
	margin: 0 auto 54px;
	text-align: center;
}

.section-heading.centered .section-kicker {
	justify-content: center;
}

.section-heading.centered > p {
	max-width: 660px;
	margin: 22px auto 0;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-top: 64px;
}

.value-card {
	position: relative;
	min-height: 300px;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.value-card:hover {
	transform: translateY(-7px);
	border-color: rgba(214, 41, 118, 0.26);
	box-shadow: var(--shadow-md);
}

.value-card-featured {
	background: var(--navy);
	color: var(--white);
	transform: translateY(-18px);
}

.value-card-featured:hover {
	transform: translateY(-25px);
}

.icon-shell {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	margin-bottom: 40px;
	border-radius: 18px;
	background: rgba(214, 41, 118, 0.09);
	color: var(--wine);
}

.icon-shell svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.value-card-featured .icon-shell {
	background: rgba(255, 255, 255, 0.12);
	color: var(--gold);
}

.value-card h3 {
	margin: 0 0 12px;
	color: var(--navy);
	font-size: 1.45rem;
	font-weight: 820;
}

.value-card-featured h3 {
	color: var(--white);
}

.value-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}

.value-card-featured p {
	color: rgba(255, 255, 255, 0.7);
}

.section-categories {
	background:
		radial-gradient(circle at 12% 20%, rgba(242, 177, 52, 0.12), transparent 23%),
		radial-gradient(circle at 88% 75%, rgba(22, 166, 161, 0.1), transparent 22%),
		var(--ivory);
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.category-card {
	position: relative;
	overflow: hidden;
	min-height: 250px;
	padding: 34px;
	border: 1px solid rgba(23, 33, 59, 0.1);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(8px);
	transition: transform 0.25s ease, background 0.25s ease;
}

.category-card::after {
	content: "";
	position: absolute;
	right: -40px;
	bottom: -45px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(214, 41, 118, 0.12), rgba(22, 166, 161, 0.15));
	transition: transform 0.3s ease;
}

.category-card:hover {
	transform: translateY(-5px);
	background: var(--white);
}

.category-card:hover::after {
	transform: scale(1.3);
}

.category-number {
	display: inline-flex;
	margin-bottom: 42px;
	color: var(--magenta);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.16em;
}

.category-card h3 {
	position: relative;
	z-index: 1;
	margin: 0 0 10px;
	color: var(--navy);
	font-size: 1.35rem;
	font-weight: 820;
}

.category-card p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.section-experience {
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(122, 32, 72, 0.97), rgba(23, 33, 59, 0.98)),
		var(--navy);
}

.section-experience::before {
	content: "";
	position: absolute;
	top: -180px;
	left: -140px;
	width: 430px;
	height: 430px;
	border: 80px solid rgba(242, 177, 52, 0.08);
	border-radius: 50%;
}

.section-experience::after {
	content: "";
	position: absolute;
	right: -100px;
	bottom: -130px;
	width: 320px;
	height: 320px;
	border-radius: 42% 58% 65% 35%;
	background: rgba(22, 166, 161, 0.1);
}

.experience-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	align-items: center;
	gap: 80px;
}

.section-kicker-light {
	color: var(--gold);
}

.experience-copy p {
	max-width: 620px;
	margin: 26px 0;
	color: rgba(255, 255, 255, 0.73);
	font-size: 1.05rem;
	line-height: 1.8;
}

.text-link-light {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--white);
	font-weight: 800;
	text-decoration: none;
}

.text-link-light span {
	color: var(--gold);
	font-size: 1.35rem;
	transition: transform 0.2s ease;
}

.text-link-light:hover {
	color: var(--white);
}

.text-link-light:hover span {
	transform: translateX(5px);
}

.photo-collage {
	position: relative;
	min-height: 650px;
}

.photo-card {
	position: absolute;
	margin: 0;
	overflow: hidden;
	border: 8px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.photo-card img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.photo-card-main {
	top: 0;
	left: 0;
	width: 64%;
	height: 590px;
	border-radius: 180px 180px 30px 30px;
}

.photo-card-small {
	right: 0;
	bottom: 0;
	width: 52%;
	height: 330px;
	border-radius: 30px;
}

.collage-badge {
	position: absolute;
	top: 90px;
	right: 3%;
	width: 150px;
	height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--gold);
	color: var(--navy);
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
	transform: rotate(8deg);
}

.collage-badge strong {
	font-size: 1.25rem;
	font-weight: 900;
}

.collage-badge span {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.section-register {
	background: var(--paper);
}

.register-shell {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 56px;
	align-items: start;
}

.register-info {
	position: sticky;
	top: calc(var(--header-height) + 32px);
	padding: 30px 0;
}

.register-info > p {
	margin: 24px 0 0;
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.8;
}

.benefit-list {
	display: grid;
	gap: 20px;
	margin: 34px 0;
	padding: 0;
	list-style: none;
}

.benefit-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.benefit-list li > span {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(22, 166, 161, 0.12);
	color: var(--turquoise);
	font-weight: 900;
}

.benefit-list strong,
.benefit-list small {
	display: block;
}

.benefit-list strong {
	color: var(--navy);
	font-size: 1rem;
}

.benefit-list small {
	margin-top: 3px;
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.5;
}

.privacy-note {
	display: flex;
	gap: 14px;
	padding: 20px;
	border: 1px solid rgba(22, 166, 161, 0.18);
	border-radius: var(--radius-sm);
	background: rgba(22, 166, 161, 0.06);
}

.privacy-note svg {
	flex: 0 0 auto;
	width: 25px;
	height: 25px;
	fill: none;
	stroke: var(--turquoise);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.privacy-note strong {
	display: block;
	color: var(--navy);
	font-size: 0.92rem;
}

.privacy-note p {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.5;
}

.register-form-card {
	padding: clamp(26px, 4vw, 48px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow-md);
}

.form-heading {
	margin-bottom: 28px;
}

.form-step {
	margin-bottom: 10px;
}

.form-heading h3 {
	margin: 0;
	color: var(--navy);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 850;
	letter-spacing: -0.04em;
}

.form-heading p {
	margin: 8px 0 0;
	color: var(--muted);
}

.form-label {
	margin-bottom: 8px;
	color: var(--navy);
	font-size: 0.87rem;
	font-weight: 750;
}

.form-label span {
	color: var(--magenta);
}

.form-control,
.form-select {
	min-height: 52px;
	border: 1px solid rgba(23, 33, 59, 0.16);
	border-radius: 13px;
	background-color: #fffefb;
	color: var(--ink);
	font-size: 0.96rem;
	box-shadow: none;
}

textarea.form-control {
	min-height: 118px;
	resize: vertical;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--magenta);
	box-shadow: 0 0 0 4px rgba(214, 41, 118, 0.1);
}

.form-control.is-invalid,
.form-select.is-invalid,
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
	border-color: #b42318;
}

.invalid-feedback {
	font-size: 0.79rem;
}

.consent-check {
	padding: 18px 18px 18px 46px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: var(--ivory);
}

.consent-check .form-check-input {
	margin-left: -28px;
	margin-top: 3px;
}

.consent-check .form-check-label {
	color: var(--muted);
	font-size: 0.84rem;
	line-height: 1.55;
}

.btn-submit {
	min-height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 1rem;
}

.btn-submit svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.form-footnote {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 0.76rem;
	text-align: center;
}

.honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.section-faq {
	background: var(--ivory);
}

.custom-accordion {
	border-top: 1px solid var(--line);
}

.custom-accordion .accordion-item {
	border: 0;
	border-bottom: 1px solid var(--line);
	background: transparent;
}

.custom-accordion .accordion-button {
	padding: 24px 8px;
	background: transparent;
	color: var(--navy);
	font-size: 1.05rem;
	font-weight: 780;
	box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
	color: var(--wine);
}

.custom-accordion .accordion-button::after {
	border-radius: 50%;
}

.custom-accordion .accordion-body {
	padding: 0 8px 24px;
	color: var(--muted);
	line-height: 1.75;
}

.closing-cta {
	padding: 46px 0;
	background: linear-gradient(110deg, var(--magenta), var(--wine));
	color: var(--white);
}

.closing-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.closing-cta span {
	display: block;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.closing-cta h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 3rem);
	font-weight: 850;
	letter-spacing: -0.04em;
}

.closing-cta .btn-light {
	flex: 0 0 auto;
	color: var(--wine);
}

.site-footer {
	padding: 70px 0 24px;
	background: #0e162e;
	color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.7fr 0.7fr;
	gap: 60px;
}

.brand-lockup-light {
	color: var(--white);
}

.footer-summary {
	max-width: 440px;
	margin: 22px 0 0;
	font-size: 0.92rem;
	line-height: 1.7;
}

.footer-title {
	margin: 0 0 18px;
	color: var(--white);
	font-size: 0.8rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.footer-links {
	display: grid;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.9rem;
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--gold);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-top: 54px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.74rem;
}

.footer-bottom p {
	margin: 0;
}

.mobile-cta {
	display: none;
}

.confirmation-section {
	min-height: 82vh;
	display: grid;
	place-items: center;
	padding: calc(var(--header-height) + 70px) 0 80px;
	background:
		radial-gradient(circle at 20% 20%, rgba(242, 177, 52, 0.16), transparent 28%),
		radial-gradient(circle at 80% 80%, rgba(22, 166, 161, 0.12), transparent 25%),
		var(--ivory);
}

.confirmation-card {
	max-width: 760px;
	margin: 0 auto;
	padding: clamp(32px, 6vw, 70px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow-md);
	text-align: center;
}

.confirmation-icon {
	width: 82px;
	height: 82px;
	display: grid;
	place-items: center;
	margin: 0 auto 26px;
	border-radius: 50%;
	background: rgba(22, 166, 161, 0.12);
	color: var(--turquoise);
}

.confirmation-icon svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.confirmation-card h1 {
	margin: 0;
	color: var(--navy);
	font-size: clamp(2.1rem, 5vw, 4rem);
	font-weight: 880;
	line-height: 1.06;
	letter-spacing: -0.05em;
}

.confirmation-card > p {
	max-width: 590px;
	margin: 22px auto 0;
	color: var(--muted);
	font-size: 1.03rem;
	line-height: 1.75;
}

.tracking-code {
	max-width: 430px;
	margin: 30px auto;
	padding: 18px 20px;
	border: 1px dashed rgba(122, 32, 72, 0.36);
	border-radius: 14px;
	background: rgba(122, 32, 72, 0.04);
}

.tracking-code span,
.tracking-code strong {
	display: block;
}

.tracking-code span {
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.tracking-code strong {
	margin-top: 5px;
	color: var(--wine);
	font-size: 1.35rem;
	letter-spacing: 0.05em;
}

.legal-hero {
	padding: calc(var(--header-height) + 70px) 0 60px;
	background:
		radial-gradient(circle at 90% 10%, rgba(214, 41, 118, 0.12), transparent 25%),
		var(--ivory);
}

.legal-hero h1 {
	margin: 0;
	color: var(--navy);
	font-size: clamp(2.5rem, 5vw, 5rem);
	font-weight: 880;
	letter-spacing: -0.055em;
}

.legal-hero p {
	margin: 14px 0 0;
	color: var(--muted);
}

.legal-content {
	padding: 70px 0 100px;
}

.legal-card {
	max-width: 920px;
	margin: 0 auto;
	padding: clamp(28px, 6vw, 64px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.legal-card h2 {
	margin: 34px 0 12px;
	color: var(--navy);
	font-size: 1.25rem;
	font-weight: 820;
}

.legal-card h2:first-child {
	margin-top: 0;
}

.legal-card p {
	color: var(--muted);
	line-height: 1.8;
}

.legal-note {
	margin-top: 38px;
	padding: 20px;
	border-left: 4px solid var(--gold);
	border-radius: 0 12px 12px 0;
	background: var(--ivory);
	color: var(--navy);
	font-size: 0.88rem;
	line-height: 1.65;
}

.credits-list article {
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
}

.credits-list article:first-child {
	padding-top: 0;
}

.credits-list article h2 {
	margin-top: 0;
}

.credit-change {
	font-size: 0.82rem;
	font-style: italic;
}

@media (max-width: 1199.98px) {
	.hero h1 {
		font-size: clamp(3rem, 7vw, 5.5rem);
	}

	.experience-grid {
		gap: 50px;
	}

	.register-shell {
		gap: 38px;
	}
}

@media (max-width: 991.98px) {
	:root {
		--header-height: 70px;
	}

	.site-header .navbar {
		min-height: var(--header-height);
	}

	.offcanvas {
		max-width: 360px;
		background: var(--paper);
	}

	.offcanvas-header {
		padding: 20px 22px;
		border-bottom: 1px solid var(--line);
	}

	.offcanvas .brand-lockup {
		color: var(--navy);
	}

	.offcanvas-body {
		display: flex;
		flex-direction: column;
		align-items: stretch !important;
		padding: 22px;
	}

	.offcanvas .navbar-nav {
		width: 100%;
		align-items: stretch !important;
	}

	.offcanvas .navbar-nav .nav-link {
		padding: 14px 0 !important;
		border-bottom: 1px solid var(--line);
		color: var(--navy);
		font-size: 1rem;
	}

	.offcanvas .navbar-nav .nav-link::after {
		display: none;
	}

	.offcanvas .btn-brand {
		width: 100%;
		margin: 24px 0 0 !important;
		padding: 14px 20px;
	}

	.hero {
		min-height: 88vh;
	}

	.hero-overlay {
		background:
			linear-gradient(90deg, rgba(10, 16, 37, 0.9) 0%, rgba(10, 16, 37, 0.66) 100%),
			linear-gradient(0deg, rgba(10, 16, 37, 0.8), transparent 60%);
	}

	.hero-content {
		padding-bottom: 76px;
	}

	.hero-note {
		max-width: 100%;
	}

	.trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.trust-grid > div:nth-child(2)::after {
		display: none;
	}

	.trust-grid > div:nth-child(-n+2) {
		border-bottom: 1px solid var(--line);
	}

	.section {
		padding: 88px 0;
	}

	.value-grid,
	.category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.value-card-featured {
		transform: none;
	}

	.value-card-featured:hover {
		transform: translateY(-7px);
	}

	.experience-grid,
	.register-shell {
		grid-template-columns: 1fr;
	}

	.experience-grid {
		gap: 62px;
	}

	.photo-collage {
		max-width: 680px;
		margin: 0 auto;
	}

	.register-info {
		position: static;
		padding: 0;
	}

	.footer-grid {
		grid-template-columns: 1.2fr 0.8fr;
	}

	.footer-grid > div:first-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767.98px) {
	body.pagina-inicio {
		padding-bottom: 70px;
	}

	.container-xl {
		--bs-gutter-x: 1.35rem;
	}

	.site-header .navbar {
		padding: 8px 0;
	}

	.brand-lockup img {
		width: 42px;
		height: 42px;
	}

	.hero {
		min-height: 100svh;
		align-items: flex-end;
	}

	.hero-media img {
		object-position: 55% center;
	}

	.hero-overlay {
		background:
			linear-gradient(180deg, rgba(10, 16, 37, 0.24) 0%, rgba(10, 16, 37, 0.68) 44%, rgba(10, 16, 37, 0.96) 100%);
	}

	.hero-content {
		padding-top: calc(var(--header-height) + 80px);
		padding-bottom: 72px;
	}

	.hero-kicker {
		font-size: 0.68rem;
	}

	.hero h1 {
		font-size: clamp(2.85rem, 14vw, 4.7rem);
		line-height: 0.95;
	}

	.hero-lead {
		margin-top: 20px;
		font-size: 1rem;
		line-height: 1.6;
	}

	.hero-actions {
		display: grid;
		grid-template-columns: 1fr;
		margin-top: 26px;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.hero-note,
	.scroll-hint {
		display: none;
	}

	.confetti-one {
		top: 14%;
		right: 8%;
	}

	.confetti-two {
		top: 25%;
	}

	.trust-grid {
		grid-template-columns: 1fr 1fr;
	}

	.trust-grid > div {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 18px 12px;
	}

	.trust-grid > div:nth-child(2)::after {
		display: none;
	}

	.trust-grid > div:nth-child(3)::after {
		display: block;
	}

	.trust-grid strong {
		font-size: 0.9rem;
	}

	.trust-grid span {
		font-size: 0.75rem;
	}

	.section {
		padding: 72px 0;
	}

	.section-title {
		font-size: clamp(2.2rem, 10vw, 3.4rem);
	}

	.value-grid,
	.category-grid {
		grid-template-columns: 1fr;
	}

	.value-grid {
		margin-top: 44px;
	}

	.value-card {
		min-height: 0;
		padding: 28px;
	}

	.icon-shell {
		margin-bottom: 28px;
	}

	.category-card {
		min-height: 220px;
		padding: 28px;
	}

	.photo-collage {
		min-height: 520px;
	}

	.photo-card-main {
		width: 72%;
		height: 470px;
		border-radius: 120px 120px 26px 26px;
	}

	.photo-card-small {
		width: 58%;
		height: 240px;
	}

	.collage-badge {
		top: 52px;
		right: 0;
		width: 112px;
		height: 112px;
	}

	.collage-badge strong {
		font-size: 1rem;
	}

	.collage-badge span {
		font-size: 0.6rem;
	}

	.register-form-card {
		border-radius: 24px;
	}

	.form-control,
	.form-select {
		min-height: 54px;
		font-size: 16px;
	}

	.closing-cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.closing-cta .btn {
		width: 100%;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 38px 24px;
	}

	.footer-grid > div:first-child {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 10px;
	}

	.mobile-cta {
		position: fixed;
		z-index: 1025;
		left: 10px;
		right: 10px;
		bottom: 10px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 11px 16px;
		border: 1px solid rgba(255, 255, 255, 0.18);
		border-radius: 18px;
		background: rgba(23, 33, 59, 0.96);
		color: var(--white);
		box-shadow: 0 16px 38px rgba(23, 33, 59, 0.34);
		text-decoration: none;
		backdrop-filter: blur(14px);
	}

	.mobile-cta span,
	.mobile-cta strong {
		display: block;
	}

	.mobile-cta span {
		font-size: 0.67rem;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		opacity: 0.7;
	}

	.mobile-cta strong {
		font-size: 0.92rem;
	}

	.mobile-cta::after {
		content: "→";
		width: 38px;
		height: 38px;
		display: grid;
		place-items: center;
		border-radius: 50%;
		background: var(--magenta);
		font-size: 1.2rem;
	}

	.confirmation-section {
		padding-top: calc(var(--header-height) + 42px);
	}

	.legal-hero {
		padding-top: calc(var(--header-height) + 48px);
	}

	.legal-content {
		padding: 42px 0 70px;
	}
}

@media (max-width: 479.98px) {
	.hero h1 {
		font-size: clamp(2.55rem, 14.5vw, 3.85rem);
	}

	.trust-grid > div {
		min-height: 92px;
	}

	.photo-collage {
		min-height: 455px;
	}

	.photo-card-main {
		height: 410px;
	}

	.photo-card-small {
		height: 190px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid > div:first-child {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* --------------------------------------------------------------------------
 * Registro simplificado y consulta de catastro SRI
 * -------------------------------------------------------------------------- */
.form-progress {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: -4px 0 26px;
}

.form-progress button {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(23, 33, 59, 0.14);
	border-radius: 50%;
	background: var(--white);
	color: var(--muted);
	font-size: 0.75rem;
	font-weight: 850;
}

.form-progress button.is-active {
	border-color: var(--magenta);
	background: var(--magenta);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(214, 41, 118, 0.22);
}

.form-progress i {
	width: 38px;
	height: 2px;
	border-radius: 999px;
	background: rgba(23, 33, 59, 0.12);
}

.identity-card {
	padding: 22px;
	border: 1px solid rgba(22, 166, 161, 0.2);
	border-radius: 18px;
	background:
		linear-gradient(145deg, rgba(22, 166, 161, 0.06), rgba(255, 255, 255, 0.92)),
		var(--white);
}

.identity-card-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.identity-step {
	display: block;
	margin-bottom: 4px;
	color: var(--turquoise);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.identity-card-heading h4 {
	margin: 0;
	color: var(--navy);
	font-size: 1.03rem;
	font-weight: 820;
	letter-spacing: -0.02em;
}

.identity-secure {
	flex: 0 0 auto;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(22, 166, 161, 0.12);
	color: #0d7f7b;
	font-size: 0.7rem;
	font-weight: 800;
	white-space: nowrap;
}

.catastro-input-group .form-control {
	border-radius: 13px 0 0 13px;
}

.catastro-input-group .btn-catastro {
	min-width: 126px;
	border: 1px solid var(--navy);
	border-left: 0;
	border-radius: 0 13px 13px 0;
	background: var(--navy);
	color: var(--white);
	font-size: 0.85rem;
	font-weight: 800;
}

.catastro-input-group .btn-catastro:hover,
.catastro-input-group .btn-catastro:focus-visible {
	transform: none;
	background: var(--navy-2);
	color: var(--white);
}

.catastro-input-group .btn-catastro:disabled {
	opacity: 0.88;
	cursor: wait;
}

.catastro-spinner {
	display: none;
	width: 15px;
	height: 15px;
	margin-left: 7px;
	border: 2px solid rgba(255, 255, 255, 0.38);
	border-top-color: var(--white);
	border-radius: 50%;
	animation: catastroSpin 0.75s linear infinite;
}

.btn-catastro.is-loading .catastro-spinner {
	display: inline-block;
}

@keyframes catastroSpin {
	to { transform: rotate(360deg); }
}

.catastro-input-group .invalid-feedback {
	width: 100%;
}

.catastro-status {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-top: 13px;
	padding: 11px 13px;
	border: 1px solid rgba(23, 33, 59, 0.1);
	border-radius: 12px;
	background: rgba(23, 33, 59, 0.035);
	color: var(--muted);
	font-size: 0.79rem;
	line-height: 1.45;
}

.catastro-status-icon {
	flex: 0 0 auto;
	width: 19px;
	height: 19px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(23, 33, 59, 0.1);
	color: var(--navy);
	font-size: 0.7rem;
	font-weight: 900;
}

.catastro-status.is-loading {
	border-color: rgba(22, 166, 161, 0.22);
	background: rgba(22, 166, 161, 0.07);
	color: #176c69;
}

.catastro-status.is-loading .catastro-status-icon {
	background: var(--turquoise);
	color: var(--white);
}

.catastro-status.is-success {
	border-color: rgba(31, 122, 109, 0.24);
	background: rgba(31, 122, 109, 0.08);
	color: #126257;
}

.catastro-status.is-success .catastro-status-icon {
	background: #1f7a6d;
	color: transparent;
}

.catastro-status.is-success .catastro-status-icon::before {
	content: "✓";
	color: var(--white);
}

.catastro-status.is-warning {
	border-color: rgba(242, 177, 52, 0.32);
	background: rgba(242, 177, 52, 0.09);
	color: #775114;
}

.catastro-status.is-warning .catastro-status-icon {
	background: var(--gold);
	color: #60400b;
}

.catastro-status.is-error {
	border-color: rgba(180, 35, 24, 0.26);
	background: rgba(180, 35, 24, 0.07);
	color: #8d1b14;
}

.catastro-status.is-error .catastro-status-icon {
	background: #b42318;
	color: var(--white);
}

.field-heading-inline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.verified-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(31, 122, 109, 0.1);
	color: #126257;
	font-size: 0.68rem;
	font-weight: 850;
	white-space: nowrap;
}

.verified-badge svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.form-control[readonly] {
	border-color: rgba(31, 122, 109, 0.26);
	background: rgba(31, 122, 109, 0.045);
	color: var(--navy);
	font-weight: 680;
}

.form-text {
	margin-top: 7px;
	color: var(--muted);
	font-size: 0.76rem;
	line-height: 1.45;
}

.form-label small {
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 600;
}

.whatsapp-field {
	position: relative;
}

.whatsapp-field .form-control {
	padding-left: 52px;
}

.whatsapp-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	z-index: 4;
	width: 22px;
	height: 22px;
	transform: translateY(-50%);
	color: #178f67;
	pointer-events: none;
}

.whatsapp-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}



.form-progress button {
	padding: 0;
	font-family: inherit;
	cursor: default;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.form-progress button.is-complete {
	border-color: rgba(22, 166, 161, 0.4);
	background: rgba(22, 166, 161, 0.11);
	color: #0d7f7b;
	cursor: pointer;
}

.form-progress button.is-complete:hover {
	transform: translateY(-1px);
}

.form-panel {
	animation: formPanelIn 0.24s ease;
}

@keyframes formPanelIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.panel-heading {
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line);
}

.panel-heading > span {
	display: inline-block;
	margin-bottom: 6px;
	color: var(--magenta);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.panel-heading h4 {
	margin: 0;
	color: var(--navy);
	font-size: 1.25rem;
	font-weight: 830;
	letter-spacing: -0.025em;
}

.panel-heading p {
	margin: 7px 0 0;
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.55;
}

.wizard-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 26px;
}

.wizard-actions-end {
	justify-content: flex-end;
}

.wizard-actions .btn {
	min-height: 50px;
	padding-inline: 22px;
}

.interest-fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.interest-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.interest-option {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-height: 112px;
	padding: 16px;
	border: 1px solid rgba(23, 33, 59, 0.14);
	border-radius: 15px;
	background: #fffefb;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.interest-option:hover {
	border-color: rgba(214, 41, 118, 0.35);
	transform: translateY(-1px);
}

.interest-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.interest-check {
	flex: 0 0 auto;
	width: 25px;
	height: 25px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(23, 33, 59, 0.18);
	border-radius: 8px;
	background: var(--white);
	color: transparent;
	font-size: 0.8rem;
	font-weight: 900;
}

.interest-option strong,
.interest-option small {
	display: block;
}

.interest-option strong {
	color: var(--navy);
	font-size: 0.88rem;
	line-height: 1.35;
}

.interest-option small {
	margin-top: 5px;
	color: var(--muted);
	font-size: 0.74rem;
	line-height: 1.45;
}

.interest-option:has(input:checked) {
	border-color: rgba(22, 166, 161, 0.55);
	background: rgba(22, 166, 161, 0.065);
	box-shadow: 0 10px 24px rgba(22, 166, 161, 0.08);
}

.interest-option:has(input:checked) .interest-check {
	border-color: var(--turquoise);
	background: var(--turquoise);
	color: var(--white);
}

.interest-fieldset.is-invalid .interest-option {
	border-color: rgba(180, 35, 24, 0.35);
}

.interest-feedback {
	margin-top: 9px;
}

@media (max-width: 767.98px) {
	.interest-grid {
		grid-template-columns: 1fr;
	}

	.interest-option {
		min-height: 0;
	}
}

@media (max-width: 575.98px) {
	.wizard-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.wizard-actions .btn {
		width: 100%;
	}
}

@media (max-width: 575.98px) {
	.identity-card {
		padding: 18px;
	}

	.identity-card-heading {
		flex-direction: column;
		gap: 10px;
	}

	.catastro-input-group {
		display: grid;
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.catastro-input-group .form-control,
	.catastro-input-group .btn-catastro {
		width: 100%;
		border: 1px solid rgba(23, 33, 59, 0.16);
		border-radius: 13px !important;
	}

	.catastro-input-group .btn-catastro {
		min-height: 48px;
		border-color: var(--navy);
	}

	.field-heading-inline {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}
}

/* --------------------------------------------------------------------------
 * Ajustes v1.3: intereses, accesibilidad y acabado premium móvil
 * -------------------------------------------------------------------------- */
.register-form-card {
	isolation: isolate;
	overflow: hidden;
}

.form-panel:focus-visible,
.interest-fieldset:focus-visible {
	outline: 3px solid rgba(22, 166, 161, 0.28);
	outline-offset: 6px;
}

.interest-option {
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.interest-option.is-selected,
.interest-option:has(input:checked) {
	border-color: rgba(22, 166, 161, 0.58);
	background:
		linear-gradient(145deg, rgba(22, 166, 161, 0.08), rgba(255, 255, 255, 0.98));
	box-shadow: 0 12px 28px rgba(22, 166, 161, 0.1);
}

.interest-option.is-selected .interest-check,
.interest-option:has(input:checked) .interest-check {
	border-color: var(--turquoise);
	background: var(--turquoise);
	color: var(--white);
}

.interest-option:has(input:focus-visible),
.interest-option.is-keyboard-focused {
	outline: 3px solid rgba(214, 41, 118, 0.2);
	outline-offset: 3px;
}

.interest-fieldset.is-invalid .interest-option:not(.is-selected) {
	border-color: rgba(180, 35, 24, 0.32);
}

.interest-empty-state {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	padding: 18px;
	border: 1px solid rgba(180, 35, 24, 0.2);
	border-radius: 15px;
	background: rgba(180, 35, 24, 0.055);
	color: #7a271f;
}

.interest-empty-state > span {
	flex: 0 0 auto;
	width: 27px;
	height: 27px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #b42318;
	color: var(--white);
	font-weight: 900;
}

.interest-empty-state strong {
	display: block;
	font-size: 0.92rem;
}

.interest-empty-state p {
	margin: 4px 0 0;
	font-size: 0.8rem;
	line-height: 1.5;
}

.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.form-check-input:focus-visible {
	outline: 3px solid rgba(214, 41, 118, 0.22);
	outline-offset: 2px;
}

.btn-submit:disabled {
	cursor: not-allowed;
	filter: grayscale(0.25);
	opacity: 0.62;
	box-shadow: none;
}

@media (max-width: 991.98px) {
	.register-form-card {
		width: 100%;
		max-width: 780px;
		margin-inline: auto;
	}
}

@media (max-width: 575.98px) {
	.section-register .container-xl {
		--bs-gutter-x: 1rem;
	}

	.register-form-card {
		padding: 24px 18px;
		border-radius: 22px;
		box-shadow: 0 20px 48px rgba(23, 33, 59, 0.11);
	}

	.form-heading {
		margin-bottom: 22px;
	}

	.form-heading h3 {
		font-size: clamp(1.9rem, 10vw, 2.35rem);
		line-height: 1.02;
	}

	.form-progress {
		gap: 7px;
		margin-bottom: 24px;
	}

	.form-progress button {
		width: 30px;
		height: 30px;
	}

	.form-progress i {
		width: clamp(24px, 10vw, 38px);
	}

	.panel-heading {
		margin-bottom: 18px;
		padding-bottom: 15px;
	}

	.panel-heading h4 {
		font-size: 1.16rem;
	}

	.form-control,
	.form-select {
		min-height: 56px;
		border-radius: 14px;
	}

	.identity-card {
		margin-inline: -2px;
		padding: 16px;
		border-radius: 17px;
	}

	.interest-grid {
		gap: 10px;
	}

	.interest-option {
		gap: 11px;
		padding: 15px 14px;
		border-radius: 14px;
	}

	.interest-option strong {
		font-size: 0.9rem;
	}

	.interest-option small {
		font-size: 0.76rem;
	}

	.consent-check {
		padding: 17px 15px 17px 44px;
	}

	.wizard-actions {
		margin-top: 22px;
	}

	.wizard-actions .btn,
	.btn-submit {
		min-height: 54px;
	}
}
