@font-face {
	font-family: 'F37 Ginger';
	src: url('../fonts/F37Ginger.eot');
	src: url('../fonts/F37Ginger.eot?#iefix') format('embedded-opentype'),
		url('../fonts/F37Ginger.woff2') format('woff2'),
		url('../fonts/F37Ginger.woff') format('woff'),
		url('../fonts/F37Ginger.ttf') format('truetype'),
		url('../fonts/F37Ginger.svg#F37Ginger') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'F37 Ginger';
	src: url('../fonts/F37Ginger-Bold.eot');
	src: url('../fonts/F37Ginger-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/F37Ginger-Bold.woff2') format('woff2'),
		url('../fonts/F37Ginger-Bold.woff') format('woff'),
		url('../fonts/F37Ginger-Bold.ttf') format('truetype'),
		url('../fonts/F37Ginger-Bold.svg#F37Ginger-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-snap-type: y mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

html::-webkit-scrollbar {
	display: none;
}

body {
	width: 100%;
	height: auto;
	font-family: 'F37 Ginger', sans-serif;
	overflow-x: hidden;
	scroll-snap-type: y mandatory;
	margin: 0;
	padding: 0;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

body::-webkit-scrollbar {
	display: none;
}

.section {
	width: 100%;
	height: 100vh;
	position: relative;
	background: #E8EEF2;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(0, 25, 126, 0.08) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(0, 25, 126, 0.08) 1px, transparent 1px);
	background-size: 28px 28px;
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
	pointer-events: none;
	z-index: 0;
}

.section > * {
	position: relative;
	z-index: 1;
}

/* Section Content */
.section-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 40px 20px;
	text-align: center;
}

.search-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	background: white;
	border: 2px solid #DADCF2;
	border-radius: 50px;
	padding: 15px 20px;
	margin-bottom: 60px;
	width: 100%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.typewrite {
	font-size: 20px;
	font-weight: 900;
	color: #00197E;
	margin: 0;
	padding: 0;
	flex: 1;
	text-align: left;
}

.typewrite .wrap {
	border-right: 2px solid #00197E;
	padding-right: 5px;
	animation: blinkCursor 1s steps(1) infinite;
}

@keyframes blinkCursor {
	50% {
		border-color: transparent;
	}
}

.lupa {
	width: 25px;
	height: 25px;
	fill: #DADCF2;
	flex-shrink: 0;
	cursor: pointer;
}

.section-title {
	font-size: 44px;
	font-weight: 900;
	margin-bottom: 20px;
	line-height: 1.2;
	letter-spacing: -1px;
	/* Extra space so descenders (g, y, p…) aren't clipped by the gradient mask */
	padding-bottom: 0.15em;
	background: linear-gradient(
		120deg,
		#00197E 0%,
		#05A0E6 55%,
		#00197E 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-text {
	font-size: 16px;
	color: #333333;
	line-height: 1.6;
	margin: 0;
}

/* Scroll-down button */
.btn-scroll-down {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 32px;
	padding: 14px 28px;
	border-radius: 10px;
	background: linear-gradient(135deg, #4a9232 0%, #5FAD41 60%, #72c252 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(95, 173, 65, 0.35);
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-arrow-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
}

.btn-scroll-down:hover {
	background: linear-gradient(135deg, #3d7a29 0%, #4a9232 60%, #5FAD41 100%);
	transform: translateY(2px);
}

/* Logo */
.logo-link {
	position: fixed;
	top: 50px;
	left: 50px;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 42px;
	text-decoration: none;
}

.logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Menú Hamburguesa */
.menu-toggle-checkbox {
	display: none;
}

.menu-toggle-label {
	position: fixed;
	top: 50px;
	right: 50px;
	z-index: 101;
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding: 0;
}

.menu-toggle-label span {
	width: 30px;
	height: 2px;
	background-color: #000;
	transition: all 0.3s ease;
	display: block;
}

.menu-toggle-checkbox:checked + .menu-toggle-label span {
	background-color: #fff;
}

.menu-toggle-checkbox:checked + .menu-toggle-label span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 8px);
}

.menu-toggle-checkbox:checked + .menu-toggle-label span:nth-child(2) {
	opacity: 0;
}

.menu-toggle-checkbox:checked + .menu-toggle-label span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -8px);
}

/* Menu Overlay */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 99;
	display: none;
	cursor: pointer;
}

