/* ============================================================
   ESTUDIO ZERO — main.css
   Conversión completa de Tailwind CSS + Framer Motion a CSS puro
   Paleta editorial oscura, tipografía Playfair Display + Figtree
   ============================================================ */

/* ── 1. DESIGN TOKENS (CSS Custom Properties) ────────────────────────────── */
:root {
  /* Paleta de color — luxury editorial */
  --ink-deep-h: 24; --ink-deep-s: 8%; --ink-deep-l: 6%;
  --ink-h: 24;      --ink-s: 6%;      --ink-l: 10%;
  --ink-soft-h: 24; --ink-soft-s: 6%; --ink-soft-l: 14%;

  --ink-deep: hsl(24 8% 6%);          /* #111009 — negro profundo */
  --ink:      hsl(24 6% 10%);         /* #1a1816 — fondo principal */
  --ink-soft: hsl(24 6% 14%);         /* #241f1c — superficies elevadas */

  --bone:      hsl(36 22% 94%);       /* #f2ede7 — blanco roto cálido */
  --bone-warm: hsl(32 30% 90%);       /* #ede4d7 */
  --sand:      hsl(32 18% 78%);       /* #c9b99d */
  --sand-deep: hsl(30 14% 60%);       /* #a08a71 */
  --clay:      hsl(18 22% 48%);       /* #91614d */
  --smoke:     hsl(24 5% 22%);        /* #373230 */
  --line:      hsl(30 8% 22%);        /* #3a3330 */
  --accent:    hsl(36 32% 70%);       /* #c9a97a */

  /* Aliases semánticos */
  --color-bg:            var(--ink);
  --color-fg:            var(--bone);
  --color-muted:         hsl(30 10% 65%);
  --color-border:        var(--line);
  --color-ring:          var(--accent);
  --color-bone-60:       hsl(36 22% 94% / 0.6);
  --color-bone-75:       hsl(36 22% 94% / 0.75);
  --color-bone-80:       hsl(36 22% 94% / 0.8);
  --color-sand-deep-60:  hsl(30 14% 60% / 0.6);
  --color-line-40:       hsl(30 8% 22% / 0.4);
  --color-line-60:       hsl(30 8% 22% / 0.6);
  --color-ink-deep-40:   hsl(24 8% 6% / 0.4);
  --color-ink-deep-70:   hsl(24 8% 6% / 0.7);
  --color-ink-deep-80:   hsl(24 8% 6% / 0.8);

  /* Tipografía */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans:    'Figtree', system-ui, -apple-system, sans-serif;

  /* Tamaños responsive (equivalen a las clases Tailwind display-*) */
  --text-display-2xl: clamp(3.5rem, 8vw, 7.5rem);
  --text-display-xl:  clamp(2.5rem, 5.5vw, 5rem);
  --text-display-lg:  clamp(2rem, 4vw, 3.5rem);
  --text-display-md:  clamp(1.5rem, 2.5vw, 2.25rem);

  /* Espaciado */
  --space-section: clamp(5rem, 10vw, 9rem);
  --space-gutter:  clamp(1.5rem, 4vw, 3rem);

  /* Radios */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Sombras */
  --shadow-editorial: 0 30px 80px -20px rgba(0,0,0,0.45);
  --shadow-soft:      0 10px 30px -10px rgba(0,0,0,0.35);

  /* Animaciones */
  --ease-editorial: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast:   300ms;
  --duration-mid:    700ms;
  --duration-slow:   900ms;
  --duration-xl:     1100ms;
}

/* ── 2. RESET Y BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  border: 0 solid var(--color-border);
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02", "cv11";
  overflow-x: hidden;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-fg);
  overflow-x: hidden;
  line-height: 1.6;
}

img, video { display: block; max-width: 100%; }
svg { display: inline-block; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection {
  background: var(--accent);
  color: var(--ink-deep);
}

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

/* Scrollbar minimal */
::-webkit-scrollbar         { width: 8px; height: 8px; }
::-webkit-scrollbar-track   { background: var(--ink-deep); }
::-webkit-scrollbar-thumb   { background: var(--smoke); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--sand-deep); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── 3. LAYOUT UTILITIES ──────────────────────────────────────────────────── */
.container-editorial {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 640px)  { .container-editorial { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container-editorial { padding-inline: 3rem; } }
@media (min-width: 1280px) { .container-editorial { padding-inline: 4rem; } }

.section { padding-block: var(--space-section); }

/* ── 4. COMPONENTES TIPOGRÁFICOS ─────────────────────────────────────────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 300;            /* font-light — igual que el original */
  letter-spacing: -0.025em;   /* tracking-tight */
  color: var(--bone);
  line-height: 1.05;
}

