/* Root variables for colour palette and fonts */
:root {
	--color-dark: #0a3476;
	--color-darker: #031d4a;
	--color-light: #f5f9ff;
	--color-primary: #1565c0;
	--color-secondary: #009f6b;
	--color-accent: #00b287;
	--color-highlight: #18c473;
	--color-red: #ef4444;
	--color-yellow: #f5a623;
	--color-purple: #8b5cf6;
	--color-orange: #f97316;
	--text-dark: #0f172a;
	--text-light: #ffffff;
	--max-width: 1200px;
	--radius: 1rem;
	--shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	--tw-gradient-from: #eff6ff;
	--tw-gradient-to: #ecfdf5;
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
	--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Poppins", sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	overflow-x: hidden;
}

/* Utility classes for colours */
.blue {
	color: var(--color-primary);
}
.green {
	color: var(--color-secondary);
}
.red {
	color: var(--color-red);
}
.yellow {
	color: var(--color-yellow);
}
.purple {
	color: var(--color-purple);
}
.orange {
	color: var(--color-orange);
}
.highlight {
	color: var(--color-accent);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s ease;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: var(--color-primary);
	color: white;
}
.btn-primary:hover {
	color: var(--color-primary);
	background: white;
	border: 1px solid var(--color-primary);
}
.btn-secondary {
	background: var(--color-secondary);
	color: white;
}
.btn-secondary:hover {
	color: var(--color-secondary);
	background: white;
	border: 1px solid var(--color-secondary);
}

.btn.small {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}
/* Containers */
.container {
	width: 90%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 2rem 0;
}

.principal-data {
	position: relative;
	overflow: hidden;
	min-height: 75vh;
}

.shadow-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000a6;
}

.image-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 15%;
	z-index: -1;
}
/* Navigation bar */

/* Navigation Bar */
.navbar {
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 999;
}
.nav-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}
.logo {
	display: flex;
	align-items: center;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-primary);
	gap: 0.5rem;
}
.nav-links {
	display: flex;
	gap: 1.5rem;
}
.nav-links a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}
.nav-links a:hover {
	color: var(--color-dark);
}

/* Hero Section */
.hero {
	position: relative;
	color: white;
	overflow: hidden;
}
.hero-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.hero-text {
	flex: 1 1 450px;
}
.hero h1 {
	font-size: 3rem;
	line-height: 1.65;
	margin-bottom: 1rem;
}
.hero p {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}
.whatsapp-note {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: var(--radius);
	padding: 2rem;
	box-shadow: var(--shadow);
	border: 1px solid #fff3;
}
.hero-card {
	flex: 1 1 450px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: var(--radius);
	padding: 2rem;
	box-shadow: var(--shadow);
	border: 1px solid #fff3;
}
.hero-card .icon-wrapper {
	background: var(--color-secondary);
	width: 6rem;
	height: 6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1.5rem;
	color: white;
	margin: 0 auto 1rem;
}
.hero-card h3 {
	margin-bottom: 1rem;
	text-align: center;
	font-size: 1.25rem;
}
.hero-card ul {
	list-style: none;
	padding-left: 0;
}
.hero-card li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
}
.hero-card li i {
	color: var(--color-secondary);
}
.decorative-bubbles {
	position: absolute;
	top: -150px;
	right: -150px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
	border-radius: 50%;
	filter: blur(60px);
}

/* Section headings */
section {
	padding: 4rem 0;
}
section h2 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 1rem;
	font-weight: 600;
}
.section-subtitle {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 2rem;
	font-size: 1.25rem;
	color: #8a9aaf;
}

/* Cards Grid */
.grid {
	display: grid;
	gap: 1.5rem;
}
.cards-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card,
.benefit-card,
.use-card {
	background: white;
	padding: 1.5rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	text-align: center;
	transition: transform 0.2s ease;
}
.card:hover,
.benefit-card:hover,
.use-card:hover {
	transform: translateY(-5px);
}
.card-icon,
.benefit-icon,
.use-icon {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin: 0 auto 1rem;
	color: white;
}
.card h4,
.benefit-card h4,
.use-card h4 {
	margin-bottom: 0.5rem;
	font-size: 1.125rem;
	font-weight: 600;
}
.card p,
.benefit-card p,
.use-card p {
	font-size: 0.9rem;
	color: #475569;
}

