/* Compensar el alto del header fijo al navegar por anclas */
html {
	scroll-padding-top: 62px; /* Ajustado al alto real del header */
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--blue: #2f3b4f;
	--blue-dark: #2450d6;
	--ink: #151b2b;
	--text: #495166;
	--muted: #7c859a;
	--bg-soft: #f4f6fb;
	--bg-soft-blue: #eef3ff;
	--white: #ffffff;
	--green: #7fd89a;
	--pink: #ff9090;
	--purple: #b687ff;
	--orange: #ffb15f;
	--footer: #111827;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Montserrat", sans-serif;
	color: var(--ink);
	background: var(--white);
	line-height: 1.5;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

.container {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.section-subtitle {
	max-width: 660px;
	margin: 12px auto 46px;
	text-align: center;
	font-size: 16px;
	color: var(--muted);
	line-height: 1.75;
}

.header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(21, 27, 43, 0.05);
}

.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 56px;
	padding:10px 0;
}

.logo {
  height: 40px;
}

.logo img{
  width: auto;
  height: 100%;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	flex: 1;
}

.nav a {
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	color: #677086;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.login-link {
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	color: #6d768c;
}

.btn-header,
.btn-primary-lg,
.btn-demo {
	text-decoration: none;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-header:hover,
.btn-primary-lg:hover,
.btn-demo:hover {
	transform: translateY(-1px);
}

.btn-header {
	background: var(--blue);
	color: var(--white);
	padding: 10px 18px;
	white-space: nowrap;
}

.hero {
	background: var(--bg-soft-blue);
	padding: 70px 0;
}

.hero .container {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 46px;
	align-items: center;
}

.hero-content h1 {
	max-width: 470px;
	font-size: clamp(32px, 5vw, 50px);
	line-height: 1.2;
	letter-spacing: -0.03em;
	font-weight: 800;
	color: var(--ink);
}

.hero-content .highlight {
	color: var(--blue);
}

.hero-content > p {
	max-width: 430px;
	margin-top: 16px;
	font-size: 17px;
	line-height: 1.8;
	color: var(--text);
}

.hero-cta {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.btn-primary-lg {
	background: var(--blue);
	color: var(--white);
	padding: 15px 24px;
}

.btn-demo {
	background: var(--white);
	color: var(--ink);
	padding: 15px 24px;
}

.hero-footer-text {
	margin-top: 12px;
	font-size: 13px !important;
	color: #8b93a8;
	font-weight: 600;
}

.hero-image {
	position: relative;
}

.hero-image img {
	width: 100%;
	aspect-ratio: 1.14;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 20px 42px rgba(50, 103, 246, 0.12);
}

.hero-floating-note {
	position: absolute;
	left: -45px;
	bottom: 14px;
	background: var(--white);
	border-radius: 10px;
	padding: 16px 26px;
	font-size: 17px;
	font-weight: 700;
	color: #383b4b;
	box-shadow: 0 12px 26px rgba(22, 29, 52, 0.12);
}

.familiar,
.solution,
.como-funciona,
.beneficios,
.caracteristicas {
	padding: 74px 0;
}

.familiar {
	background: #fbfbfd;
}

.familiar-header,
.solution-header,
.como-funciona > .container > h2,
.beneficios > .container > h2,
.caracteristicas > .container > h2 {
	text-align: center;
}

.familiar-header h2,
.solution-header h2,
.como-funciona h2,
.beneficios h2,
.caracteristicas h2 {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ink);
}

.familiar-header p,
.solution-header p,
.como-funciona > .container > p,
.caracteristicas > .container > p {
	max-width: 610px;
	margin: 10px auto 0;
	font-size: 16px;
	color: var(--muted);
	line-height: 1.7;
}

.familiar-grid {
	margin-top: 34px;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 26px;
	align-items: start;
}

.familiar-card {
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 14px 24px rgba(16, 24, 40, 0.05);
}

.familiar-card img {
	width: 100%;
	aspect-ratio: 1.46;
	object-fit: cover;
}

.familiar-cards-column {
	display: grid;
	gap: 16px;
}

.familiar-card-sm {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 14px;
	align-items: start;
	padding: 20px 22px;
	background: var(--white);
	box-shadow: 0 10px 26px rgba(16, 24, 40, 0.05);
	border-radius: 14px;
}

.issue-icon {
	width:50px;
	height:50px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff7f7;
	color: #ff6c6c;
	font-weight: 800;
	font-size: 28px;
}

.familiar-card-sm h3,
.solution-text h4,
.paso h3,
.beneficio h3,
.caracteristica-item h3,
.footer-col h4 {
	font-size: 20px;
	font-weight: 800;
	color: var(--ink);
}

.footer-col img{
  width: 70px;
}

.familiar-card-sm p,
.solution-text p,
.paso p,
.beneficio p,
.caracteristica-item p,
.footer-col p,
.footer-col a,
.cta-mini-note,
.cta-trust,
.stat p,
.solution-note {
	font-size: 15px;
	color: var(--text);
	line-height: 1.7;
}

.solution-layout {
	margin-top: 34px;
	display: grid;
	grid-template-columns: 0.88fr 1.12fr;
	gap: 54px;
	align-items: center;
}

.solution-grid {
	display: grid;
	gap: 20px;
}

.solution-item {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 14px;
	align-items: start;
}

.solution-check {
	width: 45px;
	height: 45px;
	margin-top: 2px;
	border-radius: 9px;
	background: #dcf7e4;
	color: #51b96c;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 800;
}

.solution-image-box {
	text-align: center;
}

.solution-image {
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fe 100%);
	box-shadow: 0 18px 38px rgba(24, 38, 74, 0.12);
}

