/* ==========================================================
   Foto Albert Impresión Digital — estilos
   ========================================================== */

:root {
  --ink: #2a1242;
  --ink-2: #5d4b70;
  --ink-3: #8a7a9b;
  --bg: #fff9fc;
  --bg-2: #f6effa;
  --surface: #ffffff;
  --line: #ece1f1;
  --line-2: #dccbe6;

  --magenta: #d11f80;
  --magenta-dark: #a8126a;
  --magenta-soft: #fde6f1;
  --pink: #f26b97;
  --mint: #3fb897;
  --mint-dark: #1b7f64;
  --mint-soft: #e2f7f0;
  --lilac: #8e6cef;
  --lilac-soft: #efe9fe;
  --whatsapp: #1fa855;

  --holo: linear-gradient(115deg, #7fe3c8 0%, #a58bf5 38%, #f59ac4 72%, #ffd3a6 100%);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(42, 18, 66, .06), 0 8px 28px rgba(42, 18, 66, .08);
  --shadow-lg: 0 2px 4px rgba(42, 18, 66, .06), 0 24px 60px rgba(42, 18, 66, .14);

  --font-head: "Outfit", ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--magenta); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--magenta-dark); }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

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

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
}
.skip-link:focus { top: 12px; color: #fff; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

section { padding: clamp(64px, 9vw, 112px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--magenta);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 6px; border-radius: 6px; background: var(--holo);
}

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head p { color: var(--ink-2); font-size: 1.08rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Botones ---------- */
.btn {
  --b: var(--magenta);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 999px; border: 2px solid var(--b);
  background: var(--b); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: 1.02rem; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s;
  box-shadow: 0 6px 18px rgba(209, 31, 128, .28);
}
.btn:hover { background: var(--magenta-dark); border-color: var(--magenta-dark); color: #fff; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); box-shadow: none; }
.btn-ghost:hover { background: var(--surface); color: var(--ink); border-color: var(--ink); }
.btn-wa { --b: var(--whatsapp); box-shadow: 0 6px 18px rgba(31, 168, 85, .28); }
.btn-wa:hover { background: #178a45; border-color: #178a45; }
.btn-block { width: 100%; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; box-shadow: none; }
.btn-light:hover { background: var(--bg-2); border-color: var(--bg-2); color: var(--ink); }
.btn-xl { min-height: 64px; padding: 0 30px; font-size: 1.15rem; margin-top: 22px; }
.btn-xl svg { width: 28px; height: 28px; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 249, 252, .86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); flex: none; }
.brand img { width: 68px; height: auto; }
.brand-text { font-family: var(--font-head); line-height: 1.05; }
.brand-text strong { display: block; font-size: 1.08rem; font-weight: 800; letter-spacing: -.01em; }
.brand-text span { font-size: .78rem; color: var(--ink-2); font-weight: 500; letter-spacing: .04em; }

.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: 8px 14px; border-radius: 999px; color: var(--ink);
  text-decoration: none; font-weight: 500; font-size: .98rem;
}
.main-nav a:hover { background: var(--bg-2); color: var(--ink); }
.header-cta { min-height: 44px; padding: 0 20px; font-size: .96rem; }

.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line-2); background: var(--surface); cursor: pointer; color: var(--ink);
}
.nav-toggle svg { margin: auto; width: 22px; height: 22px; }