/* Specific colours for card icons */
.card-icon.blue,
.benefit-icon.blue,
.perfect-list .icon.blue,
.use-icon.blue {
	background: var(--color-primary);
}
.card-icon.green,
.benefit-icon.green,
.perfect-list .icon.green,
.use-icon.green {
	background: var(--color-secondary);
}
.benefit-icon.red {
	background: var(--color-red);
}
.benefit-icon.purple,
.perfect-list .icon.purple {
	background: var(--color-purple);
}
.use-icon.purple {
	background: var(--color-purple);
}
.use-icon.orange {
	background: var(--color-orange);
}

#que-es h2 {
	text-align: center;
	font-size: 3rem;
}

.what-is {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.what-is-contain {
	background-image: linear-gradient(to right, var(--tw-gradient-stops));
	border-radius: 1.5rem;
	border: 1px solid #dbeafe;
	box-shadow: var(--tw-shadow);
	padding: 2.5rem;
	max-width: 900px;
	margin: 2rem auto;
}

.what-is-contain .section-subtitle {
	font-size: 1.25rem;
	font-weight: 500;
}

.what-is-contain .highlight {
	color: var(--color-primary);
}

.what-is .card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.what-is .card .card-icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: white;
}

.what-is .card h4 {
	margin-bottom: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
}

.what-is .card p {
	font-size: 0.9rem;
	color: #475569;
}

/* ¿Cómo funciona? Steps */

#funciona {
	background-image: linear-gradient(to bottom right, #f8fafc, #eff6ff);
}

#funciona .container h2 {
	margin-bottom: 1rem;
	font-size: 3rem;
}

.steps {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: space-between;
}
.step {
	flex: 1 1 180px;
	text-align: center;
}
.step-number {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.75rem;
	font-size: 1.25rem;
	color: white;
	font-weight: 600;
}
.step-number.blue {
	background: var(--color-primary);
}
.step-number.green {
	background: var(--color-secondary);
}

.step h4 {
	font-size: 1rem;
	margin-bottom: 0.25rem;
}
.step p {
	font-size: 0.85rem;
	color: #475569;
}

/* Semáforo section */
.semaforo {
	background-image: linear-gradient(to bottom left, #eff6ff, #f8fafc);
}
.semaforo-container {
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	box-shadow: var(--tw-shadow);
	border-radius: var(--radius);
	background-color: white;
	border: 1px solid #e2e8f0;
}
.semaforo-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 2rem;
	justify-content: center;
	margin: 2rem 0;
}
.light {
	background: white;
	border: 1px solid transparent;
	border-radius: var(--radius);
	padding: 1.5rem;
	text-align: center;
	box-shadow: var(--shadow);
}
.light .icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
	color: white;
}
.light i {
	font-size: 2rem;
	color: inherit;
}
.light h4 {
	font-size: 1.125rem;
	margin-bottom: 0.25rem;
}
.light p {
	font-size: 0.85rem;
	color: #475569;
}
.light.verde {
	background-color: #f0fdf4;
	border-color: #bbf7d0;
	.icon {
		background-color: var(--color-secondary);
	}
}
.light.amarillo {
	background-color: #fefce8;
	border-color: #fef08a;

	.icon {
		background-color: var(--color-yellow);
	}
}
.light.rojo {
	background-color: #fef2f2;
	border-color: #fecaca;

	.icon {
		background-color: var(--color-red);
	}
}

.pricing-table {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin-top: 2rem;
	overflow-x: auto;
	border-collapse: collapse;
	width: 100%;
}
.pricing-header {
	padding: 1rem;
	text-align: center;
	font-weight: 600;
	background: #1e293b;
	color: white;

	&:first-child {
		border-top-left-radius: var(--radius);
	}
}

.pricing-header:nth-child(3) {
	border-top-right-radius: var(--radius);
}