/* Utilidades de tamaño display — con line-height y letter-spacing exactos del tailwind.config */
.text-display-2xl {
  font-size: var(--text-display-2xl);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.text-display-xl {
  font-size: var(--text-display-xl);
  line-height: 1;
  letter-spacing: -0.03em;
}
.text-display-lg {
  font-size: var(--text-display-lg);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.text-display-md {
  font-size: var(--text-display-md);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--sand-deep);
  font-family: var(--font-sans);
}
.eyebrow::before {
  content: "";
  display: block;
  height: 1px;
  width: 2rem;
  background: var(--color-sand-deep-60);
  flex-shrink: 0;
}

.ez-section-heading { margin-bottom: 3rem; max-width: 48rem; }
@media (min-width: 768px) { .ez-section-heading { margin-bottom: 5rem; } }

.ez-section-heading .eyebrow  { margin-bottom: 1.5rem; }
.ez-section-heading h2        { margin-block: 0; }
.ez-section-heading__desc {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-muted);
  max-width: 40rem;
  line-height: 1.75;
}

/* ── 5. BOTONES — Fiel al ButtonVariants del original ────────────────────── */
.ez-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 0.75rem;           /* text-xs — tamaño default (md) */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;        /* tracking-wide */
  border-radius: 2px;           /* rounded-sm — shape: pill default */
  height: 3rem;                 /* h-12 — tamaño md (default) */
  padding-inline: 1.75rem;      /* px-7 */
  transition: all 500ms var(--ease-editorial);
  cursor: pointer;
}
.ez-btn--lg {
  height: 3.5rem;               /* h-14 */
  padding-inline: 2.25rem;      /* px-9 */
  font-size: 0.875rem;          /* text-sm */
}
.ez-btn--sm {
  height: 2.5rem;               /* h-10 */
  padding-inline: 1rem;         /* px-4 */
  font-size: 0.75rem;
}

.ez-btn--primary {
  background: var(--bone);
  color: var(--ink-deep);
  border: 1px solid var(--bone);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.35); /* shadow-soft */
}
.ez-btn--primary:hover {
  background: var(--bone-warm);
  border-color: var(--bone-warm);
}

.ez-btn--outline {
  background: transparent;
  color: var(--bone);
  border: 1px solid hsl(36 22% 94% / 0.4);  /* border-bone/40 — exacto del original */
}
.ez-btn--outline:hover {
  border-color: var(--bone);
  background: hsl(36 22% 94% / 0.05);       /* hover:bg-bone/5 */
}

.ez-btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid transparent;
}
.ez-btn--ghost:hover {
  background: hsl(36 22% 94% / 0.05);
}

.ez-btn svg { flex-shrink: 0; }

/* ── 6. EFECTOS VISUALES ──────────────────────────────────────────────────── */
.noise { position: relative; isolation: isolate; }
.noise::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.07;
  mix-blend-mode: overlay;
}

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 1px;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.marquee-mask {
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.gradient-vignette {
  background: radial-gradient(ellipse at center, transparent 0%, transparent 55%, hsl(24 8% 6% / 0.6) 100%);
}

/* ── 7. ANIMACIONES DE ENTRADA (data-animate) ─────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-editorial),
              transform var(--duration-slow) var(--ease-editorial);
}
[data-animate="fade-up"]    { transform: translateY(28px); }
[data-animate="fade-in"]    { transform: none; }
[data-animate="hero-word"]  { transform: translateY(60px); }
[data-animate="scale-in"]   { transform: scale(1.05); }

[data-animate].is-visible {
  opacity: 1;
  transform: none !important;
}

/* Stagger — los hijos heredan el delay via JS */
[data-stagger] [data-animate] { transition-property: opacity, transform; }

/* ── 8. SKIP LINK ─────────────────────────────────────────────────────────── */
.ez-skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--bone);
  color: var(--ink-deep);
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transform: translateY(-200%);
  transition: transform 0.3s;
}
.ez-skip-link:focus { transform: translateY(0); }