.solution-image img {
	width: 100%;
	aspect-ratio: 1.37;
	object-fit: cover;
	border-radius: 12px;
}

.solution-button {
	margin-top: 22px;
	display: inline-block;
}

.solution-note {
	margin-top: 12px;
	color: var(--muted);
}

.como-funciona {
	background: #fbfbfd;
}

.pasos-grid {
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5%;
}

.paso {
	text-align: center;
}

.paso img {
	width: 100%;
	aspect-ratio: 1.13;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 12px 24px rgba(22, 30, 50, 0.05);
}

.paso-numero {
	width: 60px;
	height: 60px;
	margin: 14px auto 12px;
	border-radius: 999px;
	background: var(--blue);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	font-weight: 800;
}

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

.beneficio {
	padding: 14px 14px 18px;
	border-radius: 18px;
	background: var(--white);
	box-shadow: 0 8px 20px rgba(16, 24, 40, 0.04);
}

.beneficio img {
	width: 100%;
	aspect-ratio: 1.15;
	object-fit: cover;
	border-radius: 14px;
	background: #f8f8fb;
}

.beneficio-mark {
	width: 55px;
	height: 55px;
	margin: 14px auto 10px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 800;
}

.beneficio-mark-green {
	background: #e6f9ec;
	color: #48b86a;
}

.beneficio-mark-blue {
	background: #ecf2ff;
	color: #5b84ff;
}

.beneficio-mark-purple {
	background: #f3ecff;
	color: #a573ff;
}

.beneficio h3,
.beneficio p {
	text-align: center;
}

.beneficio p {
	margin-top: 10px;
}

.caracteristicas {
	background: #fbfbfd;
}

.caracteristicas .details {
	max-width: 660px;
	margin: 22px auto 0;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.6;
	text-align: center;
}

.caracteristicas-layout {
	margin-top: 34px;
	display: grid;
	grid-template-columns: 0.86fr 1.14fr;
	gap: 34px;
	align-items: start;
}

.caracteristicas-list {
	display: grid;
	gap: 26px;
}

.caracteristica-item {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 18px;
	align-items: start;
}

.caracteristica-icon {
	width: 52px;
	height: 52px;
	margin-top: 2px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.02em;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.caracteristica-blue {
	background: #ecf2ff;
	color: #6791ff;
}

.caracteristica-green {
	background: #e7f9eb;
	color: #50bf73;
}

.caracteristica-purple {
	background: #f3ecff;
	color: #aa79ff;
}

.caracteristica-orange {
	background: #fff1e4;
	color: #f5a24f;
}

.caracteristicas-images-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.caracteristicas-images-grid img {
	width: 100%;
	aspect-ratio: 1.38;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 14px 28px rgba(18, 27, 45, 0.08);
	background: #fff;
}

.planes-section {
	padding: 78px 0;
	background: #f7f8fc;
}

.planes-header {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.planes-header h2 {
	font-size: 34px;
	line-height: 1.08;
	letter-spacing: -0.03em;
	font-weight: 800;
	color: var(--ink);
}

.planes-header p {
	margin-top: 12px;
	font-size: 16px;
	line-height: 1.75;
	color: var(--muted);
}

.planes-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	align-items: stretch;
}

.plan-card {
	display: flex;
	flex-direction: column;
	padding: 24px 22px;
	border-radius: 20px;
	border: 1px solid rgba(21, 27, 43, 0.08);
	background: var(--white);
	min-height: 100%;
}

.plan-featured {
	border-color: var(--blue);
	background: #f4f7ff;
}

.plan-topline {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--blue);
	margin-bottom: 10px;
}