.pricing-header.empty {
	background: transparent;
}
.pricing-type {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border-bottom: 1px solid #e2e8f0;
	background: white;
}
.pricing-type .type-icon {
	font-size: 1.5rem;
	background-color: var(--color-primary);
	color: white;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pricing-type.national .type-icon {
	background-color: var(--color-secondary);
}

.pricing-type .type-data {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}

.pricing-type .type-name {
	font-weight: 600;
	font-size: 1.25rem;
}
.pricing-type .type-desc {
	font-size: 1.15rem;
	color: #64748b;
}
.pricing-cell {
	text-align: center;
	padding: 2rem;
	border-bottom: 1px solid #e2e8f0;
}

.pricing-cell .card {
	background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
	border-radius: var(--radius);
	padding: 1.5rem;
	border: 1px solid #bfdbfe;
	text-align: center;
}

.pricing-cell.recommended .card {
	background: linear-gradient(to bottom right, #ecfdf5, #d1fae5);
}

.pricing-cell .price {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	color: var(--color-secondary);
}

.pricing-cell .moneda {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	display: block;
	font-weight: 500;
}

/* Features comparison section */
.features-comparison {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 2.5rem;
}
.feature-card {
	flex: 1 1 260px;
	padding: 2rem;
	border-radius: var(--radius);
	color: black;
	box-shadow: var(--shadow);
}
.feature-card.blue {
	background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
	border: 1px solid #bfdbfe;
}
.feature-card.green {
	background: linear-gradient(to bottom right, #f0fdf4, #bbf7d0);
	border: 1px solid #a3e8a0;
}
.feature-card h3 {
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: 600;
}
.feature-card ul {
	list-style: none;
	padding-left: 0;
}
.feature-card li {
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
}

.feature-card.blue li i {
	color: var(--color-primary);
}

.feature-card.green li i {
	color: var(--color-secondary);
}

.beneficios {
	background: linear-gradient(to bottom right, #ecfdf5, #eff6ff);
}

.beneficios .benefits {
	margin: 2rem 0;
}

.beneficios .benefits h2 {
	text-align: center;
	font-size: 3rem;
}

.beneficios .benefits .section-subtitle {
	text-align: center;
	font-size: 1.25rem;
}

/* Por qué elegir section */
.por-que {
	background: #fff;
	padding: 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: 1px solid #e2e8f0;
}

.por-que h2 {
	text-align: left;
	font-size: 1.75rem;
}

.why-content {
	display: grid;
	flex-wrap: wrap;
	gap: 2rem;
	grid-template-columns: repeat(2, 1fr);
}
.why-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.why-icon {
	width: 3.5rem;
	height: 3.5rem;
	min-width: 3.5rem;
	min-height: 3.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1rem;
}
.why-icon.green {
	background: var(--color-secondary);
}
.why-icon.blue {
	background: var(--color-primary);
}
.why-icon.purple {
	background: var(--color-purple);
}
.why-text h4 {
	margin-bottom: 0.25rem;
	font-size: 1.125rem;
	font-weight: 600;
}
.why-text p {
	font-size: 1rem;
	color: #475569;
}
.why-illustration {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}
.illustration-card {
	background: linear-gradient(to bottom right, #d1fae5, #dbeafe);
	border-radius: var(--radius);
	padding: 2rem;
	color: #000;
	text-align: center;
	height: 100%;
	box-shadow: var(--shadow);
}

.illustration-card h4 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.illustration-card p {
	font-size: 1rem;
	color: #000000a6;
}

.illustration-card .why-icon {
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 3rem;
	color: white;
	background: linear-gradient(to bottom right, var(--color-secondary), var(--color-primary));
}

.perfect-content {
	margin-top: 3rem;
	display: grid;
	flex-wrap: wrap;
	gap: 2rem;
	grid-template-columns: repeat(2, 1fr);
	background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
	border-radius: var(--radius);
	padding: 1.5rem;
	border: 1px solid #bfdbfe;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow);
}

.perfect-list h2 {
	text-align: center;
	font-size: 1.75rem;
	font-weight: 600;
}
.perfect-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.perfect-icon {
	width: 3.5rem;
	height: 3.5rem;
	min-width: 3.5rem;
	min-height: 3.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1rem;
}
.perfect-icon.green {
	background: var(--color-secondary);
}
.perfect-icon.blue {
	background: var(--color-primary);
}
.perfect-icon.purple {
	background: var(--color-purple);
}
.perfect-text h4 {
	margin-bottom: 0.25rem;
	font-size: 1.125rem;
	font-weight: 600;
}
.perfect-text p {
	font-size: 1rem;
	color: #fff;
}
.perfect-illustration {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}
.perfect-card {
	background: linear-gradient(to bottom right, #10b98133, #3b82f633);
	border-radius: var(--radius);
	padding: 2rem;
	color: #fff;
	text-align: center;
	height: 100%;
	border: 1px solid #ffffff4d;
}

.perfect-card h4 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.perfect-card p {
	font-size: 1rem;
	color: #fff3;
}

.perfect-card .perfect-icon {
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 3rem;
	color: white;
	background: linear-gradient(to bottom right, var(--color-secondary), var(--color-primary));
}

/* Casos de uso section background */
.casos-uso {
	background: linear-gradient(to bottom right, #1e3a8a, #1e293b, #1e3a8a);
	color: white;
	position: relative;
}

.casos-uso .section-subtitle {
	font-size: rem;
}

.casos-uso .card,
.casos-uso .use-card {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.casos-uso .use-card p {
	color: #e2e8f0;
}

/* FAQs */
.faq {
	background: #f8fafc;
}
/* FAQ accordion styles */
.faq-list {
	margin-top: 2rem;
	max-width: 900px;
	margin: 0 auto;
}
.faq-item {
	background: linear-gradient(to bottom right, #eff6ff, #f8fafc);
	border: 1px solid #e2e8f0;
	border-radius: var(--radius);
	margin-bottom: 1rem;
	padding: 1rem;
	box-shadow: var(--shadow);
	cursor: pointer;
}
.faq-item .question {
	font-weight: 600;
	position: relative;
	padding-right: 1.5rem;
	font-size: 1.25rem;
}
.faq-item .question::after {
	content: "\f078";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	position: absolute;
	right: 0;
	top: 0;
	transition: transform 0.3s ease;
}
.faq-item.open .question::after {
	transform: rotate(180deg);
}
.faq-item .answer {
	margin-top: 0.75rem;
	color: #475569;
	font-size: 1.125rem;
	display: none;
}
.faq-item.open .answer {
	display: block;
}
.faq-more {
	margin-top: 2rem;
	text-align: center;
	background: #e5faf2;
	border-radius: var(--radius);
	padding: 2rem 1.5rem;
	box-shadow: var(--shadow);
}
.faq-more h3 {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}
.faq-more p {
	margin-bottom: 1rem;
	color: #475569;
}

/* CTA Section */
.cta {
	padding: 5rem 0;
	background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #064e3b);
	color: white;
	position: relative;
	overflow: hidden;
	margin-bottom: 10rem;
}
.cta .container {
	position: relative;
	padding: 0 1.5rem;
	z-index: 10;
}

.cta .limiter {
	max-width: 56rem;
	margin: 0 auto 4rem;
}
.cta h2 {
	color: white;
	font-size: 3rem;
}
.cta p.section-subtitle {
	color: #cbd5e1;
	font-size: 1.5rem;
	font-weight: 500;
}
.cta-features {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
}
.cta-item {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow);
	padding: 1rem;
	letter-spacing: 0.25px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.cta-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.5rem;
	font-size: 1.5rem;
	color: white;
}
.cta-icon.green {
	background: var(--color-secondary);
}
.cta-icon.blue {
	background: var(--color-primary);
}
.cta-icon.purple {
	background: var(--color-purple);
}
.cta-box {
	margin-top: 3rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow);
	padding: 2rem;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.cta-box h3 {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}
.cta-box p {
	margin-bottom: 1.5rem;
	color: #e2e8f0;
}
.cta-note {
	margin-top: 1rem;
	font-size: 0.8rem;
	color: #cbd5e1;
}

.cta-stats {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
	color: #dbeafe;
}

.cta-stats div {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.cta-stats strong {
	font-size: 1.875rem;
	font-weight: 600;
	color: #34d399;
	margin-bottom: 0.5rem;
}

.wave {
	position: absolute;
	bottom: -9px;
	left: 0;
	width: 100%;
	right: 0;
}

/* Footer */
.footer {
	background: white;
	color: var(--text-dark);
	padding: 3rem 0 1rem;
}
.footer-content {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}
.footer-col {
	flex: 1 1 250px;
}
.footer-col h4 {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
	font-weight: 600;
}
.footer-col ul {
	list-style: none;
	padding-left: 0;
}
.footer-col li {
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.footer-col .logo {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--color-primary);
}
.copyright {
	margin-top: 2rem;
	text-align: center;
	font-size: 0.8rem;
	color: #64748b;
}

/* Responsive tweaks */
@media (min-width: 768px) {
	.hero-content {
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}
	.nav-links {
		gap: 2rem;
	}
	.pricing-table {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.why-content {
		flex-wrap: nowrap;
	}
	.perfecto {
		flex-wrap: nowrap;
	}

	.semaforo-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.cta-features {
		grid-template-columns: repeat(3, 1fr);
	}

	.cta-stats {
		grid-template-columns: repeat(4, 1fr);
	}
}
