/* Landing — Sistema de Reservas EED Software (tema claro) */

:root {
	--bg: #f8fafc;
	--bg-soft: #ffffff;
	--surface: #ffffff;
	--surface-hover: #f1f5f9;
	--text: #0f172a;
	--text-muted: #64748b;
	--accent: #2563eb;
	--accent-light: #3b82f6;
	--accent-dark: #1d4ed8;
	--primary: #2563eb;
	--primary-hover: #1d4ed8;
	--primary-text: #ffffff;
	--accent-glow: rgba(37, 99, 235, 0.22);
	--success: #059669;
	--success-soft: rgba(5, 150, 105, 0.1);
	--warm: #f59e0b;
	--border: #e2e8f0;
	--radius: 16px;
	--radius-lg: 24px;
	--shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
	--shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
	--font-display: "Outfit", system-ui, sans-serif;
	--font-body: "Source Sans 3", system-ui, sans-serif;
	--max: 1140px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text);
	background: var(--bg);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
	color: var(--accent-dark);
}

.container {
	width: min(100% - 2rem, var(--max));
	margin-inline: auto;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-header .inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--text);
}

.logo-mark {
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary) 100%);
	display: grid;
	place-items: center;
	font-size: 1.1rem;
	box-shadow: 0 4px 14px var(--accent-glow);
	color: var(--primary-text);
}

.nav-main {
	display: flex;
	align-items: center;
	gap: 1.35rem;
}

.nav-main a:not(.btn) {
	color: var(--text-muted);
	font-size: 0.9375rem;
	font-weight: 500;
}

.nav-main a:not(.btn):hover {
	color: var(--text);
}

.nav-toggle {
	display: none;
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--text);
	padding: 0.4rem 0.65rem;
	border-radius: 10px;
	cursor: pointer;
	font-size: 1.25rem;
	line-height: 1;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.4rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.9375rem;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary) 100%);
	color: var(--primary-text);
	box-shadow: 0 6px 20px var(--accent-glow);
	font-weight: 700;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.nav-main .btn-primary {
	color: var(--primary-text);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px var(--accent-glow);
}

.btn-ghost {
	background: var(--surface);
	color: var(--text);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.btn-ghost:hover {
	background: var(--surface-hover);
	color: var(--text);
	border-color: #cbd5e1;
}

.btn-lg {
	padding: 0.95rem 1.75rem;
	font-size: 1rem;
}

/* Hero */
.hero {
	position: relative;
	padding: 3.5rem 0 4rem;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 70% 55% at 85% 15%, rgba(59, 130, 246, 0.12) 0%, transparent 55%),
		radial-gradient(ellipse 45% 35% at 5% 90%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 3rem;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
	border: 1px solid rgba(37, 99, 235, 0.18);
	color: var(--accent-dark);
	font-size: 0.8125rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
}

.hero-badge span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	animation: pulse 2s ease infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(2.35rem, 5vw, 3.4rem);
	line-height: 1.1;
	font-weight: 800;
	margin: 0 0 1.25rem;
	letter-spacing: -0.03em;
	color: var(--text);
}

.hero h1 em {
	font-style: normal;
	background: linear-gradient(90deg, var(--accent), #6366f1);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-lead {
	font-size: 1.125rem;
	color: var(--text-muted);
	max-width: 34rem;
	margin: 0 0 2rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 2.5rem;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	padding-top: 0.5rem;
	border-top: 1px solid var(--border);
}

.stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 800;
	color: var(--text);
}

.stat span {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.hero-visual {
	position: relative;
}

.hero-image-wrap {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border);
}

.hero-image-wrap img {
	width: 100%;
	aspect-ratio: 4 / 3.2;
	object-fit: cover;
}

.hero-image-card {
	position: absolute;
	bottom: 1.25rem;
	left: 1.25rem;
	right: 1.25rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 0.9rem 1rem;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 0.85rem;
	animation: float 4s ease-in-out infinite;
}

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

.hero-image-card-icon {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	border-radius: 12px;
	background: rgba(37, 99, 235, 0.1);
	color: var(--accent);
	display: grid;
	place-items: center;
	font-size: 1.2rem;
}

.hero-image-card strong {
	display: block;
	font-size: 0.9rem;
	color: var(--text);
}

.hero-image-card span {
	display: block;
	font-size: 0.8125rem;
	color: var(--text-muted);
	margin-top: 0.15rem;
}

/* Showcase strip */
.showcase-strip {
	padding: 0 0 4rem;
	margin-top: -0.5rem;
}

.showcase-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 1rem;
}