.menu-toggle-checkbox:checked ~ .menu-overlay {
	display: block;
}

/* Menu Navigation */
.menu-nav {
	position: fixed;
	top: 80px;
	left: -100%;
	width: 100%;
	height: calc(100vh - 80px);
	background: rgba(9, 9, 12, 0.98);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: left 0.3s ease;
}

.menu-toggle-checkbox:checked ~ .menu-nav {
	left: 0;
}

.menu-nav-list {
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 0;
}

.menu-nav-list li {
	margin: 0;
}

.menu-nav-list a {
	color: white;
	text-decoration: none;
	font-size: 24px;
	font-weight: bold;
	transition: color 0.3s ease;
	display: inline-block;
	padding: 10px 20px;
	line-height: 1;
	text-transform: uppercase;
}

.menu-nav-list a:hover {
	color: #ccc;
}

.menu-nav a {
	cursor: pointer;
}

/* Scroll Hand */
.hand {
	width: 45px;
	height: 45px;
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	fill: #00197E;
	animation: bounce 2s infinite;
	z-index: 2;
}

@keyframes bounce {
	0%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(-15px);
	}
}

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

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(15px);
	}
}

/* Blobs */
.blob {
	width: 350px;
	height: 350px;
	border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
	animation: morph 18s ease-in-out infinite;
	filter: blur(0.3px);
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top: -175px;
	margin-left: -175px;
}