/* ── 9. CURSOR PERSONALIZADO ─────────────────────────────────────────────── */
.ez-cursor-ring,
.ez-cursor-dot {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  mix-blend-mode: difference;
}
@media (pointer: fine) {
  .ez-cursor-ring {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid hsl(36 22% 94% / 0.4);
  }
  .ez-cursor-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--bone);
  }
}

/* ── 10. LOADING SCREEN ───────────────────────────────────────────────────── */
.ez-loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-deep);
  transition: opacity 0.8s var(--ease-editorial);
}
.ez-loading-screen__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--bone);
  letter-spacing: 0.32em;
  animation: ez-loading-brand 1s var(--ease-editorial) forwards;
}
@keyframes ez-loading-brand {
  from { opacity: 0; letter-spacing: 0.5em; }
  to   { opacity: 1; letter-spacing: 0.32em; }
}

/* ── 11. HEADER / NAVBAR ─────────────────────────────────────────────────── */
.ez-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background var(--duration-mid) var(--ease-editorial),
              border-color var(--duration-mid) var(--ease-editorial),
              backdrop-filter var(--duration-mid) var(--ease-editorial);
  border-bottom: 1px solid transparent;
}
.ez-header.is-scrolled {
  background: hsl(24 8% 6% / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-line-40);
}

.ez-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.ez-header__brand {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--bone);
  transition: color var(--duration-fast);
}
.ez-header__brand:hover { color: var(--bone-warm); }

.ez-header__nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 768px) { .ez-header__nav { display: flex; } }

.ez-header__nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-bone-70, hsl(36 22% 94% / 0.7));
  transition: color var(--duration-fast);
}
.ez-header__nav-link:hover { color: var(--bone); }

.ez-header__actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) { .ez-header__actions { display: flex; } }

.ez-header__whatsapp { gap: 0.5rem; letter-spacing: 0.18em; text-transform: none; }
.ez-header__divider  { width: 1px; height: 1.25rem; background: var(--color-line-60); }

.ez-header__mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) { .ez-header__mobile-actions { display: none; } }

.ez-header__mobile-wa,
.ez-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--bone);
  transition: color var(--duration-fast);
}
.ez-mobile-toggle { color: var(--bone); }

/* Mobile nav */
.ez-mobile-nav {
  background: var(--ink-deep);
  border-top: 1px solid var(--color-line-40);
  animation: ez-mobile-nav-in 0.5s var(--ease-editorial);
}
@keyframes ez-mobile-nav-in {
  from { opacity: 0; transform: translateY(-0.75rem); }
  to   { opacity: 1; transform: translateY(0); }
}
.ez-mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-block: 2rem;
}
.ez-mobile-nav__link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bone);
  transition: color var(--duration-fast);
}
.ez-mobile-nav__link:hover { color: var(--bone-warm); }
.ez-mobile-nav__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.ez-mobile-nav__ctas .ez-btn { align-self: flex-start; }

/* ── 12. HERO ─────────────────────────────────────────────────────────────── */
.ez-hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: var(--ink-deep);
  display: flex;
  align-items: flex-end;
}

.ez-hero__bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.ez-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ez-hero__overlay {
  position: absolute;
  inset: 0;
}
.ez-hero__overlay--gradient {
  background: linear-gradient(to bottom, hsl(24 8% 6% / 0.4), hsl(24 8% 6% / 0.3) 50%, var(--ink-deep));
}
.ez-hero__overlay--vignette { composes: gradient-vignette from global; }
.ez-hero__overlay--vignette {
  background: radial-gradient(ellipse at center, transparent 0%, transparent 55%, hsl(24 8% 6% / 0.6) 100%);
}

.ez-hero__content {
  position: relative;
  z-index: 10;        /* z-10 exacto del original */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 6rem;   /* pb-24 */
  width: 100%;
  will-change: opacity;
}
@media (min-width: 768px) { .ez-hero__content { padding-bottom: 8rem; } } /* md:pb-32 */

.ez-hero__eyebrow { margin-bottom: 2rem; color: var(--color-bone-80); }

