/* =============================================
   AlejoAyaM – Brand Design System
   Mobile-first | Vanilla CSS
   ============================================= */

/* -- CSS Variables (Marca AlejoAyaM) ---------- */
:root {
	/* Core colors */
	--blue: #1268b3;
	/* AlejoAyaM Blue – acento, botones, links */
	--squid-ink: #1c2434;
	/* Squid Ink – fondos oscuros, bloques énfasis */
	--rich-black: #0a0d13;
	/* Rich Black – texto principal */
	--white-smoke: #f5f5f5;
	/* White Smoke – fondo base claro */
	--white: #ffffff;

	/* Extended (uso moderado) */
	--blue-deep: #0a3558;
	--emerald: #43a047;
	--orange: #ff9800;
	--pearl: #e0e0e0;
	--carbon: #212121;

	/* Tipografía */
	--font-title: 'Poppins', sans-serif;
	--font-body: 'Public Sans', sans-serif;

	/* Tamaños de texto */
	--fs-h1-base: clamp(1.75rem, 5vw, 3rem);
	/* Hero H1 */
	--fs-h2-base: clamp(1.375rem, 3vw, 2rem);
	/* Section H2 */
	--fs-h3-base: 1.25rem;
	--fs-body: 1rem;
	--fs-sm: 0.875rem;

	/* Espaciados */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 2rem;
	--space-lg: 3.5rem;
	--space-xl: 6rem;

	/* Contenedor */
	--max-w: 1140px;
	--padding-x: 1.25rem;

	/* Bordes / sombras */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--shadow-card: 0 2px 16px rgba(10, 13, 19, 0.08);
	--shadow-hover: 0 8px 32px rgba(10, 13, 19, 0.14);

	/* Transición */
	--transition: all 0.28s ease;

	/* ─── Semantic theme tokens (light defaults) ─── */
	color-scheme: light dark;
	--bg-page: var(--white-smoke);
	--bg-card: var(--white);
	--bg-header: var(--white-smoke);
	--bg-header-blur: rgba(245, 245, 245, 0.95);
	--bg-mobile-menu: var(--white-smoke);
	--bg-input: var(--white-smoke);
	--bg-form: var(--white);
	--color-text: var(--rich-black);
	--color-text-soft: #3d4451;
	--color-text-card: var(--carbon);
	--color-text-muted: #6b7280;
	--color-border: var(--pearl);
}

/* =============================================
   DARK MODE – auto (OS pref) + manual toggle
   ============================================= */
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--bg-page: #0d1018;
		--bg-card: #1c2434;
		--bg-header: #0d1018;
		--bg-header-blur: rgba(13, 16, 24, 0.97);
		--bg-mobile-menu: #1c2434;
		--bg-input: #0a0d13;
		--bg-form: #1c2434;
		--color-text: #f0f0f0;
		--color-text-soft: rgba(240, 240, 240, 0.78);
		--color-text-card: rgba(240, 240, 240, 0.72);
		--color-text-muted: rgba(240, 240, 240, 0.45);
		--color-border: rgba(255, 255, 255, 0.1);
		--shadow-card: 0 2px 16px rgba(0, 0, 0, 0.4);
		--shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.6);
	}
}

/* Manual dark override */
[data-theme="dark"] {
	--bg-page: #0d1018;
	--bg-card: #1c2434;
	--bg-header: #0d1018;
	--bg-header-blur: rgba(13, 16, 24, 0.97);
	--bg-mobile-menu: #1c2434;
	--bg-input: #0a0d13;
	--bg-form: #1c2434;
	--color-text: #f0f0f0;
	--color-text-soft: rgba(240, 240, 240, 0.78);
	--color-text-card: rgba(240, 240, 240, 0.72);
	--color-text-muted: rgba(240, 240, 240, 0.45);
	--color-border: rgba(255, 255, 255, 0.1);
	--shadow-card: 0 2px 16px rgba(0, 0, 0, 0.4);
	--shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* Manual light override (overrides OS dark preference) */
[data-theme="light"] {
	--bg-page: #f5f5f5;
	--bg-card: #ffffff;
	--bg-header: #f5f5f5;
	--bg-header-blur: rgba(245, 245, 245, 0.95);
	--bg-mobile-menu: #f5f5f5;
	--bg-input: #f5f5f5;
	--bg-form: #ffffff;
	--color-text: #0a0d13;
	--color-text-soft: #3d4451;
	--color-text-card: #212121;
	--color-text-muted: #6b7280;
	--color-border: #e0e0e0;
	--shadow-card: 0 2px 16px rgba(10, 13, 19, 0.08);
	--shadow-hover: 0 8px 32px rgba(10, 13, 19, 0.14);
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:focus {
	outline: none;
}

:focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 3px;
	border-radius: var(--radius-sm);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: var(--fs-body);
	color: var(--color-text);
	background-color: var(--bg-page);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 var(--padding-x);
}

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
h1,
h2,
h3,
h4 {
	font-family: var(--font-title);
	line-height: 1.15;
	color: var(--color-text);
}

/* Section title lines */
.section-title {
	font-size: var(--fs-h2-base);
	font-weight: 700;
	margin-bottom: var(--space-lg);
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	background: var(--blue);
	margin-top: 0.6rem;
	border-radius: 2px;
}

/* Light variant (dark backgrounds) */
.section-title-light {
	font-family: var(--font-title);
	font-size: var(--fs-h2-base);
	font-weight: 700;
	color: var(--white);
	margin-bottom: var(--space-lg);
	position: relative;
	display: inline-block;
}

.section-title-light::after {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	background: var(--blue);
	margin-top: 0.6rem;
	border-radius: 2px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-title);
	font-size: 1rem;
	font-weight: 600;
	padding: 0.85rem 1.75rem;
	border-radius: var(--radius-sm);
	border: 2px solid var(--blue);
	cursor: pointer;
	transition: var(--transition);
	line-height: 1;
	white-space: nowrap;
}