@media (max-width: 1140px) {
  .nav-toggle { display: grid; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed; inset: 76px 0 auto 0; background: var(--bg);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 12px 20px 22px; display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; }
  .main-nav a { padding: 14px 12px; font-size: 1.08rem; border-radius: 12px; }
  .main-nav .nav-order { margin-top: 8px; }
  .main-nav .nav-order a { background: var(--magenta); color: #fff; text-align: center; font-weight: 700; }
}
@media (min-width: 1141px) { .main-nav .nav-order { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(closest-side, rgba(165, 139, 245, .22), transparent 70%),
              radial-gradient(closest-side at 70% 60%, rgba(127, 227, 200, .22), transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 .hl {
  background: var(--holo); -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% 100%; animation: holo 8s ease-in-out infinite alternate;
}
.hero h1 .hl-solid { color: var(--magenta); }
@keyframes holo { to { background-position: 100% 0; } }
.hero-lead { font-size: clamp(1.08rem, 1.6vw, 1.22rem); color: var(--ink-2); max-width: 560px; margin-bottom: 28px; }
.hero-price {
  display: inline-flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 12px 18px; box-shadow: var(--shadow); margin-bottom: 26px;
}
.hero-price .label { font-size: .9rem; color: var(--ink-2); }
.hero-price .amount { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--magenta); letter-spacing: -.02em; }
.hero-price .unit { font-weight: 600; color: var(--ink); }
.hero-price .mayoreo { flex-basis: 100%; font-size: .86rem; color: var(--ink-2); margin-top: 2px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; padding: 0; margin: 0; color: var(--ink-2); font-size: .95rem; }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 20px; height: 20px; color: var(--mint); flex: none; }
.hero-trust a { font-weight: 700; }

.hero-more { margin-top: 26px; padding-top: 22px; border-top: 1px dashed var(--line-2); }
.hero-more p {
  margin: 0 0 12px; font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2);
}
.hero-more ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-more a {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: .93rem; transition: border-color .15s, background .15s, color .15s;
}
.hero-more a svg { width: 18px; height: 18px; color: var(--magenta); flex: none; }
.hero-more a:hover { border-color: var(--magenta); background: var(--magenta-soft); color: var(--ink); }
.hero-more a.more { background: var(--ink); border-color: var(--ink); color: #fff; }
.hero-more a.more svg { color: #fff; }
.hero-more a.more:hover { background: var(--magenta); border-color: var(--magenta); color: #fff; }

.hero-art { position: relative; }
.hero-art svg.film { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(42, 18, 66, .18)); }
.hero-badge {
  position: absolute; left: -12px; bottom: -22px; background: var(--surface); border-radius: 16px;
  padding: 12px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  font-size: .92rem; line-height: 1.3;
}
.hero-badge img { width: 54px; }
.hero-badge strong { font-family: var(--font-head); display: block; font-size: 1.05rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-art { max-width: 460px; margin-inline: auto; width: 100%; }
}

/* ---------- Franja de beneficios ---------- */
.perks { padding: 0 0 8px; }
.perks-list {
  list-style: none; margin: 0; padding: 22px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  background: var(--ink); border-radius: 24px; color: #fff;
}
.perks-list li { display: flex; align-items: center; gap: 12px; padding: 8px 10px; font-size: .95rem; line-height: 1.3; }
.perks-list .ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex: none;
  background: rgba(255, 255, 255, .08);
}
.perks-list .ico svg { width: 22px; height: 22px; color: #9ff0d6; }
.perks-list strong { font-family: var(--font-head); display: block; font-size: 1.02rem; }
@media (max-width: 1060px) { .perks-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .perks-list { grid-template-columns: 1fr 1fr; padding: 14px; } .perks-list li:last-child { grid-column: 1 / -1; } }

/* ---------- DTF Epson ---------- */
.epson-section { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.perks + .services-section { margin-top: clamp(28px, 4vw, 48px); }
.epson-section::before {
  content: ""; position: absolute; inset: -30% -20% auto auto; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(closest-side, rgba(165, 139, 245, .28), transparent 70%); pointer-events: none;
}
.epson-section .wrap { position: relative; }
.epson-section .eyebrow { color: #9ff0d6; }
.epson-section h2 { color: #fff; }
.epson-section h2 .hl {
  background: var(--holo); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.epson-section p { color: #d9cde6; }
.epson-section p strong { color: #fff; }
.epson-section .lead { font-size: 1.12rem; }
.epson-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.epson-media { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px rgba(0, 0, 0, .35); }
@media (max-width: 900px) { .epson-grid { grid-template-columns: 1fr; gap: 28px; } }

.compare {
  margin-top: 44px; border-radius: 22px; overflow: hidden; background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
}
.compare-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; align-items: center; border-top: 1px solid rgba(255, 255, 255, .08); }
.compare-row:first-child { border-top: 0; }
.compare-row > span { padding: 16px 22px; display: flex; align-items: center; gap: 10px; font-size: .98rem; }
.compare-row > span:first-child { color: #d9cde6; font-weight: 500; }
.compare-row svg { width: 20px; height: 20px; flex: none; }
.compare .c-epson { background: rgba(127, 227, 200, .1); color: #fff; font-weight: 600; }
.compare .c-epson svg { color: #7fe3c8; }
.compare .c-gen { color: #a898ba; }
.compare .c-gen svg { color: #7d6d90; }
.compare-head > span { font-family: var(--font-head); font-weight: 700; font-size: 1rem; padding-block: 18px; }
.compare-head .c-epson { background: var(--holo); color: var(--ink); }
@media (max-width: 680px) {
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-row > span:first-child { grid-column: 1 / -1; padding-bottom: 4px; font-size: .9rem; }
  .compare-head > span:first-child { display: none; }
  .compare-row > span { padding: 12px 14px; font-size: .92rem; }
}

/* ---------- Qué es DTF ---------- */
.about-dtf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-dtf-grid .media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--bg-2); }
.checks { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.checks li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; }
.checks .tick {
  width: 30px; height: 30px; border-radius: 50%; background: var(--mint-soft); color: var(--mint-dark);
  display: grid; place-items: center; margin-top: 1px;
}
.checks .tick svg { width: 16px; height: 16px; }
.checks strong { font-family: var(--font-head); font-weight: 700; }
.checks span { color: var(--ink-2); }
@media (max-width: 900px) { .about-dtf-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Pasos ---------- */
.steps-section { background: var(--surface); border-block: 1px solid var(--line); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.steps li {
  position: relative; padding: 28px 24px 26px; border-radius: var(--radius); background: var(--bg);
  border: 1px solid var(--line); counter-increment: step;
}
.steps li::before {
  content: counter(step); display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: 18px;
  background: var(--magenta);
}
.steps li:nth-child(2)::before { background: var(--lilac); }
.steps li:nth-child(3)::before { background: var(--whatsapp); }
.steps li:nth-child(4)::before { background: var(--mint-dark); }
.steps p { color: var(--ink-2); margin: 0; font-size: .98rem; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Pedido ---------- */
.order-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.order-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 28px; align-items: start; }
@media (max-width: 980px) { .order-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow); padding: clamp(22px, 3.2vw, 36px);
}
.order-form fieldset { border: 0; padding: 0; margin: 0 0 30px; min-width: 0; }
.order-form legend {
  display: flex; align-items: center; gap: 12px; padding: 0; margin-bottom: 18px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.22rem;
}
.order-form legend .n {
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; flex: none;
  background: var(--magenta-soft); color: var(--magenta); font-size: 1rem; font-weight: 800;
}

.field { margin-bottom: 16px; }
.field label, .field .label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 6px; }
.field .hint { font-size: .86rem; color: var(--ink-3); margin-top: 6px; }
.field .opt { font-weight: 400; color: var(--ink-3); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .row-2 { grid-template-columns: 1fr; } }

input[type="text"], input[type="tel"], input[type="email"], input[type="url"], input[type="number"], textarea, select {
  width: 100%; min-height: 50px; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line-2);
  background: #fff; color: var(--ink); font: inherit; font-size: 1rem; transition: border-color .15s, box-shadow .15s;
}
textarea { min-height: 96px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--lilac); box-shadow: 0 0 0 4px var(--lilac-soft); }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #d6334a; box-shadow: 0 0 0 4px #fde4e8; }
.error-msg { color: #b3263b; font-size: .88rem; margin-top: 6px; }

/* Selector de metros */
.qty {
  display: flex; align-items: stretch; border: 1.5px solid var(--line-2); border-radius: 16px;
  overflow: hidden; background: #fff; max-width: 320px;
}
.qty button {
  width: 58px; border: 0; background: var(--bg-2); color: var(--ink); cursor: pointer; font-size: 1.5rem;
  font-weight: 600; display: grid; place-items: center;
}
.qty button:hover { background: var(--line); }
.qty input {
  border: 0; border-radius: 0; text-align: center; font-family: var(--font-head); font-weight: 800;
  font-size: 1.6rem; min-height: 64px; -moz-appearance: textfield; appearance: textfield;
}
.qty input:focus { box-shadow: none; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-unit { align-self: center; padding: 0 14px 0 0; color: var(--ink-2); font-weight: 600; background: #fff; }

.helper-toggle {
  margin-top: 12px; background: none; border: 0; padding: 0; color: var(--magenta); font: inherit;
  font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.helper-toggle svg { width: 18px; height: 18px; transition: transform .2s; }
.helper-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.helper {
  margin-top: 14px; padding: 18px; border-radius: 16px; background: var(--lilac-soft);
  border: 1px solid #ddd2fb;
}
.helper p.small { font-size: .9rem; color: var(--ink-2); margin-bottom: 12px; }
.helper .row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 480px) { .helper .row-3 { grid-template-columns: 1fr 1fr; } .helper .row-3 .field:last-child { grid-column: 1 / -1; } }
.helper .field { margin-bottom: 0; }
.helper-result {
  margin-top: 14px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  background: #fff; border-radius: 12px; padding: 12px 14px;
}
.helper-result p { margin: 0; font-size: .95rem; }
.helper-result .btn { min-height: 42px; padding: 0 18px; font-size: .92rem; box-shadow: none; }

/* Opción "no tengo diseño" */
.design-opt {
  display: flex; gap: 14px; align-items: flex-start; padding: 16px; margin-bottom: 14px; border-radius: 16px;
  border: 1.5px solid var(--line-2); background: #fff; cursor: pointer; transition: border-color .15s, background .15s;
}
.design-opt input { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--magenta); flex: none; }
.design-opt-box {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: none;
  background: var(--lilac-soft); color: var(--lilac);
}
.design-opt-box svg { width: 22px; height: 22px; }
.design-opt strong { display: block; font-family: var(--font-head); font-size: 1.02rem; }
.design-opt > span:last-child { font-size: .9rem; color: var(--ink-2); line-height: 1.4; }
.design-opt:hover { border-color: var(--magenta); }
.design-opt:has(input:checked) { border-color: var(--magenta); background: var(--magenta-soft); }
.dropzone.optional { opacity: .75; padding-block: 20px; }

/* Zona de archivos */
.dropzone {
  position: relative; display: grid; place-items: center; text-align: center; gap: 6px;
  padding: 30px 20px; border: 2px dashed var(--line-2); border-radius: 18px; background: var(--bg);
  cursor: pointer; transition: border-color .15s, background .15s;
}
.dropzone:hover, .dropzone.drag { border-color: var(--magenta); background: var(--magenta-soft); }
.dropzone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.dropzone .dz-ico {
  width: 56px; height: 56px; border-radius: 16px; background: var(--surface); display: grid; place-items: center;
  box-shadow: var(--shadow); color: var(--magenta); margin-bottom: 4px;
}
.dropzone .dz-ico svg { width: 26px; height: 26px; }
.dropzone strong { font-family: var(--font-head); font-size: 1.08rem; }
.dropzone span { font-size: .88rem; color: var(--ink-3); }
.file-list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 8px; }
.file-list li {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px;
  background: var(--bg-2); font-size: .94rem;
}
.file-list .fname { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; }
.file-list .fsize { color: var(--ink-3); flex: none; }
.file-list button {
  flex: none; width: 32px; height: 32px; border-radius: 8px; border: 0; background: #fff; cursor: pointer;
  color: var(--ink-2); display: grid; place-items: center;
}
.file-list button:hover { color: #b3263b; }
.file-list button svg { width: 16px; height: 16px; }
.file-list .bad { background: #fde4e8; }

/* Opciones de entrega */
.choice-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .choice-group { grid-template-columns: 1fr; } }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice label {
  display: flex; gap: 12px; align-items: flex-start; height: 100%; padding: 16px; border-radius: 14px;
  border: 1.5px solid var(--line-2); background: #fff; cursor: pointer; margin: 0; font-weight: 400;
  transition: border-color .15s, background .15s;
}
.choice label svg { width: 24px; height: 24px; color: var(--ink-2); flex: none; margin-top: 2px; }
.choice label strong { display: block; font-family: var(--font-head); font-size: 1.02rem; color: var(--ink); }
.choice label > span > span { font-size: .88rem; color: var(--ink-3); }
.choice input:checked + label { border-color: var(--magenta); background: var(--magenta-soft); }
.choice input:checked + label svg { color: var(--magenta); }
.choice input:focus-visible + label { outline: 3px solid var(--lilac); outline-offset: 2px; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .94rem; color: var(--ink-2); margin: 4px 0 20px; }
.consent input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--magenta); flex: none; }

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

.form-alert { border-radius: 14px; padding: 14px 16px; margin-bottom: 18px; font-size: .95rem; }
.form-alert.err { background: #fde4e8; color: #8f1c2f; }
.form-alert.warn { background: #fff3d6; color: #6b4a00; }

.progress { height: 10px; border-radius: 10px; background: var(--bg-2); overflow: hidden; margin: 14px 0 6px; }
.progress span { display: block; height: 100%; width: 0; background: var(--holo); transition: width .2s; }
.progress-label { font-size: .88rem; color: var(--ink-2); text-align: center; }

/* Resumen */
.summary { position: sticky; top: 96px; }
.summary h3 { font-size: 1.3rem; margin-bottom: 18px; }
.summary-film {
  display: flex; gap: 16px; align-items: center; padding: 16px; border-radius: 16px; background: var(--bg-2); margin-bottom: 18px;
}
.film-bar {
  position: relative; width: 58px; height: 110px; border-radius: 8px; overflow: hidden; flex: none;
  background-color: #fff;
  background-image: linear-gradient(45deg, #efe7f4 25%, transparent 25%, transparent 75%, #efe7f4 75%),
                    linear-gradient(45deg, #efe7f4 25%, transparent 25%, transparent 75%, #efe7f4 75%);
  background-size: 12px 12px; background-position: 0 0, 6px 6px;
  border: 1px solid var(--line-2);
}
.film-bar span {
  position: absolute; inset: auto 0 0 0; background: var(--holo); opacity: .9; transition: height .3s ease;
}
.summary-film p { margin: 0; font-size: .92rem; color: var(--ink-2); line-height: 1.4; }
.summary-film strong { font-family: var(--font-head); color: var(--ink); font-size: 1.3rem; display: block; }
.summary dl { margin: 0; display: grid; gap: 10px; }
.summary dl div { display: flex; justify-content: space-between; gap: 12px; font-size: .98rem; }
.summary dt { color: var(--ink-2); }
.summary dd { margin: 0; font-weight: 600; text-align: right; }
.summary .total { border-top: 1px dashed var(--line-2); padding-top: 14px; margin-top: 6px; align-items: baseline; }
.summary .total dt { color: var(--ink); font-weight: 700; font-family: var(--font-head); font-size: 1.1rem; }
.summary .total dd { font-family: var(--font-head); font-size: 1.8rem; color: var(--magenta); font-weight: 800; }
.summary .fine { font-size: .84rem; color: var(--ink-3); margin: 14px 0 0; }
.mayoreo-note {
  display: flex; gap: 8px; align-items: flex-start; margin: 14px 0 0; padding: 12px 14px; border-radius: 12px;
  background: var(--mint-soft); color: var(--mint-dark); font-size: .88rem; line-height: 1.4;
}
.mayoreo-note svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }
.mayoreo-note a { color: var(--mint-dark); font-weight: 700; }
.tiers { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .9rem; }
.tiers h4 { font-size: .95rem; margin-bottom: 8px; }
.tiers ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.tiers li { display: flex; justify-content: space-between; color: var(--ink-2); }
.tiers li.on { color: var(--magenta); font-weight: 700; }

/* Éxito */
.success { text-align: center; padding: 12px 4px; }
.success .big-ico {
  width: 76px; height: 76px; border-radius: 24px; margin: 0 auto 18px; display: grid; place-items: center;
  background: var(--mint-soft); color: var(--mint-dark);
}
.success .big-ico svg { width: 38px; height: 38px; }
.success .folio {
  display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: .04em;
  padding: 10px 18px; border-radius: 14px; background: var(--bg-2); margin: 6px 0 18px;
}
.success p { color: var(--ink-2); max-width: 480px; margin-inline: auto; }
.success .btn { margin-top: 8px; }
.success .again { display: inline-block; margin-top: 18px; font-size: .95rem; }

/* ---------- Guía de archivo ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-item {
  padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line);
}
.guide-item .gi {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--lilac-soft); color: var(--lilac);
}
.guide-item:nth-child(3n+2) .gi { background: var(--mint-soft); color: var(--mint-dark); }
.guide-item:nth-child(3n) .gi { background: var(--magenta-soft); color: var(--magenta); }
.guide-item .gi svg { width: 24px; height: 24px; }
.guide-item p { color: var(--ink-2); margin: 0; font-size: .98rem; }
.guide-note {
  margin-top: 22px; padding: 18px 22px; border-radius: var(--radius); background: var(--ink); color: #fff;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.guide-note p { margin: 0; }
.guide-note .btn { min-height: 46px; }
@media (max-width: 900px) { .guide-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .guide-grid { grid-template-columns: 1fr; } }

/* ---------- Otros servicios ---------- */
.services-section { background: var(--surface); border-block: 1px solid var(--line); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service {
  position: relative;
  display: flex; flex-direction: column; padding: 28px; border-radius: var(--radius); background: var(--bg);
  border: 1px solid var(--line); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.service .si {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--surface); border: 1px solid var(--line); color: var(--magenta);
}
.service:nth-child(4n+2) .si { color: var(--lilac); }
.service:nth-child(4n+3) .si { color: var(--mint-dark); }
.service:nth-child(4n) .si { color: var(--pink); }
.service .si svg { width: 26px; height: 26px; }
.service h3 { font-size: 1.22rem; margin-bottom: 8px; }
.service p { color: var(--ink-2); font-size: .98rem; margin: 0 0 18px; flex: 1; }
.service-cta {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  border-radius: 999px; background: var(--whatsapp); color: #fff; font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: background .15s, transform .15s;
}
.service-cta svg { width: 20px; height: 20px; }
.service-cta:hover { background: #178a45; color: #fff; transform: translateY(-1px); }
.service-featured { background: linear-gradient(160deg, var(--magenta-soft), #fff 70%); border-color: #f6c3dc; }
.service-featured .si { background: var(--magenta); border-color: var(--magenta); color: #fff !important; }
.service-badge {
  position: absolute; top: 20px; right: 20px; display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px; background: var(--magenta); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
}
.service-badge svg { width: 16px; height: 16px; }
.services-note { text-align: center; color: var(--ink-3); margin-top: 26px; font-size: .95rem; }
@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* Categorías de servicios */
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cat {
  --c: var(--magenta); --c-soft: var(--magenta-soft);
  display: flex; flex-direction: column; border-radius: 24px; background: var(--bg);
  border: 1px solid var(--line); overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.cat:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.cat-print { --c: #7b55e8; --c-soft: var(--lilac-soft); }
.cat-perso { --c: var(--mint-dark); --c-soft: var(--mint-soft); }
.cat-event { --c: #e2587f; --c-soft: #ffe8ee; }
.cat-img { aspect-ratio: 16 / 7; overflow: hidden; background: var(--c-soft); }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat:hover .cat-img img { transform: scale(1.04); }
.cat-head {
  position: relative; display: flex; align-items: center; gap: 16px; padding: 24px 26px;
  background: var(--c-soft); border-bottom: 1px solid var(--line);
}
.cat-ico {
  width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; flex: none;
  background: var(--c); color: #fff; box-shadow: 0 8px 20px rgba(42, 18, 66, .15);
}
.cat-ico svg { width: 32px; height: 32px; }
.cat-head h3 { font-size: 1.45rem; margin: 0 0 2px; }
.cat-head p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.cat-head .service-badge { top: 50%; transform: translateY(-50%); right: 22px; }
.cat-list { list-style: none; margin: 0; padding: 20px 26px 8px; display: grid; gap: 10px; flex: 1; }
.cat-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 1rem; line-height: 1.45; }
.cat-list li > svg { width: 20px; height: 20px; flex: none; color: var(--c); margin-top: 2px; }
.cat-list a { font-weight: 700; }
.cat .service-cta { margin: 14px 26px 26px; }
@media (max-width: 860px) { .cat-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .cat-head { padding: 20px; flex-wrap: wrap; }
  .cat-head .service-badge { position: static; transform: none; }
  .cat-list { padding: 18px 20px 6px; }
  .cat .service-cta { margin: 12px 20px 22px; }
}

/* Banda "te hacemos tu diseño" */
.design-band {
  margin-top: 28px; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  padding: clamp(24px, 3.4vw, 36px); border-radius: 24px; color: #fff;
  background: linear-gradient(120deg, #a8126a 0%, var(--magenta) 45%, #8e6cef 100%);
  box-shadow: 0 20px 50px rgba(209, 31, 128, .25);
}
.design-ico {
  width: 76px; height: 76px; border-radius: 22px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .16);
}
.design-ico svg { width: 38px; height: 38px; color: #fff; }
.design-photo {
  width: 170px; aspect-ratio: 1; border-radius: 22px; overflow: hidden; flex: none;
  border: 4px solid rgba(255, 255, 255, .35); box-shadow: 0 12px 30px rgba(42, 18, 66, .25);
}
.design-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .design-photo { width: 100%; aspect-ratio: 16 / 7; } }
.design-text h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 8px; color: #fff; }
.design-text p { margin: 0; color: #ffe3f1; max-width: 620px; }
.design-actions { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 900px) {
  .design-band { grid-template-columns: 1fr; text-align: left; }
  .design-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ---------- Testimonios ---------- */
.testimonials-section { background: var(--surface); border-block: 1px solid var(--line); }
.testimonials { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; max-width: 1000px; margin-inline: auto; }
.testimonial {
  margin: 0; padding: 32px; border-radius: 24px; background: var(--bg); border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: space-between; gap: 22px; position: relative;
}
.testimonial::before {
  content: "“"; position: absolute; top: 6px; right: 24px; font-family: var(--font-head); font-weight: 800;
  font-size: 6rem; line-height: 1; color: var(--magenta-soft);
}
.testimonial blockquote { margin: 0; font-size: 1.1rem; line-height: 1.6; position: relative; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: var(--holo); color: var(--ink); font-weight: 800;
}
@media (max-width: 760px) { .testimonials { grid-template-columns: 1fr; } }

/* ---------- Nosotros ---------- */
.values { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.values li {
  padding: 6px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line-2);
  font-size: .9rem; font-weight: 600; color: var(--ink-2);
}
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.about-visual {
  position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 1; background: var(--bg-2);
  box-shadow: var(--shadow-lg);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.stat { padding: 18px; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); }
.stat strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1; color: var(--magenta); margin-bottom: 6px; }
.stat:nth-child(2) strong { color: var(--lilac); }
.stat:nth-child(3) strong { color: var(--mint-dark); }
.stat > span { font-size: .9rem; color: var(--ink-2); line-height: 1.3; display: block; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } .about-visual { max-width: 380px; } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 0 22px;
  transition: box-shadow .2s;
}
.faq-list details[open] { box-shadow: var(--shadow); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 20px 0; font-family: var(--font-head); font-weight: 700;
  font-size: 1.08rem; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; flex: none; width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center;
  background: var(--bg-2); color: var(--magenta); font-size: 1.4rem; font-weight: 600; transition: transform .2s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--ink-2); margin: 0 0 20px; }

/* ---------- Contacto ---------- */
.contact-section { background: var(--ink); color: #fff; }
.contact-section .eyebrow { color: #9ff0d6; }
.contact-section h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: stretch; }
.contact-list { list-style: none; margin: 26px 0 30px; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; }
.contact-list .ci {
  width: 48px; height: 48px; border-radius: 14px; background: rgba(255, 255, 255, .08); display: grid; place-items: center;
}
.contact-list .ci svg { width: 22px; height: 22px; color: #f7a8cb; }
.contact-list small { display: block; color: #bfb0cf; font-size: .85rem; }
.contact-list small.landmark { color: #9ff0d6; font-size: .9rem; margin-top: 2px; }
.contact-list a, .contact-list span.v { color: #fff; font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-list .hours { display: grid; grid-template-columns: max-content max-content; gap: 2px 16px; font-weight: 500; }
.contact-list .hours span:nth-child(odd) { color: #bfb0cf; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #fff;
  background: rgba(255, 255, 255, .08); transition: background .15s;
}
.socials a:hover { background: var(--magenta); }
.socials svg { width: 22px; height: 22px; }
.map { border-radius: 24px; overflow: hidden; min-height: 380px; background: #3a2256; }
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: #1d0b30; color: #cdbfdc; padding: 44px 0 140px; font-size: .92rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 64px; }
.footer-brand strong { color: #fff; font-family: var(--font-head); display: block; font-size: 1.05rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: #cdbfdc; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.copy { width: 100%; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 20px; margin-top: 6px; color: #9d8db0; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60; display: flex; align-items: center; gap: 14px;
  min-height: 84px; padding: 10px 30px 10px 12px; border-radius: 999px; background: var(--whatsapp); color: #fff;
  text-decoration: none; font-family: var(--font-head); line-height: 1.15;
  box-shadow: 0 14px 40px rgba(31, 168, 85, .5), 0 0 0 4px #fff;
  transition: transform .15s, background .15s;
}
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; border: 3px solid var(--whatsapp);
  animation: wa-pulse 2.4s ease-out infinite; pointer-events: none;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.18); opacity: 0; } }
.wa-float:hover { color: #fff; background: #178a45; transform: translateY(-2px); }
.wa-float-ico {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: rgba(255, 255, 255, .18);
}
.wa-float-ico svg { width: 40px; height: 40px; }
.wa-float-text strong { display: block; font-size: 1.25rem; font-weight: 800; }
.wa-float-text span { display: block; font-size: 1.05rem; font-weight: 600; opacity: .95; margin-top: 2px; }
@media (max-width: 560px) {
  .wa-float { left: 12px; right: 12px; bottom: 12px; min-height: 72px; padding: 8px 18px 8px 8px; justify-content: center; }
  .wa-float-ico { width: 54px; height: 54px; }
  .wa-float-ico svg { width: 34px; height: 34px; }
  .wa-float-text strong { font-size: 1.12rem; }
  .wa-float-text span { font-size: 1rem; }
}

/* ---------- Página legal ---------- */
.legal { padding: 56px 0 90px; }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal h2 { font-size: 1.35rem; margin-top: 36px; }
.legal p, .legal li { color: var(--ink-2); }

/* ---------- Animación de entrada ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