.ez-hero__title {
  font-size: var(--text-display-2xl);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 64rem;           /* max-w-5xl exacto del original */
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  text-wrap: balance;
  overflow: hidden;
}
.ez-hero__word {
  display: inline-block;
  margin-right: 0.25em;
}
.ez-hero__word[data-animate="hero-word"] { transform: translateY(60px); }
.ez-hero__word.is-visible { opacity: 1; transform: translateY(0); }

.ez-hero__description {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-bone-75);
  line-height: 1.75;
}

.ez-hero__ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 640px) { .ez-hero__ctas { gap: 1rem; } }

.ez-hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: hsl(36 22% 94% / 0.6);
  transition: color var(--duration-fast);
}
@media (min-width: 768px) { .ez-hero__scroll-hint { display: flex; } }
.ez-hero__scroll-hint:hover { color: var(--bone); }
.ez-hero__scroll-arrow { animation: ez-bounce 2s ease-in-out infinite; }
@keyframes ez-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── 13. TRUST ────────────────────────────────────────────────────────────── */
.ez-trust { background: var(--ink); padding-block: 6rem; }
@media (min-width: 768px) { .ez-trust { padding-block: 8rem; } }

.ez-trust__eyebrow { margin-bottom: 2.5rem; }

.ez-trust__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .ez-trust__stats {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 7rem;
  }
}

.ez-trust__stat {
  border-left: 1px solid var(--color-line-60);
  padding-left: 1.25rem;
}
.ez-trust__stat-value {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ez-trust__stat-label {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-muted);
}

.ez-trust__logos-eyebrow { margin-bottom: 2rem; }

.ez-trust__marquee-wrap { overflow: hidden; }
.ez-trust__marquee {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ez-marquee-trust 40s linear infinite;
}
@keyframes ez-marquee-trust {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ez-trust__logo-item {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: hsl(30 14% 60% / 0.6);
  transition: color var(--duration-mid);
  flex-shrink: 0;
}
.ez-trust__logo-item:hover { color: var(--bone); }

/* ── 14. FOR WHO ──────────────────────────────────────────────────────────── */
.ez-for-who { background: var(--ink-deep); }

.ez-for-who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-line-40);
  border: 1px solid var(--color-line-40);
  margin-top: 0;
}
@media (min-width: 640px)  { .ez-for-who__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ez-for-who__grid { grid-template-columns: repeat(3, 1fr); } }

.ez-for-who__item {
  background: var(--ink-deep);
  padding: 2rem;
  transition: background var(--duration-mid) var(--ease-editorial);
}
@media (min-width: 768px) { .ez-for-who__item { padding: 2.5rem; } }
.ez-for-who__item:hover { background: var(--ink-soft); }

.ez-for-who__icon {
  display: block;
  color: var(--sand);
  transition: color var(--duration-mid) var(--ease-editorial);
}
.ez-for-who__item:hover .ez-for-who__icon { color: var(--bone); }

.ez-for-who__title {
  margin-top: 2rem;
  font-size: 1.5rem;
}
.ez-for-who__desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.75;
}
.ez-for-who__footnote {
  margin-top: 3.5rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: 36rem;
}

/* ── 15. SERVICES ─────────────────────────────────────────────────────────── */
.ez-services { background: var(--ink); }

.ez-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .ez-services__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .ez-services__grid { grid-template-columns: repeat(3, 1fr); } }

.ez-service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line-60);
  background: var(--ink-soft);
  transition: transform var(--duration-mid) var(--ease-editorial);
}
.ez-service-card:hover { transform: translateY(-4px); }

.ez-service-card__image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.ez-service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1400ms var(--ease-editorial);
}
.ez-service-card:hover .ez-service-card__image { transform: scale(1.06); }
.ez-service-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink-deep) 0%, hsl(24 8% 6% / 0.3) 40%, transparent 100%);
  opacity: 0.9;
  transition: opacity var(--duration-mid);
}
.ez-service-card:hover .ez-service-card__image-overlay { opacity: 0.95; }

.ez-service-card__icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: hsl(36 22% 94% / 0.9);
}
.ez-service-card__price {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: hsl(36 22% 94% / 0.8);
  border: 1px solid hsl(36 22% 94% / 0.3);
  padding: 0.25rem 0.5rem;
}
.ez-service-card__body { padding: 2rem; }
.ez-service-card__title { font-size: clamp(1.375rem, 2vw, 1.875rem); }
.ez-service-card__desc  { margin-top: 1rem; font-size: 0.875rem; color: var(--color-muted); line-height: 1.75; }