.btn-sm {
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
}

/* Primary – filled blue */
.btn-primary {
	background-color: var(--blue);
	color: var(--white);
	border-color: var(--blue);
}

.btn-primary:hover {
	background-color: var(--blue-deep);
	border-color: var(--blue-deep);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(18, 104, 179, 0.35);
}

/* Outline – transparent + blue border */
.btn-outline {
	background-color: transparent;
	color: var(--blue);
	border-color: var(--blue);
}

.btn-outline:hover {
	background-color: var(--blue);
	color: var(--white);
	transform: translateY(-2px);
}

/* Full width */
.btn-full {
	width: 100%;
}

/* Nav mini button */
.btn-nav {
	font-family: var(--font-title);
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.6rem 1.25rem;
	background-color: var(--blue);
	color: var(--white);
	border: 2px solid var(--blue);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.btn-nav:hover {
	background-color: var(--blue-deep);
	border-color: var(--blue-deep);
}

/* Store button – hero (llamativo, acento naranja) */
.btn-store {
	background: linear-gradient(135deg, #ff7c00 0%, #ffb300 100%);
	color: var(--white);
	border-color: transparent;
	font-family: var(--font-title);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	box-shadow: 0 4px 18px rgba(255, 124, 0, 0.35);
	position: relative;
	overflow: hidden;
}

.btn-store::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
	pointer-events: none;
}

.btn-store:hover {
	background: linear-gradient(135deg, #e06e00 0%, #f0a000 100%);
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(255, 124, 0, 0.5);
}

/* Store button – nav compact */
.btn-store-nav {
	font-family: var(--font-title);
	font-size: 0.875rem;
	font-weight: 700;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, #ff7c00 0%, #ffb300 100%);
	color: var(--white);
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	box-shadow: 0 2px 10px rgba(255, 124, 0, 0.3);
}

.btn-store-nav:hover {
	background: linear-gradient(135deg, #e06e00 0%, #f0a000 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(255, 124, 0, 0.45);
}

/* Mobile store link highlight */
.mobile-link-store {
	color: #ff7c00 !important;
	font-weight: 600;
}

.mobile-link-store:hover {
	color: #e06e00 !important;
	background: rgba(255, 124, 0, 0.06) !important;
}

/* =============================================
   HEADER / NAV
   ============================================= */

/* Sticky header */
.header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: var(--bg-header);
	border-bottom: 1px solid transparent;
	transition:
		box-shadow 0.28s ease,
		border-color 0.28s ease,
		background-color 0.28s ease;
}

.header.scrolled {
	background-color: var(--bg-header-blur);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom-color: var(--color-border);
	box-shadow: 0 2px 16px rgba(10, 13, 19, 0.06);
}

/* Hamburger button (improved visual + accessible focus) */
.hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 10px;
	padding: 6px;
	transition:
		background 0.22s ease,
		box-shadow 0.22s ease,
		transform 0.18s ease;
}

.hamburger:hover {
	background: rgba(18, 104, 179, 0.06);
}

.hamburger span {
	display: block;
	height: 3px;
	width: 18px;
	background: var(--color-text);
	border-radius: 3px;
	transition:
		transform 0.28s var(--transition),
		opacity 0.16s var(--transition),
		background 0.2s ease;
}

.hamburger.open {
	background: rgba(18, 104, 179, 0.12);
	box-shadow: 0 6px 18px rgba(18, 104, 179, 0.12);
	transform: translateY(-1px);
}

.hamburger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Nav container */
.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.875rem var(--padding-x);
}