.showcase-item {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	background: var(--surface);
}

.showcase-item img {
	width: 100%;
	height: 100%;
	min-height: 180px;
	object-fit: cover;
	aspect-ratio: 16 / 11;
}

.showcase-item--wide img {
	aspect-ratio: 16 / 10;
	min-height: 220px;
}

.showcase-item figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 2rem 1rem 0.85rem;
	background: linear-gradient(transparent, rgba(15, 23, 42, 0.72));
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 600;
}

/* Sections */
section {
	padding: 4.5rem 0;
}

.section-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3rem;
}

.section-head--left {
	text-align: left;
	margin-left: 0;
	margin-right: 0;
}

.section-label {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent);
	margin-bottom: 0.75rem;
}

.section-head h2 {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 3.5vw, 2.5rem);
	font-weight: 800;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
	color: var(--text);
}

.section-head p {
	color: var(--text-muted);
	margin: 0;
	font-size: 1.0625rem;
}

.features {
	background: var(--bg-soft);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

/* Bento grid */
.bento-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.bento-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: var(--shadow);
}

.bento-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

.bento-span-2 {
	grid-column: span 2;
}

.bento-card--image {
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.bento-image {
	overflow: hidden;
}

.bento-image img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.bento-card--image:hover .bento-image img {
	transform: scale(1.04);
}

.bento-body {
	padding: 1.25rem 1.5rem 1.5rem;
}

.bento-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(37, 99, 235, 0.08);
	display: grid;
	place-items: center;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.bento-card h3,
.bento-body h3 {
	font-family: var(--font-display);
	font-size: 1.0625rem;
	font-weight: 700;
	margin: 0 0 0.45rem;
}

.bento-card p,
.bento-body p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--text-muted);
}

/* Automatización */
.automation {
	background: var(--bg);
}

.automation-layout {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 3rem;
	align-items: start;
}

.automation-visual {
	position: relative;
	min-height: 420px;
}

.automation-image-main {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-lg);
}

.automation-image-main img {
	width: 100%;
	aspect-ratio: 4 / 3.5;
	object-fit: cover;
}

.automation-image-secondary {
	position: absolute;
	right: -1rem;
	bottom: -1.5rem;
	width: 48%;
	border-radius: var(--radius);
	overflow: hidden;
	border: 4px solid var(--bg-soft);
	box-shadow: var(--shadow-lg);
}

.automation-image-secondary img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.automation-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.automation-item {
	display: flex;
	gap: 1rem;
	padding: 1.15rem 1.25rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	transition: border-color 0.2s ease;
}

.automation-item:hover {
	border-color: rgba(37, 99, 235, 0.35);
}

.automation-item-num {
	font-family: var(--font-display);
	font-size: 0.8125rem;
	font-weight: 800;
	color: var(--accent);
	flex-shrink: 0;
	width: 2rem;
}

.automation-item h3 {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
}

.automation-item p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.automation-note {
	padding: 1rem 1.25rem;
	border-radius: var(--radius);
	background: rgba(37, 99, 235, 0.06);
	border: 1px solid rgba(37, 99, 235, 0.15);
}

.automation-note p {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.9375rem;
}

/* Roles */
.roles-section {
	background: var(--bg-soft);
	border-top: 1px solid var(--border);
}

.roles-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.role-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.role-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.role-card-image {
	overflow: hidden;
}

.role-card-image img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.role-card:hover .role-card-image img {
	transform: scale(1.05);
}

.role-card-body {
	padding: 1.15rem 1.25rem 1.35rem;
	text-align: center;
}

.role-card-body h3 {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
}

.role-card-body p {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--text-muted);
}

/* Steps */
.steps-section {
	padding-top: 0;
	padding-bottom: 4.5rem;
}

.steps-banner {
	margin-bottom: 3rem;
}

.steps-banner-inner {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-lg);
}

.steps-banner-inner > img {
	width: 100%;
	min-height: 280px;
	max-height: 360px;
	object-fit: cover;
}

.steps-banner-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2.5rem;
	background: linear-gradient(90deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.35) 70%, transparent 100%);
	color: #fff;
}

.steps-banner-overlay .section-label {
	color: #93c5fd;
}

.steps-banner-overlay h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	font-weight: 800;
	margin: 0 0 0.5rem;
	letter-spacing: -0.02em;
	max-width: 520px;
}

.steps-banner-overlay p {
	margin: 0;
	max-width: 480px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.0625rem;
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	counter-reset: step;
}

.steps-4 {
	grid-template-columns: repeat(4, 1fr);
}