.ez-service-card__bullets { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.ez-service-card__bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sand);
}
.ez-service-card__bullet::before {
  content: "";
  display: block;
  height: 1px;
  width: 1.25rem;
  background: hsl(30 14% 60% / 0.6);
  flex-shrink: 0;
}

.ez-service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--bone);
  transition: gap var(--duration-mid) var(--ease-editorial);
}
.ez-service-card__cta:hover { gap: 0.75rem; }

/* ── 16. PORTFOLIO ────────────────────────────────────────────────────────── */
.ez-portfolio { background: var(--ink-deep); overflow: hidden; }

.ez-portfolio__marquee-container { overflow: hidden; }
.ez-portfolio__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-inline: 1.5rem;
  will-change: transform;
}
@media (min-width: 768px) {
  .ez-portfolio__track { gap: 1.5rem; padding-inline: 3rem; }
}

.ez-portfolio__item {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink-soft);
  cursor: pointer;
  display: block;
}
@media (min-width: 768px)  { .ez-portfolio__item { width: 340px; } }
@media (min-width: 1024px) { .ez-portfolio__item { width: 400px; } }

.ez-portfolio__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1400ms var(--ease-editorial);
  pointer-events: none;
  user-select: none;
}
.ez-portfolio__item:hover .ez-portfolio__item-img,
.ez-portfolio__item:focus-visible .ez-portfolio__item-img { transform: scale(1.06); }

.ez-portfolio__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(24 8% 6% / 0.85) 0%, hsl(24 8% 6% / 0.2) 30%, transparent 100%);
  opacity: 0.9;
  transition: opacity var(--duration-mid);
}
.ez-portfolio__item:hover .ez-portfolio__item-overlay { opacity: 1; }

.ez-portfolio__item-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}
@media (min-width: 768px) { .ez-portfolio__item-meta { padding: 1.5rem; } }
.ez-portfolio__item-category {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--sand);
}
.ez-portfolio__item-title {
  margin-top: 0.375rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--bone);
  line-height: 1.2;
}
.ez-portfolio__item-border {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px hsl(36 22% 94% / 0.05);
  pointer-events: none;
  transition: box-shadow var(--duration-mid);
}
.ez-portfolio__item:hover .ez-portfolio__item-border { box-shadow: inset 0 0 0 1px hsl(36 22% 94% / 0.15); }

.ez-portfolio__status {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-muted);
}
.ez-portfolio__hint-desktop { display: none; }
.ez-portfolio__hint-mobile  { display: inline; }
@media (min-width: 768px) {
  .ez-portfolio__hint-desktop { display: inline; }
  .ez-portfolio__hint-mobile  { display: none; }
}

/* Dialog / Lightbox */
.ez-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: hsl(24 8% 6% / 0.85); /* bg-ink-deep/85 exacto del original */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
  animation: ez-dialog-in 0.3s var(--ease-editorial);
}
.ez-dialog-overlay[hidden] { display: none; }
@keyframes ez-dialog-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.ez-dialog {
  position: relative;
  background: var(--ink);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  animation: ez-dialog-scale 0.4s var(--ease-editorial);
}
@keyframes ez-dialog-scale {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.ez-dialog__close {
  position: absolute;
  top: 1.25rem;              /* top-5 */
  right: 1.25rem;            /* right-5 */
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;           /* p-2 */
  background: hsl(24 8% 6% / 0.6); /* bg-ink-deep/60 exacto del original */
  border-radius: 50%;        /* rounded-full */
  color: var(--bone);
  backdrop-filter: blur(4px);
  transition: background var(--duration-fast);
}
.ez-dialog__close:hover { background: var(--ink-deep); } /* hover:bg-ink-deep */

.ez-dialog__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--ink-deep);
}
@media (min-width: 768px) { .ez-dialog__image-wrap { aspect-ratio: 4/3; } }
.ez-dialog__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ez-dialog__meta {
  padding: 1.5rem;
  border-top: 1px solid var(--color-line-40);
  background: var(--ink);
}
.ez-dialog__category {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--sand);
}
.ez-dialog__title {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--bone);
}

/* ── 17. PROCESS ──────────────────────────────────────────────────────────── */
.ez-process { background: var(--ink); }