.nav.container {
	max-width: 1360px;
	/* Wider to push logo left and menu right */
}

.logo img {
	height: 72px;
	width: auto;
	object-fit: contain;
	max-height: 72px;
}

/* Layout order inside nav: logo, nav-links, hamburger (explicit for robustness) */
.nav>.logo {
	order: 0;
	flex: 0 0 auto;
}

.nav>.nav-links {
	order: 1;
	flex: 0 0 auto;
	margin-left: auto;
}

.nav>.hamburger {
	order: 2;
	flex: 0 0 auto;
	margin-left: 0;
}

/* Desktop nav */
.nav-links {
	display: none;
	align-items: center;
	gap: 2rem;
}

.nav-link {
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--color-text);
	position: relative;
	transition: var(--transition);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--blue);
	transition: var(--transition);
}

.nav-link:hover {
	color: var(--blue);
}

.nav-link:hover::after {
	width: 100%;
}

/* (hamburger open-state styles are defined above with the full .hamburger block) */

/* Mobile menu */
.mobile-menu {
	display: none;
	background: var(--bg-mobile-menu);
	border-top: 1px solid var(--color-border);
	padding: var(--space-sm) 0;
}

.mobile-menu.open {
	display: block;
}

.mobile-menu ul {
	display: flex;
	flex-direction: column;
}

.mobile-link {
	display: block;
	padding: 0.85rem var(--padding-x);
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--color-text);
	border-bottom: 1px solid var(--color-border);
	transition: var(--transition);
}

.mobile-link:hover {
	color: var(--blue);
	background: var(--bg-card);
}

/* =============================================
   HERO SECTION
   ============================================= */
/* HERO SECTION */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-color: var(--bg-page);
	overflow: hidden;
	padding-top: 80px;
	/* header offset */
}

#page-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	pointer-events: none;
	opacity: 0.8;
}

/* Background decorative shape */
.hero-bg-shape {
	position: absolute;
	top: 0;
	right: 0;
	width: 45%;
	height: 100%;
	background: var(--squid-ink);
	clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
	z-index: 0;
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
	padding-top: var(--space-xl);
	padding-bottom: var(--space-xl);
}

/* Hero text */
.hero-text {
	max-width: 600px;
}

.hero-title {
	font-size: var(--fs-h1-base);
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: var(--space-md);
	line-height: 1.18;
}

.hero-subtitle {
	font-size: 1.0625rem;
	color: var(--color-text-soft);
	line-height: 1.7;
	margin-bottom: var(--space-md);
	max-width: 520px;
	text-align: justify;
	hyphens: auto;
}

/* =============================================
   JUSTIFIED LONG-TEXT BLOCKS
   ============================================= */
.package-desc,
.step-desc,
.testimonio-text,
.sobre-body,
.contacto-desc,
.faq-answer p,
.benefit-item p,
.footer-tagline {
	text-align: justify;
	hyphens: auto;
}

.hero-cta-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

.hero-note {
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
	font-style: italic;
}

/* Hero mockup */
.hero-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-mockup {
	width: 280px;
	height: 320px;
	background: rgba(18, 104, 179, 0.15);
	border: 2px solid var(--blue);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.mockup-inner {
	text-align: center;
	padding: var(--space-md);
}

.mockup-tag {
	display: block;
	font-family: var(--font-title);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: var(--space-xs);
}

.mockup-label {
	font-size: var(--fs-sm);
	color: rgba(245, 245, 245, 0.8);
	letter-spacing: 0.03em;
	margin-top: 0.5rem;
}

/* Logo inside mockup */
.mockup-logo {
	width: 140px;
	height: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
	display: block;
	margin: 0 auto;
}

.mockup-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: var(--space-md);
}

.mockup-dots span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	opacity: 1;
}

.mockup-dots span:nth-child(4) {
	box-sizing: border-box;
}

/* =============================================
   SECTION WRAPPERS (alternating backgrounds)
   ============================================= */
.section-light {
	background-color: var(--bg-page);
	padding: var(--space-xl) 0;
}

.section-mid {
	background-color: var(--bg-card);
	padding: var(--space-xl) 0;
}

.section-dark {
	background-color: var(--squid-ink);
	padding: var(--space-xl) 0;
}

/* =============================================
   "ESTO ES PARA TI SI…"
   ============================================= */
.para-ti {
	border-top: 1px solid var(--pearl);
}

.benefits-list {
	display: grid;
	gap: 1.25rem;
	margin-top: var(--space-md);
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: var(--bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 1.25rem 1.5rem;
	box-shadow: var(--shadow-card);
	transition: var(--transition);
}

.benefit-item:hover {
	box-shadow: var(--shadow-hover);
	border-color: var(--blue);
	transform: translateY(-2px);
}

.benefit-icon {
	color: var(--blue);
	font-size: 1.1rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.benefit-item p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text-card);
}