.plan-card h3 {
	font-size: 28px;
	line-height: 1;
	font-weight: 800;
	color: var(--ink);
}

.plan-price {
	margin-top: 14px;
	font-size: 30px;
	line-height: 1;
	font-weight: 800;
	color: var(--ink);
}

.plan-price span {
	font-size: 14px;
	font-weight: 700;
	color: var(--muted);
}

.plan-hook {
	margin-top: 16px;
	font-size: 15px;
	line-height: 1.75;
	color: var(--text);
}

.plan-features {
	list-style: none;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(21, 27, 43, 0.08);
	display: grid;
	gap: 10px;
}

.plan-features li {
	position: relative;
	padding-left: 18px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--text);
}

.plan-features li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--blue);
	font-weight: 800;
}

.plan-action {
	margin-top: 20px;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid rgba(21, 27, 43, 0.12);
	background: #f7f8fc;
	color: var(--ink);
	text-align: center;
	text-decoration: none;
	font-size: 15px;
	font-weight: 800;
}

.plan-featured .plan-action {
	background: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}

.cta-grande {
	padding: 76px 0;
	background: var(--blue);
	color: var(--white);
}

.cta-grande .container {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.cta-image img {
	width: 100%;
	aspect-ratio: 1.15;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(11, 24, 70, 0.2);
}

.cta-content h2 {
	max-width: 600px;
	font-size: 40px;
	line-height: 1.3;
	letter-spacing: -0.03em;
	font-weight: 800;
}

.cta-content > p {
	max-width: 600px;
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
}

.cta-stats {
	display: flex;
	gap: 12px;
	margin: 22px 0 18px;
}

.stat {
	min-width: 88px;
	padding: 16px 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
	text-align: center;
}

.stat-number {
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
}

.stat p,
.cta-mini-note,
.cta-trust {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.72);
}

.cta-mini-note {
	margin-top: 22px !important;
	display: block !important;
	font-size: 12px !important;
}

.cta-trust {
	margin-top: 28px;
	text-align: center;
	font-size: 15px;
	font-weight: 400;
}

.cta-grande .btn-primary-lg {
	background: #ffc928;
	color: #1e2330;
	margin:20px 0;
	display: table;
}

.footer {
	padding: 0 0 20px 0;
	background: var(--footer);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 34px;
	padding: 60px 0;
}

.footer-col h4 {
	color: var(--white);
	margin-bottom: 14px;
	letter-spacing: 0.04em;
}

.footer-col p,
.footer-col a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
}

.footer-col ul {
	list-style: none;
	display: grid;
	gap: 8px;
}