.ez-process__list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .ez-process__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .ez-process__list::before {
    content: "";
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-line-60);
  }
}

.ez-process__step { position: relative; }
@media (min-width: 768px) { .ez-process__step { padding-right: 2rem; } }

.ez-process__step-connector {
  display: none;
  position: absolute;
  top: 3rem;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 768px) { .ez-process__step-connector { display: block; } }
.ez-process__step-dot {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--bone);
}

.ez-process__step-num {
  display: block;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  color: var(--sand);
  letter-spacing: -0.02em;
}
.ez-process__step-title {
  margin-top: 0.75rem;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
}
@media (min-width: 768px) { .ez-process__step-title { margin-top: 2.5rem; } }
.ez-process__step-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.75;
}

/* ── 18. TESTIMONIALS ─────────────────────────────────────────────────────── */
.ez-testimonials { background: var(--ink-deep); }

.ez-testimonials__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .ez-testimonials__inner {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

/* Imágenes */
.ez-testimonials__images { position: relative; aspect-ratio: 4/5; }
.ez-testimonials__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--color-line-40);
  opacity: 0;
  transition: opacity 0.9s var(--ease-editorial), transform 0.9s var(--ease-editorial);
  transform: scale(1.04);
}
.ez-testimonials__image-wrap.is-active {
  opacity: 1;
  transform: scale(1);
}
.ez-testimonials__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ez-testimonials__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(24 8% 6% / 0.4), transparent);
}

/* Contenido */
.ez-testimonials__content { display: flex; flex-direction: column; }

.ez-testimonials__slide {
  display: none;
  flex-direction: column;
}
.ez-testimonials__slide.is-active { display: flex; }

.ez-testimonials__stars {
  display: flex;
  gap: 0.25rem;
  color: var(--accent);
}

.ez-testimonials__quote {
  margin-top: 1.5rem;
  font-size: clamp(1.375rem, 2.5vw, 2.25rem);
  color: var(--bone);
  line-height: 1.3;
}
.ez-testimonials__quote-mark { color: hsl(30 14% 60% / 0.8); }

.ez-testimonials__meta { margin-top: 2rem; }
.ez-testimonials__author-name { color: var(--bone); font-weight: 500; }
.ez-testimonials__author-role {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-muted);
}

.ez-testimonials__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.ez-testimonials__counter {
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: var(--color-muted);
  flex-shrink: 0;
}

.ez-testimonials__progress-bar-wrap {
  flex: 1;
  height: 1px;
  background: var(--color-line-40);
  position: relative;
}
.ez-testimonials__progress-bar {
  display: block;
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform-origin: left;
  transform: scaleX(0);
}

.ez-testimonials__btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
.ez-testimonials__btn {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line-60);
  color: var(--bone);
  transition: background var(--duration-fast);
}
.ez-testimonials__btn:hover { background: hsl(36 22% 94% / 0.05); }

/* ── 19. FAQ ──────────────────────────────────────────────────────────────── */
.ez-faq { background: var(--ink); }
.ez-faq__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .ez-faq__inner {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

/* Accordion — fiel al accordion.tsx original (font-display, Plus icon, font-light) */
.ez-accordion { border-top: 1px solid var(--color-line-60); }
.ez-accordion__item { border-bottom: 1px solid var(--color-line-60); }
.ez-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;                    /* gap-6 */
  padding-block: 1.75rem;         /* py-7 */
  text-align: left;
  font-family: var(--font-display); /* font-display — Playfair Display */
  font-weight: 300;               /* font-light */
  font-size: 1.25rem;             /* text-xl */
  color: var(--bone);
  line-height: 1.3;
  transition: color var(--duration-fast);
}
@media (min-width: 768px) { .ez-accordion__trigger { font-size: 1.5rem; } } /* md:text-2xl */
.ez-accordion__trigger:hover { color: var(--bone-warm); }
.ez-accordion__trigger-icon {
  flex-shrink: 0;
  color: var(--sand);
  transition: transform 500ms var(--ease-editorial);
}
/* Icono + rota 45° al abrir (igual que [&[data-state=open]>svg]:rotate-45 del original) */
.ez-accordion__item.is-open .ez-accordion__trigger-icon { transform: rotate(45deg); }