/* =============================================
   PAQUETES / SERVICIOS
   ============================================= */
.packages-grid {
	display: grid;
	gap: var(--space-md);
}

.package-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-lg);
	padding: 2rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
	transition: var(--transition);
	position: relative;
}

.package-card:hover {
	border-color: var(--blue);
	background: rgba(18, 104, 179, 0.08);
	transform: translateY(-4px);
}

/* Featured card */
.package-card.featured {
	border-color: var(--blue);
	background: rgba(18, 104, 179, 0.12);
	box-shadow:
		0 0 0 1px var(--blue),
		0 8px 32px rgba(18, 104, 179, 0.25);
}

.featured-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--blue);
	color: var(--white);
	font-family: var(--font-title);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 1rem;
	border-radius: 20px;
	white-space: nowrap;
}

.package-header {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.package-num {
	font-family: var(--font-title);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: 0.05em;
}

.package-name {
	font-family: var(--font-title);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--white);
}

.package-desc {
	font-size: 0.9375rem;
	color: rgba(245, 245, 245, 0.75);
	line-height: 1.65;
}

.package-includes {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
}

.package-includes li {
	font-size: 0.875rem;
	color: rgba(245, 245, 245, 0.85);
	padding-left: 1.25rem;
	position: relative;
	line-height: 1.5;
}

.package-includes li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--emerald);
	font-weight: 700;
}

.package-footer {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	padding-top: var(--space-sm);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.package-price {
	font-family: var(--font-title);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
}

/* Light outline button for dark bg */
.package-card .btn-outline {
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.35);
}

.package-card .btn-outline:hover {
	background-color: var(--white);
	color: var(--squid-ink);
	border-color: var(--white);
}

/* =============================================
   PORTFOLIO
   ============================================= */
/* The section uses .section-dark so it inherits squid-ink background + padding */

.portfolio-subtitle {
	font-size: 1rem;
	color: rgba(245, 245, 245, 0.7);
	margin-top: -2rem;
	margin-bottom: var(--space-lg);
	line-height: 1.65;
}

.portfolio-subtitle em {
	color: var(--blue);
	font-style: italic;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: var(--space-md);
}

.portfolio-item {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 20px rgba(10, 13, 19, 0.35);
	cursor: pointer;
	transition: var(--transition);
}

.portfolio-item:hover {
	border-color: var(--blue);
	box-shadow: 0 0 0 1px var(--blue), 0 8px 32px rgba(18, 104, 179, 0.3);
	transform: translateY(-4px);
}

.portfolio-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.portfolio-item:focus-within .portfolio-img,
.portfolio-item:hover .portfolio-img {
	transform: scale(1.06);
}

.portfolio-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(10, 13, 19, 0.88) 0%,
			rgba(28, 36, 52, 0.45) 50%,
			rgba(10, 13, 19, 0) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.32s ease;
}

.portfolio-item:focus-within .portfolio-overlay,
.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
	pointer-events: auto;
}

.portfolio-title {
	font-family: var(--font-title);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.3rem;
	transform: translateY(10px);
	transition: transform 0.32s ease;
}

.portfolio-category {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--white);
	background: var(--blue);
	padding: 0.15rem 0.65rem;
	border-radius: 20px;
	letter-spacing: 0.03em;
	transform: translateY(10px);
	transition: transform 0.32s ease 0.05s;
}

.portfolio-item:focus-within .portfolio-title,
.portfolio-item:hover .portfolio-title,
.portfolio-item:focus-within .portfolio-category,
.portfolio-item:hover .portfolio-category {
	transform: translateY(0);
}

/* =============================================
   PROCESO
   ============================================= */
.steps-grid {
	display: grid;
	gap: var(--space-md);
	counter-reset: steps;
}

.step-card {
	background: var(--bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 1.75rem;
	box-shadow: var(--shadow-card);
	transition: var(--transition);
	border-left: 4px solid var(--blue);
}

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

.step-num {
	display: inline-block;
	font-family: var(--font-title);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

.step-title {
	font-family: var(--font-title);
	font-size: var(--fs-h3-base);
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.5rem;
}

.step-desc {
	font-size: 0.9375rem;
	color: var(--color-text-card);
	line-height: 1.65;
}

/* =============================================
   TESTIMONIOS
   ============================================= */
.testimonios-grid {
	display: grid;
	gap: var(--space-md);
}

.testimonio-card {
	background: var(--bg-page);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-card);
	transition: var(--transition);
	position: relative;
}

.testimonio-card::before {
	content: '"';
	position: absolute;
	top: 1rem;
	left: 1.5rem;
	font-size: 4rem;
	color: var(--blue);
	font-family: var(--font-title);
	line-height: 1;
	opacity: 0.25;
}

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

.testimonio-text {
	font-size: 0.9375rem;
	color: var(--color-text-card);
	line-height: 1.7;
	margin-bottom: var(--space-md);
	font-style: italic;
}

.testimonio-author {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--blue);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}

.avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-name {
	font-family: var(--font-title);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-text);
}

.author-role {
	font-size: 0.8rem;
	color: var(--color-text-muted);
}

/* =============================================
   SOBRE ALEJOAYAM
   ============================================= */
.sobre-inner {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
	align-items: flex-start;
}

.photo-placeholder {
	width: 200px;
	height: 240px;
	background: var(--pearl);
	border: 2px dashed var(--blue);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue);
	font-family: var(--font-title);
	font-size: 0.875rem;
	font-weight: 600;
	flex-shrink: 0;
}

.sobre-text .section-title {
	margin-bottom: var(--space-md);
}

.sobre-body {
	font-size: 1.0625rem;
	color: var(--color-text-card);
	line-height: 1.75;
	max-width: 560px;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: var(--space-md);
	max-width: 840px;
}

.faq-item {
	background: var(--bg-page);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: var(--transition);
}

.faq-item[open] {
	border-color: var(--blue);
	background: var(--bg-card);
}

.faq-question {
	font-family: var(--font-title);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--color-text);
	padding: 1.5rem 1.75rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
	list-style: none;
	position: relative;
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-question::after {
	content: '+';
	color: var(--blue);
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
	font-size: 0.9375rem;
	color: var(--color-text-card);
	line-height: 1.7;
}

/* =============================================
   CONTACTO / FORMULARIO
   ============================================= */
.contacto-inner {
	display: grid;
	gap: var(--space-lg);
}

.contacto-text .section-title-light {
	margin-bottom: var(--space-md);
}

.contacto-desc {
	font-size: 1rem;
	color: rgba(245, 245, 245, 0.75);
	line-height: 1.65;
	margin-bottom: var(--space-md);
	max-width: 420px;
}