.blobblue {
	background: radial-gradient(circle at 25% 25%, #00197E, #0047C2 40%, #05A0E6 70%);
}

.blobred {
	background: radial-gradient(circle at 25% 25%, #8F2D24, #C94A3A 40%, #ED6A5A 70%);
}

.blobgreen {
	background: radial-gradient(circle at 25% 25%, #1F5E2E, #3D8B40 40%, #5FAD41 70%);
}

@keyframes morph {
	0% {
		border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
		transform: rotate(0deg) scale(1);
	}
	33% {
		border-radius: 58% 42% 30% 70% / 60% 40% 60% 40%;
		transform: rotate(120deg) scale(1.05);
	}
	66% {
		border-radius: 30% 70% 58% 42% / 35% 65% 35% 65%;
		transform: rotate(240deg) scale(0.95);
	}
	100% {
		border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
		transform: rotate(360deg) scale(1);
	}
}

/* Navigation Dots */
.navigation-dots {
	position: fixed;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	z-index: 50;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(0, 25, 126, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.dot:hover {
	background: rgba(0, 25, 126, 0.6);
	transform: scale(1.2);
}

.dot.active {
	background: #00197E;
	width: 14px;
	height: 14px;
	box-shadow: 0 0 0 4px rgba(0, 25, 126, 0.2);
}

/* SEO Table Styles */
.seo-table-container {
	max-height: 600px;
	overflow-y: auto;
	overflow-x: auto;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	padding: 0;
}

.seo-table-title {
	background: #00197E;
	color: white;
	box-sizing: border-box;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	margin: 0;
	font-size: 18px;
	font-weight: bold;
	position: sticky;
	top: 0;
	z-index: 20;
	text-align: center;
}

.seo-checklist-table {
	width: 100%;
	/* separate (not collapse) keeps borders crisp under the sticky header
	   and avoids the flicker/sliver collapse causes while scrolling */
	border-collapse: separate;
	border-spacing: 0;
	font-size: 14px;
}

/* Column header: the only row that sticks below the title.
   top must equal the title height exactly so no gap shows through. */
.seo-checklist-table thead th {
	padding: 12px 20px;
	text-align: left;
	font-weight: bold;
	color: white;
	text-transform: uppercase;
	font-size: 12px;
	background: #05A0E6;
	position: sticky;
	top: 64px;
	z-index: 10;
}

.seo-checklist-table td {
	padding: 12px 20px;
	text-align: left;
	border-bottom: 1px solid #eee;
}

/* Group/section header rows (I., II., …) scroll naturally — no sticky —
   so they never stack or shuffle. Kept distinct in solid navy. */
.seo-checklist-table tr[style*="background: #00197E"] td {
	background: #00197E !important;
	color: white;
	font-weight: bold;
	padding: 12px 20px;
	border-bottom: none;
}

.seo-checklist-table tbody tr:not([style*="background: #00197E"]):hover td {
	background: #f4f8fb;
}

/* Responsive */
@media only screen and (max-width: 480px) {
	.navigation-dots {
		display: none;
	}

	.section::before {
		background-size: 18px 18px;
	}

	.step-section::before {
		background-size: 18px 18px;
	}

	.logo-link {
		top: 30px;
		left: 30px;
		width: 80px;
		height: 34px;
	}

	.menu-toggle-label {
		top: 30px;
		right: 30px;
	}

	.menu-nav {
		top: 80px;
		height: calc(100vh - 80px);
	}

	.menu-nav-list {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.menu-nav-list li {
		margin: 0;
	}

	.menu-nav-list a {
		font-size: 18px;
		padding: 8px 0;
		display: block;
	}

	.section-content {
		padding: 30px 25px;
		max-width: 100%;
		align-items: flex-start;
		text-align: left;
	}

	.search-container {
		gap: 12px;
		margin-bottom: 40px;
		padding: 12px 15px;
		width: 85%;
	}

	.typewrite {
		font-size: 16px;
		flex: 1;
	}

	.lupa {
		width: 20px;
		height: 20px;
		flex-shrink: 0;
	}

	.section-title {
		font-size: 24px;
		margin-bottom: 15px;
		width: 100%;
		background: linear-gradient(
			120deg,
			#00197E 0%,
			#05A0E6 55%,
			#00197E 100%
		);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.section-text {
		font-size: 14px;
		line-height: 1.5;
		width: 100%;
	}

	.hand {
		width: 40px;
		height: 40px;
		bottom: 50px;
	}
}

@media only screen and (max-width: 768px) and (min-width: 481px) {
	.navigation-dots {
		display: none;
	}

	.section::before {
		background-size: 18px 18px;
	}

	.step-section::before {
		background-size: 18px 18px;
	}

	.logo-link {
		top: 50px;
		left: 35px;
		width: 85px;
		height: 36px;
	}

	.menu-toggle-label {
		right: 35px;
	}

	.menu-nav-list a {
		font-size: 20px;
	}

	.section-content {
		padding: 40px 25px;
		max-width: 600px;
	}

	.search-container {
		margin-bottom: 50px;
		padding: 15px 18px;
	}

	.typewrite {
		font-size: 18px;
	}

	.section-title {
		font-size: 32px;
		margin-bottom: 18px;
		background: linear-gradient(
			120deg,
			#00197E 0%,
			#05A0E6 55%,
			#00197E 100%
		);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.section-text {
		font-size: 15px;
		line-height: 1.5;
	}

	.hand {
		width: 50px;
		height: 50px;
		bottom: 60px;
	}
}

@media only screen and (max-width: 1100px) and (min-width: 769px) {
	.logo-link {
		top: 50px;
		left: 40px;
		width: 90px;
		height: 38px;
	}

	.menu-toggle-label {
		right: 40px;
	}

	.menu-nav-list a {
		font-size: 24px;
	}

	.section-content {
		padding: 50px 30px;
		max-width: 650px;
	}

	.search-container {
		margin-bottom: 55px;
		padding: 18px 20px;
	}

	.typewrite {
		font-size: 22px;
	}

	.section-title {
		font-size: 40px;
		margin-bottom: 20px;
		background: linear-gradient(
			120deg,
			#00197E 0%,
			#05A0E6 55%,
			#00197E 100%
		);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.section-text {
		font-size: 16px;
	}
}

@media only screen and (min-width: 1101px) {
	.logo-link {
		top: 50px;
		left: 50px;
		width: 100px;
		height: 42px;
	}

	.menu-toggle-label {
		right: 50px;
	}

	.menu-nav-list a {
		font-size: 28px;
	}

	.section-content {
		padding: 60px 40px;
		max-width: 700px;
	}

	.search-container {
		margin-bottom: 60px;
		padding: 18px 20px;
	}

	.typewrite {
		font-size: 20px;
	}

	.section-title {
		font-size: 44px;
		margin-bottom: 20px;
		background: linear-gradient(
			120deg,
			#00197E 0%,
			#05A0E6 55%,
			#00197E 100%
		);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.section-text {
		font-size: 16px;
	}

	.hand {
		width: 55px;
		height: 55px;
		bottom: 70px;
	}
}

/* Step Sections */
.step-section {
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
	background: #E8EEF2;
	position: relative;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.step-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(0, 25, 126, 0.08) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(0, 25, 126, 0.08) 1px, transparent 1px);
	background-size: 28px 28px;
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
	pointer-events: none;
	z-index: 0;
}

.step-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1200px;
	width: 100%;
	align-items: center;
	position: relative;
	z-index: 1;
}

.step-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.step-number-box {
	display: inline-block;
	background: linear-gradient(135deg, #00197E 0%, #05A0E6 100%);
	padding: 16px;
	border-radius: 8px;
	margin-bottom: 25px;
	opacity: 0;
	transform: translateY(30px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.step-number-box.animate {
	animation: fadeInUp 0.8s ease-out forwards;
}
/* Pasos 2, 4, 6 → red gradient (Pasos 1, 3, 5 keep the default blue) */
.step-section:nth-child(4) .step-number-box,
.step-section:nth-child(6) .step-number-box,
.step-section:nth-child(9) .step-number-box {
	background: linear-gradient(135deg, #8F2D24 0%, #C94A3A 100%);
}

.bonus-box {
	background: linear-gradient(135deg, #1F5E2E 0%, #5FAD41 100%);
}

.step-number {
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #ffffff;
	margin: 0;
	text-transform: uppercase;
}

.step-title {
	font-family: 'F37 Ginger', serif;
	font-size: 44px;
	font-weight: 900;
	color: #00197E;
	margin-bottom: 25px;
	line-height: 1.2;
	opacity: 0;
	transform: translateY(30px);
}

.step-title.animate {
	animation: fadeInUp 0.8s ease-out 0.15s forwards;
}

.step-text {
	font-size: 16px;
	color: #333;
	line-height: 1.7;
	margin: 0;
	opacity: 0;
	transform: translateY(30px);
}

.step-text.animate {
	animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.section-text mark,
.step-text mark {
	background: linear-gradient(
		-100deg,
		hsla(48,92%,75%,.3),
		hsla(48,92%,75%,.7) 95%,
		hsla(48,92%,75%,.1)
	);
	background-size: 0% 100%;
	background-repeat: no-repeat;
	border-radius: 1em 0;
	padding: .3em;
	color: #00197E;
	font-weight: 600;
	transition: background-size 0.8s ease;
}

.section-text mark.mark-animate,
.step-text mark.mark-animate {
	background-size: 100% 100%;
}

.step-image {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 400px;
	overflow: visible;
	border-radius: 20px;
	position: relative;
}

.step-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 20px;
	animation: float 4s ease-in-out infinite;
	position: relative;
	z-index: 1;
}

/* Responsive */
@media only screen and (max-width: 768px) {
	.step-section::before {
		background-size: 18px 18px;
	}

	.step-section {
		padding: 40px 20px;
	}

	/* Tall table section: top-align so its heading never gets pushed up
	   behind the fixed logo when content exceeds the viewport */
	#empezamos-section {
		align-items: flex-start !important;
		padding-top: 96px !important;
	}

	.step-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.step-title {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.step-text {
		font-size: 15px;
	}

	.step-image {
		height: 300px;
	}

	.blob {
		width: 280px;
		height: 280px;
		margin-top: -140px;
		margin-left: -140px;
	}

	.seo-table-container {
		max-height: 500px;
		padding: 0;
	}

	.seo-table-title {
		font-size: 17px;
	}

	.seo-checklist-table {
		font-size: 13px;
	}

	.seo-checklist-table th,
	.seo-checklist-table td {
		padding: 10px 15px;
		font-size: 13px;
	}
}

@media only screen and (max-width: 480px) {
	.step-section {
		padding: 30px 15px;
		min-height: auto;
	}

	.step-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.step-content {
		align-items: center;
	}

	.step-number-box {
		border-radius: 4px;
		padding: 8px 13px;
	}

	.step-number-box.animate {
		animation: fadeInUpSkew 0.8s ease-out forwards;
	}

	.step-number {
		font-size: 10px;
		margin-bottom: 0px;
		letter-spacing: 0.5px;
	}

	.step-title {
		font-size: 24px;
		margin-bottom: 15px;
		text-align: center;
	}

	.step-text {
		font-size: 14px;
		line-height: 1.6;
		text-align: center;
	}

	.step-image {
		height: 250px;
	}

	.blob {
		width: 220px;
		height: 220px;
		margin-top: -110px;
		margin-left: -110px;
	}
}

@keyframes fadeInUpSkew {
	from {
		opacity: 0;
		transform: translateY(30px) skewY(-5deg);
	}
	to {
		opacity: 1;
		transform: translateY(0) skewY(-5deg);
	}
}

/* Stats/Charts Section */
.stats-section {
	background: #E8EEF2;
}

.stats-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.stats-content {
	width: 100%;
	/* Always 3 across; never an awkward 2 + 1 layout */
	grid-template-columns: repeat(3, 1fr);
}

/* Keep the 3-across row on desktop/laptop; stack vertically only on
   tablet portrait and phones */
@media only screen and (max-width: 768px) {
	.stats-content {
		grid-template-columns: 1fr;
	}
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.chart {
	/* Up to 220px, but shrinks to fit its column so 3 always sit
	   side by side without overflowing. aspect-ratio keeps it circular. */
	width: min(220px, 100%);
	aspect-ratio: 1 / 1;
	flex-shrink: 0;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-image: conic-gradient(var(--color) var(--value), var(--bg-color) var(--value));
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.chart-one {
	--color: #05A0E6;
	--bg-color: rgba(5, 160, 230, 0.15);
}

.chart-two {
	--color: #ED6A5A;
	--bg-color: rgba(237, 106, 90, 0.15);
}

.chart-three {
	--color: #5FAD41;
	--bg-color: rgba(95, 173, 65, 0.15);
}

.chart-value {
	font-size: clamp(28px, 4vw + 14px, 48px);
	font-weight: 900;
	color: #00197E;
	margin: 0;
	position: relative;
	z-index: 2;
}

.stat-text {
	text-align: center;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	max-width: 280px;
	margin: 0;
}

@media only screen and (max-width: 768px) {
	.stat-text {
		font-size: 14px;
	}

	/* On the single-column (vertical) layout, keep charts compact —
	   never oversized on phones */
	.chart {
		width: clamp(90px, 26vw, 120px);
	}

	.chart-value {
		font-size: clamp(22px, 6vw, 30px);
	}
}

@media only screen and (max-width: 480px) {
	.stats-section {
		padding: 40px 15px !important;
	}

	.stats-content {
		gap: 35px !important;
	}

	.stat-item {
		gap: 15px;
		padding: 0 10px;
	}

	.stat-text {
		font-size: 13px;
		max-width: calc(100vw - 40px);
		line-height: 1.6;
		padding: 0 5px;
	}

	.seo-table-container {
		max-height: 400px;
		padding: 0;
	}

	.seo-table-title {
		font-size: 16px;
	}

	.seo-checklist-table {
		font-size: 12px;
	}

	.seo-checklist-table th,
	.seo-checklist-table td {
		padding: 8px 12px;
		font-size: 12px;
	}
}
/* ============================================================
   Pantalla "Gira tu dispositivo" — móvil en horizontal
   Oculta por defecto; se activa sola en landscape de pantallas
   bajas (smartphones). Al volver a vertical, desaparece y el
   sitio reaparece intacto.
   ============================================================ */
.rotate-screen {
	display: none;
}

@media only screen and (orientation: landscape) and (max-height: 500px) {
	html, body {
		overflow: hidden;
	}

	.rotate-screen {
		display: flex;
		position: fixed;
		inset: 0;
		z-index: 99999;
		align-items: center;
		justify-content: center;
		padding: 24px;
		text-align: center;
		font-family: 'F37 Ginger', sans-serif;
		color: #ffffff;
		background:
			radial-gradient(circle at 22% 18%, #0047C2 0%, transparent 55%),
			radial-gradient(circle at 82% 88%, #05A0E6 0%, transparent 50%),
			#00197E;
		background-image:
			linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
			linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
			radial-gradient(circle at 22% 18%, #0047C2 0%, transparent 55%),
			radial-gradient(circle at 82% 88%, #05A0E6 0%, transparent 50%);
		background-color: #00197E;
		background-size: 28px 28px, 28px 28px, 100% 100%, 100% 100%;
		animation: rotate-screen-in 0.35s ease both;
	}

	.rotate-screen__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 14px;
		max-width: 480px;
	}

	.rotate-screen__logo {
		width: 96px;
		height: auto;
		margin-bottom: 4px;
	}

	.rotate-screen__phone {
		position: relative;
		width: 90px;
		height: 90px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 2px 0 6px;
	}

	.rotate-screen__phone-icon {
		width: 46px;
		height: auto;
		transform-origin: 50% 50%;
		animation: rotate-screen-tilt 2.4s ease-in-out infinite;
	}

	.rotate-screen__arrow {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		opacity: 0.9;
		animation: rotate-screen-pulse 2.4s ease-in-out infinite;
	}

	.rotate-screen__title {
		margin: 0;
		font-size: 22px;
		font-weight: 700;
		letter-spacing: 0.3px;
	}
}

@keyframes rotate-screen-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* El teléfono "cae" de horizontal a vertical, sugiriendo el giro */
@keyframes rotate-screen-tilt {
	0%, 18%   { transform: rotate(-90deg); }
	48%, 72%  { transform: rotate(0deg); }
	90%, 100% { transform: rotate(-90deg); }
}

@keyframes rotate-screen-pulse {
	0%, 18%  { opacity: 0.35; }
	48%, 72% { opacity: 0.95; }
	90%,100% { opacity: 0.35; }
}

/* ===== WhatsApp "Conversemos" CTA button ===== */
.wa-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 16px 36px;
	background: #25D366;
	color: #ffffff;
	font-family: 'F37 Ginger', sans-serif;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.5px;
	text-decoration: none;
	border-radius: 50px;
	box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.4s ease, visibility 0.4s ease;
}
.wa-cta-btn:hover {
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
}
.wa-cta-btn svg { display: inline-block; }

/* Floating variant: bottom-right of its section, hidden until revealed */
.wa-cta-btn--float {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	pointer-events: none;
}
.wa-cta-btn--float.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
.wa-cta-btn--float.is-visible:hover {
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.wa-cta-btn { padding: 14px 28px; font-size: 14px; }
	.wa-cta-btn--float { right: 20px; bottom: 20px; }
}