.step {
	position: relative;
	padding: 1.5rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding-top: 3.75rem;
}

.step::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-light), var(--primary));
	color: var(--primary-text);
	font-family: var(--font-display);
	font-weight: 800;
	display: grid;
	place-items: center;
	font-size: 0.9375rem;
}

.step h3 {
	font-family: var(--font-display);
	font-size: 1.0625rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.step p {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* Contact */
.contact {
	padding: 4.5rem 0 2rem;
	background: linear-gradient(180deg, var(--bg) 0%, #eef2ff 100%);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 2.5rem;
	align-items: start;
}

.contact-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 1.5rem;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-lg);
}

.contact-image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.contact-intro h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

.contact-intro p {
	color: var(--text-muted);
	margin: 0 0 1.5rem;
	font-size: 1.0625rem;
}

.contact-list {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
}

.contact-list li {
	margin-bottom: 0.65rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.contact-list strong {
	color: var(--text);
}

.contact-form {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	box-shadow: var(--shadow-lg);
}

.contact-form-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 1.25rem;
}

.form-row {
	margin-bottom: 1rem;
}

.form-row label {
	display: block;
	font-family: var(--font-display);
	font-size: 0.8125rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
	color: var(--text-muted);
}

.form-row input,
.form-row textarea {
	width: 100%;
	padding: 0.75rem 0.9rem;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 0.9375rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
	outline: none;
	border-color: var(--accent-light);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-row textarea {
	resize: vertical;
	min-height: 120px;
}

.form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.btn-block {
	width: 100%;
}

.contact-alert {
	margin-bottom: 1rem;
	padding: 0.75rem 0.9rem;
	border-radius: 10px;
	font-size: 0.875rem;
}

.contact-alert.is-success {
	background: var(--success-soft);
	border: 1px solid rgba(5, 150, 105, 0.3);
	color: var(--success);
}

.contact-alert.is-error {
	background: rgba(239, 68, 68, 0.08);
	border: 1px solid rgba(239, 68, 68, 0.25);
	color: #dc2626;
}

.contact-form.is-loading {
	opacity: 0.75;
	pointer-events: none;
}

.photo-credits {
	padding: 0 0 2.5rem;
	text-align: center;
	font-size: 0.75rem;
	color: var(--text-muted);
}

.photo-credits a {
	color: var(--text-muted);
	text-decoration: underline;
}

/* Footer */
.site-footer {
	padding: 3rem 0 2rem;
	background: var(--surface);
	border-top: 1px solid var(--border);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.9375rem;
	max-width: 300px;
	margin: 0.75rem 0 0;
	line-height: 1.6;
}

.footer-col h4 {
	font-family: var(--font-display);
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	margin: 0 0 1rem;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-col li {
	margin-bottom: 0.5rem;
}

.footer-col a {
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.footer-col a:hover {
	color: var(--text);
}

.footer-bottom {
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.footer-legal a {
	color: var(--text-muted);
	margin-left: 1.25rem;
}

.footer-legal a:first-child {
	margin-left: 0;
}

/* Precios / planes */
.pricing-hero {
	padding: 3.5rem 0 2rem;
	text-align: center;
}

.pricing-highlight {
	padding: 0 0 2rem;
}

.pricing-highlight-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 1.25rem;
}

.pricing-highlight-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.5rem 1.65rem;
	box-shadow: var(--shadow);
}

.pricing-highlight-card--accent {
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.07) 0%, rgba(37, 99, 235, 0.02) 100%);
	border-color: rgba(37, 99, 235, 0.22);
}

.pricing-highlight-card h2 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	margin: 0 0 0.65rem;
}

.pricing-highlight-card p {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

.pricing-highlight-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.95rem;
	color: var(--text-muted);
}

.pricing-highlight-card li {
	position: relative;
	padding: 0.35rem 0 0.35rem 1.25rem;
}

.pricing-highlight-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--success);
	font-weight: 700;
}

.pricing-capacity {
	margin: 0 0 0.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--accent);
}

.pricing-capacity--events {
	color: var(--warm);
}

.pricing-grid--three {
	grid-template-columns: repeat(3, 1fr);
}

.pricing-card--events {
	margin-top: 1.5rem;
	border-color: rgba(245, 158, 11, 0.35);
	background: linear-gradient(180deg, rgba(245, 158, 11, 0.06) 0%, var(--surface) 45%);
}

.pricing-events-layout {
	display: grid;
	grid-template-columns: minmax(240px, 340px) 1fr auto;
	gap: 1.5rem 2rem;
	align-items: start;
}

.pricing-events-layout .pricing-card-head {
	margin: 0;
}