.ez-accordion__content {
  overflow: hidden;
  transition: max-height 0.35s var(--ease-editorial);
}
.ez-accordion__content[hidden] { max-height: 0 !important; display: block; visibility: hidden; }
.ez-accordion__content:not([hidden]) { max-height: 1000px; visibility: visible; }
.ez-accordion__content-inner {
  max-width: 42rem;              /* max-w-2xl */
  padding-bottom: 2rem;         /* pb-8 */
  padding-right: 2rem;          /* pr-8 */
  font-size: 1rem;               /* text-base */
  color: var(--color-muted);
  line-height: 1.75;             /* leading-relaxed */
  text-wrap: pretty;
}

/* ── 20. CONTACT ──────────────────────────────────────────────────────────── */
.ez-contact { background: var(--ink); }
.ez-contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .ez-contact__inner {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
  }
}

.ez-contact__details { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; font-size: 0.875rem; }
.ez-contact__detail-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--sand-deep);
  margin-bottom: 0.5rem;
}
.ez-contact__detail-value { color: hsl(36 22% 94% / 0.85); line-height: 1.6; }
.ez-contact__link { color: var(--bone); transition: color var(--duration-fast); }
.ez-contact__link:hover { color: var(--bone-warm); }

/* Form */
.ez-form { display: flex; flex-direction: column; gap: 2rem; }
.ez-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .ez-form__grid { grid-template-columns: repeat(2, 1fr); } }

.ez-form__field { display: flex; flex-direction: column; gap: 0.5rem; }
.ez-form__field--full { grid-column: 1 / -1; }

.ez-form__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sand-deep);
}

/* Inputs — underline style exacto del original (border-b, bg-transparent, px-0) */
.ez-form__input,
.ez-form__select,
.ez-form__textarea {
  display: flex;
  width: 100%;
  height: 3rem;               /* h-12 */
  background: transparent;   /* bg-transparent — exacto del original */
  border: none;
  border-bottom: 1px solid var(--line); /* border-b border-line */
  padding: 0.75rem 0;        /* px-0 py-3 — sin padding lateral */
  font-family: var(--font-sans);
  font-size: 1rem;            /* text-base */
  color: var(--bone);
  border-radius: 0;
  transition: border-color 300ms;
  appearance: none;
  -webkit-appearance: none;
}
.ez-form__input::placeholder,
.ez-form__select::placeholder,
.ez-form__textarea::placeholder {
  color: hsl(30 10% 65% / 0.6); /* muted-foreground/60 */
}
.ez-form__input:focus,
.ez-form__select:focus,
.ez-form__textarea:focus {
  outline: none;
  border-bottom-color: var(--bone); /* focus:border-bone */
}
.ez-form__select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='hsl(30 14% 60%)' stroke-width='1.5' stroke-linecap='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
  cursor: pointer;
}
.ez-form__select option { background: var(--ink); color: var(--bone); }
.ez-form__textarea {
  height: auto;
  min-height: 140px; /* min-h-[140px] */
  resize: vertical;
  padding-top: 0.75rem;
}

.ez-form__error {
  font-size: 0.75rem;
  color: hsl(0 70% 70%);
  margin-top: 0.25rem;
}
.ez-form__error[hidden] { display: none; }

/* Checkbox RGPD */
.ez-form__consent { display: flex; flex-direction: column; gap: 0.5rem; }
.ez-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: hsl(36 22% 94% / 0.85);
  line-height: 1.5;
}
.ez-form__checkbox { position: absolute; opacity: 0; width: 1px; height: 1px; }
.ez-form__checkbox-custom {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid var(--color-line-60);
  background: var(--ink-soft);
  margin-top: 0.15rem;
  position: relative;
  transition: border-color var(--duration-fast), background var(--duration-fast);
}
.ez-form__checkbox:checked + .ez-form__checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}
.ez-form__checkbox:checked + .ez-form__checkbox-custom::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--ink-deep);
  clip-path: polygon(20% 50%, 40% 70%, 80% 25%, 80% 35%, 40% 82%, 20% 60%);
}
.ez-form__privacy-link { text-decoration: underline; text-underline-offset: 4px; }

.ez-form__submit { width: 100%; }
@media (min-width: 768px) { .ez-form__submit { width: auto; } }

/* Contact success */
.ez-contact__success {
  border: 1px solid var(--color-line-60);
  background: var(--ink-soft);
  padding: 2.5rem;
}
.ez-contact__success h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
.ez-contact__success p  { margin-top: 1rem; color: var(--color-muted); }