.contacto-info {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contacto-info p {
	font-size: 0.9375rem;
	color: rgba(245, 245, 245, 0.8);
}

.contacto-info a {
	color: var(--blue);
	transition: var(--transition);
}

.contacto-info a:hover {
	color: var(--white);
	text-decoration: underline;
}

/* Form */
.form {
	background: var(--bg-form);
	border-radius: var(--radius-lg);
	padding: 2rem;
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-group label {
	display: block;
	font-family: var(--font-title);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.4rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	background: var(--bg-input);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.9375rem;
	color: var(--color-text);
	transition: var(--transition);
	appearance: none;
}

.form-group select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231268B3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--blue);
	background: var(--bg-card);
	box-shadow: 0 0 0 3px rgba(18, 104, 179, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #9ca3af;
}

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

.form-note {
	margin-top: 1rem;
	font-size: 0.875rem;
	text-align: center;
	min-height: 1.2em;
}

.form-note.success {
	color: var(--emerald);
	font-weight: 600;
}

.form-note.error {
	color: #ef4444;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
	background-color: var(--rich-black);
	color: rgba(245, 245, 245, 0.75);
	padding-top: var(--space-lg);
}

.footer-inner {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-logo {
	height: 48px;
	width: auto;
	object-fit: contain;
	max-width: 160px;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

.footer-tagline {
	font-size: var(--fs-sm);
	max-width: 280px;
	line-height: 1.5;
	margin-top: 0.4rem;
}

/* Sobre – real photo */
.sobre-photo {
	width: 220px;
	height: 280px;
	object-fit: cover;
	object-position: top center;
	border-radius: var(--radius-lg);
	border: 3px solid var(--pearl);
	box-shadow: var(--shadow-hover);
	flex-shrink: 0;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.footer-links a {
	font-size: var(--fs-sm);
	color: rgba(245, 245, 245, 0.65);
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--blue);
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.25rem 0;
	font-size: 0.8125rem;
	color: rgba(245, 245, 245, 0.4);
}

.footer-bottom-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
}

.footer-bottom a {
	color: inherit;
	transition: var(--transition);
}

.footer-bottom a:hover {
	color: var(--blue);
}

/* Footer bottom links row */
.footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Footer store button */
.footer-store-btn {
	background: linear-gradient(135deg, #ff7c00 0%, #ffb300 100%);
	color: var(--white) !important;
	padding: 0.3rem 0.9rem;
	border-radius: var(--radius-sm);
	font-family: var(--font-title);
	font-size: 0.8125rem;
	font-weight: 700;
	transition: var(--transition);
	box-shadow: 0 2px 8px rgba(255, 124, 0, 0.28);
	white-space: nowrap;
}

.footer-store-btn:hover {
	background: linear-gradient(135deg, #e06e00 0%, #f0a000 100%) !important;
	box-shadow: 0 4px 14px rgba(255, 124, 0, 0.4);
	transform: translateY(-1px);
}

/* Lang toggle – nav (light bg) */
.lang-toggle {
	background: transparent;
	border: 1.5px solid var(--color-text);
	color: var(--color-text);
	padding: 0.3rem 0.8rem;
	border-radius: var(--radius-sm);
	font-family: var(--font-title);
	font-size: 0.8125rem;
	font-weight: 700;
	cursor: pointer;
	transition: var(--transition);
	letter-spacing: 0.04em;
}

.lang-toggle:hover {
	background: var(--color-text);
	color: var(--bg-header);
}

/* Lang toggle – mobile menu (appears inside mobile dropdown) */
.lang-toggle-mobile {
	margin: 0.5rem var(--padding-x);
	border-color: var(--color-border);
	color: var(--color-text);
}

/* ── Theme toggle button ── */
.theme-toggle {
	background: transparent;
	border: 1.5px solid var(--color-text);
	color: var(--color-text);
	width: 2.1rem;
	height: 2.1rem;
	border-radius: var(--radius-sm);
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.theme-toggle:hover {
	background: var(--color-text);
	color: var(--bg-header);
}

.theme-toggle-mobile {
	margin: 0.5rem var(--padding-x);
	border-color: var(--color-border);
}

/* =============================================
   SCROLL ANIMATION (fade-in)
   ============================================= */
.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.55s ease,
		transform 0.55s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* =============================================
   RESPONSIVE – Tablet (≥ 640px)
   ============================================= */
@media (min-width: 640px) {
	.benefits-list {
		grid-template-columns: 1fr 1fr;
	}

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

	.sobre-inner {
		flex-direction: row;
		align-items: flex-start;
	}

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

	.footer-inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}

	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

/* =============================================
   RESPONSIVE – Desktop (≥ 900px)
   ============================================= */
@media (min-width: 900px) {
	:root {
		--padding-x: 2.5rem;
	}

	/* Show desktop nav, hide hamburger */
	.nav-links {
		display: flex;
	}

	.hamburger {
		display: none;
	}

	/* Hero two-column layout */
	.hero-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: var(--space-lg);
		min-height: calc(100vh - 80px);
		padding-top: 0;
		padding-bottom: 0;
	}

	.hero-text {
		max-width: 540px;
		flex-shrink: 0;
	}

	.hero-title {
		font-size: clamp(2rem, 3.5vw, 3rem);
	}

	.hero-image {
		flex: 1;
		justify-content: flex-end;
		padding-right: 2rem;
	}

	.hero-mockup {
		width: 340px;
		height: 400px;
	}

	/* Packages 3 cols */
	.packages-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

	/* Contacto 2 cols */
	.contacto-inner {
		grid-template-columns: 1fr 1fr;
		align-items: flex-start;
	}

	/* Benefits 2 cols already OK */
}

/* =============================================
   RESPONSIVE – Large desktop (≥ 1200px)
   ============================================= */
@media (min-width: 1200px) {
	:root {
		--fs-h1-base: 3rem;
		--fs-h2-base: 2.25rem;
	}
}

/* Extra small screens (phone portraits <= 403px wide) */
@media (max-width: 403px) {

	/* Tighter container so content doesn't overflow */
	.container {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
		max-width: 100%;
	}

	/* Header / nav compact */
	.nav {
		padding: 0.35rem var(--padding-x);
	}

	.logo img {
		height: 36px;
	}

	/* Make sure hamburger stays tappable but smaller */
	.hamburger {
		width: 40px;
		height: 40px;
		padding: 4px;
	}

	/* Hero adjustments for cramped screens */
	.hero {
		padding-top: 62px;
		min-height: calc(100vh - 62px);
		overflow: hidden;
		/* avoid pseudo-element overflow */
	}

	/* Limit decorative shape to container width and reduce size */
	.hero::before {
		left: var(--padding-x);
		transform: none;
		width: calc(100% - 2 * var(--padding-x));
		height: 120px;
		top: 8%;
		filter: blur(4px);
		opacity: 0.9;
	}

	.hero-inner {
		gap: 0.9rem;
		padding-top: var(--space-sm);
		padding-bottom: var(--space-sm);
		width: 100%;
	}

	.hero-title {
		font-size: clamp(1.1rem, 8vw, 1.5rem);
		line-height: 1.12;
	}

	.hero-subtitle {
		font-size: 0.95rem;
		padding-left: 0.25rem;
		padding-right: 0.25rem;
	}

	.hero-cta-wrap .btn {
		padding: 0.65rem 0.9rem;
		font-size: 0.95rem;
		max-width: 300px;
	}

	/* Ensure mockup hidden on very small viewports */
	.hero-mockup {
		display: none !important;
	}

	/* Cards and lists: reduce padding to fit */
	.benefit-item,
	.package-card,
	.step-card,
	.testimonio-card {
		padding: 0.7rem;
	}

	/* Footer: tighten spacing and center brand */
	.footer-inner {
		gap: 0.4rem;
	}

	.footer-bottom {
		gap: 0.35rem;
	}

	.footer-logo {
		height: 30px;
	}

	.footer-inner .footer-brand {
		align-items: center;
		text-align: center;
	}

	/* Floating button smaller and moved up to avoid covering CTAs */
	.scroll-to-hero {
		width: 36px;
		height: 36px;
		right: 10px;
		bottom: 68px;
	}

	.scroll-to-hero .icon {
		font-size: 15px;
	}

	/* Prevent long nav links from crowding: reduce gap */
	.nav-links {
		gap: 0.7rem;
	}

	/* Improve form inputs spacing */
	.form-group input,
	.form-group textarea,
	.form-group select {
		padding: 0.6rem 0.8rem;
		font-size: 0.88rem;
	}
}

/* ---------------------------------------------
   Extra responsivity tweaks (mobile polish)
   --------------------------------------------- */

/* NOTE: logo size adjusted within mobile media query (avoid global override) */

/* Mobile adjustments */
@media (max-width: 639px) {

	/* Slightly smaller logo on small screens */
	.logo img {
		height: 40px;
		/* slightly larger on mobile per request */
	}

	.nav {
		padding: 0.6rem var(--padding-x);
	}

	.hero {
		padding-top: 72px;
		/* reduce header offset on small devices */
		min-height: calc(100vh - 72px);
	}

	.hero-mockup {
		width: 240px;
		height: 300px;
		display: none;
		/* hide mockup on small screens */
	}

	.hero-title {
		font-size: clamp(1.4rem, 7.5vw, 2.25rem);
	}

	.hero-subtitle {
		font-size: 1rem;
		max-width: 100%;
	}

	.benefits-list,
	.packages-grid,
	.steps-grid,
	.testimonios-grid {
		gap: 0.9rem;
	}

	.package-card {
		padding: 1.25rem;
	}

	/* Center footer brand content on small screens */
	.footer-inner .footer-brand {
		align-items: center;
		text-align: center;
	}

	/* Center footer content on small screens */
	.footer-inner,
	.footer-bottom {
		align-items: center;
		text-align: center;
	}

	.footer-links {
		justify-content: center;
	}

	/* Enhanced mobile hero: decorative accent + stronger CTA */
	.hero {
		position: relative;
		overflow: visible;
	}

	.hero::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 6%;
		transform: translateX(-50%);
		width: 86vw;
		height: 220px;
		background:
			radial-gradient(circle at 30% 30%,
				rgba(18, 104, 179, 0.12),
				transparent 40%),
			radial-gradient(circle at 70% 70%,
				rgba(28, 36, 52, 0.06),
				transparent 45%);
		border-radius: 18px;
		z-index: 0;
		filter: blur(6px);
		pointer-events: none;
	}

	.hero-inner {
		position: relative;
		z-index: 1;
		gap: 1.25rem;
		padding-top: calc(var(--space-md));
		padding-bottom: calc(var(--space-md));
		align-items: center;
	}

	.hero-title {
		font-size: clamp(1.5rem, 6.5vw, 2rem);
		text-align: center;
	}

	.hero-subtitle {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-cta-wrap {
		width: 100%;
		align-items: center;
	}

	.hero-cta-wrap .btn {
		width: 100%;
		max-width: 360px;
	}

	.hero-mockup {
		width: 220px;
		height: 260px;
		box-shadow: 0 12px 40px rgba(10, 13, 19, 0.08);
		transform: translateY(4px) rotate(-1deg);
	}
}

/* Medium screens: keep things airy but balanced */
@media (min-width: 640px) and (max-width: 899px) {
	.hero-mockup {
		width: 300px;
		height: 340px;
	}

	.hero-text {
		max-width: 520px;
	}
}

/* Ensure images inside interactive blocks don't overflow */
.package-card img,
.testimonio-card img,
.sobre-photo {
	max-width: 100%;
	height: auto;
}

/* ---------------------------------------------
   Additional responsive & accessibility tweaks
   - hide heavy decorative hero shape on small screens
   - make contacto area 2-col from 768px (tablet)
   - add visible :focus styles for keyboard users
   - respect prefers-reduced-motion
   --------------------------------------------- */

@media (max-width: 639px) {
	.hero-bg-shape {
		display: none !important;
	}
}

/* Hide decorative hero split-bg in dark mode (bg is already dark) */
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) .hero-bg-shape {
		display: none;
	}
}

[data-theme="dark"] .hero-bg-shape {
	display: none;
}

[data-theme="light"] .hero-bg-shape {
	display: block;
}

@media (min-width: 768px) and (max-width: 899px) {
	.contacto-inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--space-lg);
		align-items: start;
	}
}