.pricing-events-layout .pricing-price {
	margin-bottom: 0;
}

.pricing-events-layout > .btn {
	align-self: center;
	white-space: nowrap;
}

.pricing-features--columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 1rem;
	margin-bottom: 0;
}

.pricing-common-grid code {
	font-size: 0.88em;
	background: rgba(37, 99, 235, 0.08);
	padding: 0.1rem 0.35rem;
	border-radius: 4px;
}

.pricing-table tbody td:not(.is-yes):not(.is-no) {
	color: var(--text);
	font-weight: 500;
	font-size: 0.88rem;
}

.pricing-hero h1 {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4vw, 2.65rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0.5rem 0 1rem;
	color: var(--text);
}

.pricing-hero-lead {
	max-width: 42rem;
	margin: 0 auto;
	font-size: 1.08rem;
	color: var(--text-muted);
}

.pricing-plans {
	padding: 1rem 0 3rem;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	align-items: stretch;
}

.pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.75rem 1.5rem 1.5rem;
	box-shadow: var(--shadow);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.pricing-card:hover {
	border-color: rgba(37, 99, 235, 0.35);
	box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
	border-color: var(--accent);
	box-shadow: 0 12px 40px var(--accent-glow);
	transform: translateY(-4px);
}

.pricing-badge {
	position: absolute;
	top: -0.65rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: var(--primary-text);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.3rem 0.85rem;
	border-radius: 999px;
	white-space: nowrap;
}

.pricing-card-head h2 {
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
}

.pricing-tagline {
	margin: 0 0 0.5rem;
	font-weight: 600;
	color: var(--accent);
	font-size: 0.95rem;
}

.pricing-audience {
	margin: 0 0 1.25rem;
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.45;
}

.pricing-price {
	padding: 1rem 0;
	margin-bottom: 1rem;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.pricing-price-label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	margin-bottom: 0.25rem;
}

.pricing-price-value {
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 800;
	color: var(--text);
}

.pricing-includes {
	margin: 0 0 0.75rem;
	font-size: 0.88rem;
	color: var(--text-muted);
}

.pricing-features {
	flex: 1;
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
	font-size: 0.92rem;
	line-height: 1.45;
}

.pricing-features li {
	position: relative;
	padding: 0.35rem 0 0.35rem 1.35rem;
	border-bottom: 1px solid rgba(226, 232, 240, 0.65);
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--success);
	font-weight: 700;
}

.pricing-common {
	padding: 2.5rem 0;
	background: var(--surface);
	border-block: 1px solid var(--border);
}

.pricing-common-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem 1.5rem;
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
}

.pricing-common-grid li {
	position: relative;
	padding-left: 1.25rem;
	font-size: 0.95rem;
	color: var(--text-muted);
}

.pricing-common-grid li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
}

.pricing-compare {
	padding: 3rem 0;
}

.pricing-table-wrap {
	overflow-x: auto;
	margin-top: 1.5rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.pricing-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
	min-width: 520px;
}

.pricing-table th,
.pricing-table td {
	padding: 0.85rem 1rem;
	text-align: center;
	border-bottom: 1px solid var(--border);
}

.pricing-table th:first-child,
.pricing-table td:first-child {
	text-align: left;
	font-weight: 500;
}

.pricing-table thead th {
	background: var(--bg);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.88rem;
}

.pricing-table tbody tr:last-child td {
	border-bottom: none;
}

.pricing-table td:not(:first-child) {
	text-align: center;
}

.pricing-table tbody td.is-yes {
	color: var(--success);
	font-weight: 700;
	font-size: 1rem;
}

.pricing-table tbody td.is-no {
	color: var(--text-muted);
	font-weight: 400;
	font-size: 0.95rem;
}

.pricing-cta {
	padding: 3rem 0 4rem;
}

.pricing-cta-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 2rem 2.25rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.02) 100%);
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: var(--radius-lg);
}

.pricing-cta-inner h2 {
	font-family: var(--font-display);
	font-size: 1.45rem;
	margin: 0 0 0.5rem;
}

.pricing-cta-inner p {
	margin: 0;
	max-width: 36rem;
	color: var(--text-muted);
}

.pricing-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