/* Honeypot */
.ez-form__honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
}

/* ── 21. CTA FINAL ────────────────────────────────────────────────────────── */
.ez-cta-final {
  position: relative;
  height: 90svh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  background: var(--ink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ez-cta-final__bg {
  position: absolute;
  inset: 0;
  transform: scale(1.1);
  will-change: transform;
}
.ez-cta-final__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ez-cta-final__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-ink-deep-70);
}
.ez-cta-final__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 55%, hsl(24 8% 6% / 0.6) 100%);
}
.ez-cta-final__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.ez-cta-final__eyebrow { justify-content: center; margin-bottom: 2rem; color: var(--color-bone-80); }
.ez-cta-final__title {
  font-size: var(--text-display-xl);
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  max-width: 64rem;
}
.ez-cta-final__desc {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-bone-75);
  line-height: 1.75;
}
.ez-cta-final__ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ── 22. FOOTER ───────────────────────────────────────────────────────────── */
.ez-footer {
  background: var(--ink-deep);
  border-top: 1px solid var(--color-line-40);
}
.ez-footer__inner { padding-block: 5rem; }

.ez-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .ez-footer__grid { grid-template-columns: 5fr 3fr 4fr; gap: 2rem; }
}

.ez-footer__brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--bone);
  transition: color var(--duration-fast);
}
.ez-footer__brand:hover { color: var(--bone-warm); }

.ez-footer__tagline {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: 28rem;
  line-height: 1.75;
}

.ez-footer__col-title { margin-bottom: 1.5rem; }
.ez-footer__nav-list,
.ez-footer__contact-list { display: flex; flex-direction: column; gap: 0.75rem; }

.ez-footer__nav-link,
.ez-footer__contact-link {
  font-size: 0.875rem;
  color: hsl(36 22% 94% / 0.8);
  transition: color var(--duration-fast);
}
.ez-footer__nav-link:hover,
.ez-footer__contact-link:hover { color: var(--bone); }

.ez-footer__address { font-size: 0.875rem; color: hsl(36 22% 94% / 0.8); line-height: 1.6; }

.ez-footer__social {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
}
.ez-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--color-line-60);
  color: hsl(36 22% 94% / 0.8);
  transition: background var(--duration-fast), color var(--duration-fast);
}
.ez-footer__social-link:hover {
  background: hsl(36 22% 94% / 0.06);
  color: var(--bone);
}

.ez-footer__bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-line-40);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .ez-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.ez-footer__copyright { font-size: 0.75rem; color: var(--color-muted); }
.ez-footer__legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ez-footer__legal-link {
  font-size: 0.75rem;
  color: var(--color-muted);
  transition: color var(--duration-fast);
}
.ez-footer__legal-link:hover { color: var(--bone); }

/* ── 23. TOAST NOTIFICATION ───────────────────────────────────────────────── */
.ez-toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ez-toast {
  background: var(--ink-soft);
  border: 1px solid var(--color-line-60);
  color: var(--bone);
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  max-width: 360px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s var(--ease-editorial);
}
.ez-toast.is-visible { opacity: 1; transform: translateY(0); }

/* ── 24. SPINNER ──────────────────────────────────────────────────────────── */
.ez-spinner {
  display: inline-block;
  animation: ez-spin 1s linear infinite;
}
@keyframes ez-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── 25. PROSE (páginas legales) ─────────────────────────────────────────── */
.ez-prose {
  color: hsl(36 22% 94% / 0.85);
  line-height: 1.8;
  max-width: 65ch;
}
.ez-prose h2 { font-family: var(--font-display); font-size: 1.5rem; margin-top: 3rem; margin-bottom: 1rem; color: var(--bone); }
.ez-prose h3 { font-family: var(--font-display); font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--bone); }
.ez-prose p  { margin-bottom: 1.25rem; }
.ez-prose ul { padding-left: 1.5rem; margin-bottom: 1.25rem; list-style: disc; }
.ez-prose a  { color: var(--accent); text-decoration: underline; }
.ez-prose a:hover { color: var(--bone); }

/* ── 26. ICONS GENÉRICOS ─────────────────────────────────────────────────── */
.ez-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.ez-icon--whatsapp { color: #25D366; }