.footer-bottom {
	margin-top: 28px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-country {
	margin-left: 16px;
}

@media (max-width: 980px) {
	.hero .container,
	.familiar-grid,
	.solution-layout,
	.caracteristicas-layout,
	.cta-grande .container {
		grid-template-columns: 1fr;
	}

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

	.pasos-grid,
	.beneficios-grid {
		grid-template-columns: 1fr;
	}

	.caracteristicas-images-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 720px) {
	.container {
		width: min(100% - 28px, 1120px);
	}

	.nav {
		display: none;
	}

	.header-actions {
		gap: 10px;
	}

	.login-link {
		display: none;
	}

	.header-wrapper {
		min-height: 64px;
	}

	.hero-content h1,
	.cta-content h2 {
		font-size: 30px;
	}

	.hero-cta,
	.cta-stats {
		flex-direction: column;
	}

	.hero-floating-note {
		left: 12px;
		bottom: 12px;
	}

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

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

/* === MODALES === */
body.modal-open {
	overflow: hidden;
}

.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(14, 20, 38, 0.52);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s ease;
}

.modal-overlay.is-active {
	opacity: 1;
	pointer-events: auto;
}

.modal-card {
	position: relative;
	background: var(--white);
	border-radius: 22px;
	width: 100%;
	max-width: 460px;
	padding: 40px 36px 32px;
	box-shadow: 0 32px 72px rgba(14, 20, 38, 0.22);
	transform: translateY(30px) scale(0.97);
	opacity: 0;
	transition: transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s ease;
}

.modal-overlay.is-active .modal-card {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: #f0f2f7;
	color: #677086;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
	background: #e3e7f0;
	color: var(--ink);
}

.modal-inner {
	text-align: center;
}

.modal-logo {
	width: 68px;
	height: 68px;
	margin: 0 auto 16px;
	background: #f4f6fb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
}

.modal-logo img {
	width: 100%;
	pointer-events: none;
}

.modal-inner h2 {
	font-size: 24px;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.02em;
}

.modal-inner > p {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.75;
	color: var(--muted);
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 22px;
	text-align: left;
}

.modal-form input {
	width: 100%;
	padding: 12px 16px;
	border-radius: 10px;
	border: 1.5px solid rgba(21, 27, 43, 0.1);
	background: #f7f8fc;
	color: var(--ink);
	font-size: 15px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.modal-form input:focus {
	border-color: #4c6ef5;
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(76, 110, 245, 0.12);
}

.modal-form button {
	padding: 14px 20px;
	border-radius: 10px;
	border: none;
	background: var(--blue);
	color: var(--white);
	font-size: 15px;
	font-weight: 800;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.modal-form button:hover {
	background: #253348;
	transform: translateY(-1px);
}

.modal-gmail {
	margin-top: 12px;
	padding: 12px 20px;
	border-radius: 10px;
	border: 1.5px solid rgba(21, 27, 43, 0.1);
	background: var(--white);
	color: var(--ink);
	font-size: 15px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	cursor: pointer;
	transition: background 0.2s ease;
}

.modal-gmail:hover {
	background: #f7f8fc;
}

.modal-gmail img {
	width: 20px;
	height: 20px;
}

.modal-switch {
	margin-top: 22px;
	font-size: 13px;
	color: var(--muted);
}

.modal-switch-btn {
	border: none;
	background: none;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	color: var(--blue-dark);
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.modal-switch-btn:hover {
	color: var(--blue);
}

@media (max-width: 480px) {
	.modal-card {
		padding: 32px 20px 28px;
	}
}



/* Go Top */
#goTopBtn {
	position: fixed;
	right: 24px;
	bottom: 32px;
	z-index: 1000;
	width: 48px;
	height: 48px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(47, 59, 79, 0.08);
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
	backdrop-filter: blur(8px);
	opacity: 0;
	pointer-events: none;
	transform: translateY(14px) scale(0.96);
	transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	cursor: pointer;
}

#goTopBtn.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

#goTopBtn:hover {
	background: #f4f6fb;
	border-color: rgba(47, 59, 79, 0.14);
	box-shadow: 0 12px 26px rgba(16, 24, 40, 0.12);
}

#goTopBtn svg {
	width: 48px;
	height: 48px;
	display: block;
	transform: rotate(-90deg);
	overflow: visible;
}

#goTopBtn circle:first-child {
	stroke: rgba(47, 59, 79, 0.14);
	stroke-width: 3;
}

#goTopBtn polyline {
	transform-origin: 24px 24px;
	transform: rotate(90deg);
	stroke: var(--blue);
	stroke-width: 2.6;
}

#goTopProgress {
	stroke: var(--blue);
	stroke-width: 3;
	transition: stroke-dashoffset 0.18s linear;
}

@media (max-width: 720px) {
	#goTopBtn {
		right: 16px;
		bottom: 20px;
		width: 46px;
		height: 46px;
	}

	#goTopBtn svg {
		width: 46px;
		height: 46px;
	}
}


/* Scroll Progress Clock */
#scrollProgress {
	position: fixed;
	left: 24px;
	bottom: 32px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: white;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	width: 56px;
	height: 56px;
	justify-content: center;
	padding: 4px 0;
}
#scrollProgress svg {
	display: block;
	margin-bottom: 2px;
}
#scrollProgressCircle {
	transition: stroke-dashoffset 0.2s linear;
}
#scrollPercent {
	font-size: 0.95rem;
	color: #2d7cff;
	font-weight: 600;
	margin-top: -6px;
}
/* Go Top Button */
#goTopBtn {
	position: fixed;
	right: 24px;
	bottom: 32px;
	z-index: 1000;
	background: white;
	border: none;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transform: translateY(40px);
	transition: opacity 0.3s, transform 0.3s;
	cursor: pointer;
}
#goTopBtn.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
#goTopBtn svg {
	display: block;
}
#goTopBtn:hover {
	box-shadow: 0 4px 16px rgba(45,124,255,0.18);
	background: #f5faff;
}