@media (max-width: 960px) {
	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-lead {
		margin-inline: auto;
	}

	.hero-actions,
	.hero-stats {
		justify-content: center;
	}

	.hero-visual {
		max-width: 520px;
		margin-inline: auto;
	}

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

	.showcase-item--wide {
		grid-column: span 2;
	}

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

	.bento-span-2 {
		grid-column: span 2;
	}

	.pricing-grid,
	.pricing-grid--three {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-inline: auto;
	}

	.pricing-highlight-grid {
		grid-template-columns: 1fr;
	}

	.pricing-events-layout {
		grid-template-columns: 1fr;
	}

	.pricing-features--columns {
		grid-template-columns: 1fr;
	}

	.pricing-events-layout > .btn {
		width: 100%;
	}

	.pricing-card--featured {
		transform: none;
		order: -1;
	}

	.pricing-common-grid {
		grid-template-columns: 1fr 1fr;
	}

	.automation-layout {
		grid-template-columns: 1fr;
	}

	.automation-visual {
		min-height: auto;
		max-width: 480px;
		margin-inline: auto;
	}

	.automation-image-secondary {
		right: 0.5rem;
		bottom: -1rem;
		width: 42%;
	}

	.section-head--left {
		text-align: center;
		margin-inline: auto;
	}

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

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

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

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

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

@media (max-width: 640px) {
	.nav-main {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		padding: 1rem;
		background: var(--surface);
		border-bottom: 1px solid var(--border);
		box-shadow: var(--shadow-lg);
	}

	.nav-main.is-open {
		display: flex;
	}

	.nav-toggle {
		display: block;
	}

	.showcase-grid,
	.bento-grid,
	.bento-span-2,
	.roles-grid,
	.steps-4 {
		grid-template-columns: 1fr;
	}

	.bento-span-2 {
		grid-column: span 1;
	}

	.steps-banner-overlay {
		padding: 1.5rem;
		background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 55%);
		justify-content: flex-end;
	}

	.pricing-common-grid {
		grid-template-columns: 1fr;
	}

	.pricing-cta-inner {
		padding: 1.5rem;
	}

	.pricing-cta-actions {
		width: 100%;
	}

	.pricing-cta-actions .btn {
		flex: 1;
		min-width: 140px;
	}

	.footer-legal a {
		display: block;
		margin: 0.35rem 0 0;
	}
}

/* Directorio público */
.directory-hero {
	padding: 3.5rem 0 2rem;
	text-align: center;
}

.directory-hero h1 {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4vw, 2.5rem);
	margin: 0.5rem 0 0.75rem;
	line-height: 1.15;
}

.directory-hero-lead {
	max-width: 42rem;
	margin: 0 auto;
	color: var(--text-muted);
	font-size: 1.05rem;
	line-height: 1.6;
}

.directory-list {
	padding: 0 0 3rem;
}

.directory-grid {
	display: grid;
	gap: 1.25rem;
}

.directory-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.directory-card-head {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--border);
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
}

.directory-empresa-link {
	color: inherit;
	text-decoration: none;
}

.directory-empresa-link:hover {
	color: var(--primary);
	text-decoration: underline;
}

.directory-card-head h2 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	margin: 0;
}

.directory-card-body {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 1.5rem;
	padding: 1.35rem 1.5rem 1.5rem;
}

.directory-section h3 {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin: 0 0 0.75rem;
}

.directory-muted {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.92rem;
}

.directory-tags {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.directory-tags li {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.65rem;
}

.directory-tag {
	display: inline-block;
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
	color: var(--primary);
	font-size: 0.88rem;
	font-weight: 600;
}

.directory-tag-meta {
	font-size: 0.82rem;
	color: var(--text-muted);
}

.directory-professionals {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

.directory-professional {
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--border);
}

.directory-professional:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.directory-professional-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.75rem;
}

.directory-professional-link {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
}

.directory-professional-link:hover {
	text-decoration: underline;
}

.directory-professional-badge {
	display: inline-block;
	padding: 0.12rem 0.45rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.12);
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.directory-professional-name {
	font-weight: 600;
}

.directory-professional-specialty {
	font-size: 0.9rem;
	color: var(--text-muted);
}

.directory-professional-spaces {
	margin: 0.35rem 0 0;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.directory-empty {
	text-align: center;
	padding: 2.5rem 1.5rem;
	border: 1px dashed var(--border);
	border-radius: var(--radius-lg);
	color: var(--text-muted);
}

.directory-cta {
	padding: 0 0 3.5rem;
}

.directory-cta-inner {
	text-align: center;
	padding: 2rem 1.5rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.directory-cta-inner h2 {
	font-family: var(--font-display);
	font-size: 1.35rem;
	margin: 0 0 0.5rem;
}

.directory-cta-inner p {
	margin: 0 0 1.25rem;
	color: var(--text-muted);
}

.directory-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

@media (max-width: 768px) {
	.directory-card-body {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}