/* Keyboard focus states */
.nav-link:focus,
.mobile-link:focus,
.hamburger:focus,
.btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(18, 104, 179, 0.18);
	border-radius: 6px;
}

.nav-link:focus-visible,
.mobile-link:focus-visible,
.hamburger:focus-visible,
.btn:focus-visible {
	outline: 2px solid rgba(18, 104, 179, 0.18);
	outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
		animation: none !important;
	}
}

/* Scroll-to-hero floating button */
.scroll-to-hero {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--blue);
	color: var(--white);
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(18, 104, 179, 0.18);
	border: none;
	cursor: pointer;
	opacity: 0;
	transform: translateY(12px) scale(0.98);
	transition:
		opacity 240ms ease,
		transform 240ms ease;
	z-index: 1200;
}

.scroll-to-hero.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.scroll-to-hero:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(18, 104, 179, 0.18);
}

.scroll-to-hero .icon {
	font-size: 18px;
	line-height: 1;
}

@media (max-width: 420px) {
	.scroll-to-hero {
		right: 12px;
		bottom: 14px;
		width: 44px;
		height: 44px;
	}
}

/* Improvements for 412px-ish devices (Samsung A51 and similar) */
@media (max-width: 420px) and (min-width: 404px) {

	/* allow content to use full viewport */
	.container {
		max-width: 100% !important;
		padding-left: 0.5rem !important;
		padding-right: 0.5rem !important;
	}

	/* remove hero decorative element that can overlap */
	.hero::before {
		display: none !important;
	}

	/* hide mockup to maximize text area */
	.hero-mockup {
		display: none !important;
	}

	/* ensure hero and inner blocks expand full width */
	.hero,
	.hero-inner {
		width: 100%;
	}

	/* keep mobile nav behavior consistent */
	.nav-links {
		display: none !important;
	}

	.hamburger {
		display: flex !important;
	}

	/* reduce padding on cards to avoid vertical overflow */
	.package-card,
	.benefit-item,
	.step-card {
		padding: 0.7rem !important;
	}

	/* adjust floating button to avoid covering CTA */
	.scroll-to-hero {
		right: 10px;
		bottom: 70px;
		width: 36px;
		height: 36px;
	}
}

