/* Página Regulamento — mesma base visual do linkbio */
body#regulamentos {
	background: var(--lb-bg, #fff);
	color: var(--lb-text, #5a4550);
	font-family: 'Proxima Nova', 'Segoe UI', sans-serif;
	-webkit-font-smoothing: antialiased;
}

body#regulamentos #accessJumperMenu,
body#regulamentos #page > footer,
body#regulamentos header.site-header {
	display: none !important;
}

body#regulamentos #page,
body#regulamentos #content-area,
body#regulamentos #content {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: none;
	background: transparent;
	min-height: 100vh;
	overflow-x: hidden;
}

.regpage {
	position: relative;
	min-height: 100vh;
	isolation: isolate;
}

.regpage.has-cta {
	padding-bottom: 7.5rem;
}

.regpage__logo-link {
	display: inline-flex;
	text-decoration: none;
}

.regpage__shell {
	position: relative;
	z-index: 1;
	width: min(100% - 1.75rem, 520px);
	margin: 0 auto;
	padding: 1.25rem 0 2.5rem;
}

.regpage__back {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 1.1rem;
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	text-decoration: none;
	color: var(--lb-accent, #9d6372);
	background: #fff;
	border: 1px solid rgba(157, 99, 114, 0.2);
	box-shadow: 0 8px 20px rgba(61, 47, 53, 0.06);
	font-size: 0.88rem;
	font-weight: 600;
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.regpage__back:hover {
	transform: translateY(-2px);
	background: var(--lb-accent, #9d6372);
	border-color: var(--lb-accent, #9d6372);
	color: #fff;
}

.regpage__back--bottom {
	margin: 1.25rem 0 0;
}

.regpage__card {
	background: #fff;
	border: 1px solid rgba(157, 99, 114, 0.16);
	border-radius: 18px;
	padding: 1.35rem 1.25rem 1.5rem;
	box-shadow: 0 12px 32px rgba(61, 47, 53, 0.08);
	animation: lbRise 0.55s ease both;
}

.regpage__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lb-muted, #9B9B9A);
}

.regpage__title {
	margin: 0 0 1rem;
	font-size: 1.55rem;
	line-height: 1.2;
	color: var(--lb-dark, #3d2f35);
	font-weight: 700;
}

.regpage__body {
	color: var(--lb-text, #5a4550);
	font-size: 0.95rem;
	line-height: 1.65;
	font-weight: 300;
}

.regpage__body p {
	margin: 0 0 0.9rem;
}

.regpage__body p:last-child {
	margin-bottom: 0;
}

.regpage__body ul,
.regpage__body ol {
	margin: 0 0 0.9rem;
	padding-left: 1.2rem;
}

.regpage__body li {
	margin-bottom: 0.35rem;
}

.regpage__body a {
	color: var(--lb-accent, #9d6372);
	font-weight: 600;
}

.regpage__body h2,
.regpage__body h3 {
	margin: 1.2rem 0 0.5rem;
	color: var(--lb-dark, #3d2f35);
	font-weight: 600;
	line-height: 1.3;
}

.regpage__body h2 { font-size: 1.15rem; }
.regpage__body h3 { font-size: 1.02rem; }

/* CTA flutuante pulsante */
.regpage__cta-wrap {
	position: fixed;
	left: 50%;
	bottom: 1.35rem;
	transform: translateX(-50%);
	z-index: 40;
	pointer-events: none;
}

.regpage__cta {
	pointer-events: auto;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: min(86vw, 280px);
	padding: 1rem 1.6rem;
	border-radius: 999px;
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.01em;
	background: linear-gradient(135deg, #9d6372 0%, #7f4d5a 100%);
	box-shadow: 0 14px 34px rgba(157, 99, 114, 0.42);
	animation: regCtaBob 2.4s ease-in-out infinite;
}

.regpage__cta-label {
	position: relative;
	z-index: 2;
}

.regpage__cta-pulse {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border: 2px solid rgba(157, 99, 114, 0.55);
	animation: regCtaPulse 2.2s ease-out infinite;
	z-index: 1;
}

.regpage__cta-pulse--delay {
	animation-delay: 0.7s;
}

.regpage__cta:hover {
	animation: none;
	transform: scale(1.04);
	background: linear-gradient(135deg, #7f4d5a 0%, #6a3f4b 100%);
}

@keyframes regCtaBob {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-6px) scale(1.03); }
}

@keyframes regCtaPulse {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	100% {
		transform: scale(1.35);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.regpage__cta,
	.regpage__cta-pulse,
	.regpage__card {
		animation: none !important;
	}
}