/* Final safety overrides for very narrow viewports to avoid accidental overlays */
@media (max-width: 403px) {

	/* remove decorative hero pseudo if it causes overlap */
	.hero::before {
		display: none !important;
	}

	/* ensure mobile menu is hidden by default unless explicitly opened */
	.mobile-menu {
		display: none !important;
	}

	.mobile-menu.open {
		display: block !important;
	}

	/* make container truly full width on tiny screens */
	.container {
		max-width: 100% !important;
		padding-left: 0.5rem !important;
		padding-right: 0.5rem !important;
	}
}

/* WhatsApp floating button */
.whatsapp-float {
	position: fixed;
	left: 20px;
	bottom: 20px;
	width: 54px;
	height: 54px;
	background-color: #25d366;
	color: white;
	border-radius: 50px;
	text-align: center;
	font-size: 26px;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		transform 0.3s ease,
		background-color 0.3s ease,
		box-shadow 0.3s ease;
	text-decoration: none;
}

.whatsapp-float:hover {
	background-color: #075E54;
	transform: scale(1.1) translateY(-5px);
	box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
	color: white;
}

.whatsapp-float svg {
	width: 28px;
	height: 28px;
}

@media (max-width: 420px) {
	.whatsapp-float {
		left: 15px;
		bottom: 15px;
		width: 48px;
		height: 48px;
	}
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
	position: fixed;
	bottom: -100%;
	left: 0;
	width: 100%;
	background-color: var(--bg-card);
	border-top: 1px solid var(--color-border);
	box-shadow: 0 -8px 32px rgba(10, 13, 19, 0.1);
	padding: 1.5rem 0;
	z-index: 2000;
	transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	visibility: hidden;
}

.cookie-banner.visible {
	bottom: 0;
	visibility: visible;
}

.cookie-container {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
}

.cookie-content h4 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: var(--blue);
}

.cookie-content p {
	font-size: 0.9375rem;
	color: var(--color-text-card);
	max-width: 600px;
}

.cookie-actions {
	display: flex;
	gap: 1rem;
}

@media (min-width: 768px) {
	.cookie-container {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}