/* ==========================================================================
   ASZENDIA — Sistema de diseño v2
   Agencia de Marketing Digital e IA · Tema claro editorial · Secciones distintas
   ========================================================================== */

/* ----------------------------------------------------------------------------
   1. Tokens
---------------------------------------------------------------------------- */
:root {
  /* Marca (rojo → morado, coherente con la home) */
  --orange: #ff5757;
  --pink:   #8c52ff;
  --magenta:#d43aa0;
  --purple: #8c52ff;
  --violet: #8c52ff;
  --grad: linear-gradient(90deg, #ff5757 0%, #8c52ff 100%);
  --grad-2: linear-gradient(120deg, #ff5757, #8c52ff);

  /* Superficies (claro) */
  --bg:      #ffffff;
  --bg-soft: #f6f5f8;
  --bg-tint: #faf7fb;
  --card:    #ffffff;
  --ink-bg:  #0c0a14;   /* secciones oscuras de contraste */
  --ink-bg-2:#131020;

  /* Tinta / texto */
  --ink:   #11101a;
  --ink-2: #56555f;
  --ink-3: #8b8a95;
  --on-dark:   #f5f3f7;
  --on-dark-2: rgba(245,243,247,0.66);

  /* Líneas */
  --line:  rgba(17,16,26,0.09);
  --line-2:rgba(17,16,26,0.16);
  --line-dark: rgba(255,255,255,0.12);

  /* Radios */
  --r: 22px; --r-lg: 30px; --r-sm: 14px; --r-xl: 40px;

  /* Sombra suave (tema claro) */
  --sh-sm: 0 2px 10px rgba(17,16,26,0.05);
  --sh:    0 18px 50px -20px rgba(17,16,26,0.18);
  --sh-lg: 0 40px 90px -30px rgba(17,16,26,0.28);
  --sh-brand: 0 18px 40px -14px rgba(245,65,126,0.45);

  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------------------------------------------------------------------------
   2. Reset / base
---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease), opacity 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: rgba(245,65,126,0.18); }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--pink), var(--purple)); border-radius: 10px; border: 3px solid var(--bg-soft); }

/* ----------------------------------------------------------------------------
   3. Layout utilidades
---------------------------------------------------------------------------- */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 26px; }
.container-wide { max-width: 1320px; }
.narrow { max-width: 780px; }
.section { padding-block: clamp(76px, 10vw, 132px); position: relative; }
.center { text-align: center; }

.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* Acento en degradado (coherente con la home) */
.accent { font-weight: 700; }
.accent.grad-text { padding-right: 0.06em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--pink);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad); }
.eyebrow.on-dark { color: #ff9a5c; }
.center .eyebrow, .eyebrow.center-eyebrow { justify-content: center; }

h1,h2,h3,h4 { font-weight: 640; line-height: 1.05; letter-spacing: -0.035em; color: var(--ink); }
.display { font-size: clamp(2.7rem, 6.6vw, 5.3rem); font-weight: 660; letter-spacing: -0.05em; line-height: 0.98; }
.h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); }
.h2 { font-size: clamp(2rem, 4.3vw, 3.2rem); letter-spacing: -0.045em; }
.h3 { font-size: clamp(1.3rem, 2.3vw, 1.7rem); }
.lead { font-size: clamp(1.08rem, 1.55vw, 1.3rem); color: var(--ink-2); font-weight: 400; letter-spacing: -0.01em; }
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 20px; }
.on-ink, .on-ink h1, .on-ink h2, .on-ink h3 { color: var(--on-dark); }
.on-ink .lead { color: var(--on-dark-2); }

/* ----------------------------------------------------------------------------
   4. Botones
---------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; font-size: 15.5px; font-weight: 600; border-radius: 100px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -14px rgba(245,65,126,0.6); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-outline.on-dark { color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-outline.on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.btn-lg { padding: 17px 34px; font-size: 16.5px; }
.btn-sm { padding: 11px 20px; font-size: 14px; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--pink); }
.link-arrow svg { transition: transform 0.35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ----------------------------------------------------------------------------
   5. Nav
---------------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; padding-block: 18px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.8); backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line); padding-block: 11px;
}
.nav-inner { max-width: 1200px; margin-inline: auto; padding-inline: 26px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 28px; width: auto; transition: transform 0.4s var(--ease); }
.nav-logo:hover img { transform: scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 9px 14px; border-radius: 100px; transition: color 0.3s, background 0.3s; }
.nav-links a:hover { color: var(--ink); background: rgba(17,16,26,0.05); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s; top: 50%; }
.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px); display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 40px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-size: 1.9rem; font-weight: 640; letter-spacing: -0.03em; padding: 12px 0; border-bottom: 1px solid var(--line); transition: color 0.3s, padding-left 0.4s var(--ease); }
.mobile-menu a:hover { color: var(--pink); padding-left: 8px; }
.mobile-menu .btn { margin-top: 26px; font-size: 1.05rem; }

/* ----------------------------------------------------------------------------
   6. HERO
---------------------------------------------------------------------------- */
.hero { position: relative; padding-top: 130px; overflow: hidden; }
.hero-glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow.g1 { width: 40vw; height: 40vw; left: -12%; top: -6%; background: radial-gradient(circle, rgba(255,122,47,0.16), transparent 62%); }
.hero-glow.g2 { width: 42vw; height: 42vw; right: -14%; top: 8%; background: radial-gradient(circle, rgba(155,63,212,0.16), transparent 62%); }
.hero-inner { position: relative; z-index: 3; text-align: center; max-width: 940px; margin-inline: auto; }
.hero .pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 16px 7px 8px; margin-bottom: 30px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); border-radius: 100px; box-shadow: var(--sh-sm);
}
.hero .pill .tag { background: var(--grad); color: #fff; font-weight: 600; padding: 4px 11px; border-radius: 100px; font-size: 12px; }
.hero h1 { margin-bottom: 26px; }
.hero .lead { max-width: 620px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; font-size: 14px; color: var(--ink-2); }
.hero-rating .stars { color: var(--orange); letter-spacing: 2px; }
.hero-rating .faces { display: flex; }
.hero-rating .faces span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; margin-left: -9px; background: var(--grad); display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 700; }

/* Banner de vídeo */
.hero-reel {
  position: relative; z-index: 2; margin-top: clamp(48px, 7vw, 84px);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg);
  border: 1px solid var(--line); aspect-ratio: 21 / 9; background: #0c0a14;
}
.hero-reel video { width: 100%; height: 100%; object-fit: cover; }
.hero-reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(12,10,20,0.35)); pointer-events: none; }
.reel-badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 3; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 16px; border-radius: 100px; color: #fff; font-size: 13.5px; font-weight: 500;
}
.reel-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #46e17f; box-shadow: 0 0 0 4px rgba(70,225,127,0.25); }
.reel-stat {
  position: absolute; right: 22px; top: 22px; z-index: 3; text-align: right;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border-radius: 16px; padding: 14px 20px; box-shadow: var(--sh);
}
.reel-stat .n { font-size: 1.7rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.reel-stat .l { font-size: 12px; color: var(--ink-2); margin-top: 3px; }

/* ----------------------------------------------------------------------------
   7. Marcas (trust)
---------------------------------------------------------------------------- */
.trust { padding-block: 46px; border-bottom: 1px solid var(--line); }
.trust p { text-align: center; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 26px; font-weight: 600; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 34s linear infinite; align-items: center; }
.marquee-track span { font-size: clamp(1.05rem, 2vw, 1.45rem); font-weight: 600; color: var(--ink-3); white-space: nowrap; letter-spacing: -0.02em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------------------
   8. SERVICIOS — filas alternas (feature rows)
---------------------------------------------------------------------------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; padding-block: clamp(44px, 6vw, 72px); }
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row:nth-child(even) .feature-text { order: 2; }
.feature-num { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--pink); margin-bottom: 16px; display: block; }
.feature-text h3 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); letter-spacing: -0.04em; margin-bottom: 18px; }
.feature-text p { color: var(--ink-2); font-size: 1.08rem; max-width: 460px; margin-bottom: 24px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.feature-tags span { font-size: 13px; color: var(--ink-2); padding: 6px 14px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 100px; }

/* Visual / mini-mockup por servicio */
.feature-visual { position: relative; aspect-ratio: 4 / 3.2; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--bg-soft); box-shadow: var(--sh); display: grid; place-items: center; }
.feature-visual .mock { width: 82%; }
.mock-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--sh-sm); padding: 16px 18px; }
.mock-bar { height: 9px; border-radius: 6px; background: var(--bg-soft); }
.mock-bar.grad { background: var(--grad); }
.mock-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 100px; }

/* fondos suaves por servicio */
.tone-ia   { background: linear-gradient(150deg, #f3ecff, #fbf5ff); }
.tone-seo  { background: linear-gradient(150deg, #ffeef4, #fff4f8); }
.tone-ads  { background: linear-gradient(150deg, #fff0e6, #fff7f0); }
.tone-soc  { background: linear-gradient(150deg, #ffe9f3, #fff2f9); }
.tone-web  { background: linear-gradient(150deg, #eaf0ff, #f3f6ff); }

/* ----------------------------------------------------------------------------
   9. RESULTADOS — banda oscura de contraste
---------------------------------------------------------------------------- */
.band-dark { background: var(--ink-bg); color: var(--on-dark); position: relative; overflow: hidden; }
.band-dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 15% 0%, rgba(255,122,47,0.16), transparent 60%), radial-gradient(ellipse 50% 70% at 90% 100%, rgba(155,63,212,0.2), transparent 60%); pointer-events: none; }
.band-dark .container { position: relative; z-index: 2; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-cell { text-align: center; padding: 10px; }
.stat-cell .n { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 680; letter-spacing: -0.05em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-cell .l { color: var(--on-dark-2); margin-top: 14px; font-size: 14.5px; }
.stats-divider { display: grid; grid-template-columns: repeat(4, 1fr); }

/* ----------------------------------------------------------------------------
   10. PROCESO — timeline horizontal
---------------------------------------------------------------------------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 20px; }
.timeline::before { content: ""; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple)); opacity: 0.35; }
.tl-step { position: relative; text-align: left; }
.tl-node { width: 54px; height: 54px; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm); display: grid; place-items: center; margin-bottom: 24px; position: relative; z-index: 2; }
.tl-node span { font-family: var(--serif); font-style: italic; font-size: 1.4rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.tl-step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.tl-step p { color: var(--ink-2); font-size: 15px; }

/* ----------------------------------------------------------------------------
   11. POR QUÉ — bento asimétrico
---------------------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 20px; }
.bento-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; box-shadow: var(--sh-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); display: flex; flex-direction: column; }
.bento-item:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.bento-item .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--bg-soft); border: 1px solid var(--line); margin-bottom: 20px; }
.bento-item .ic svg { width: 24px; height: 24px; stroke: url(#brandGrad); }
.bento-item h3 { font-size: 1.2rem; margin-bottom: 10px; }
.bento-item p { color: var(--ink-2); font-size: 15px; flex-grow: 1; }
.bento-lg { grid-column: span 2; }
.bento-feature { grid-column: span 1; grid-row: span 2; background: var(--ink-bg); color: var(--on-dark); position: relative; overflow: hidden; justify-content: flex-end; }
.bento-feature::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(245,65,126,0.28), transparent 60%); }
.bento-feature > * { position: relative; z-index: 2; }
.bento-feature h3 { color: #fff; font-size: 1.6rem; }
.bento-feature p { color: var(--on-dark-2); }
.bento-feature .big-emoji { font-size: 2.6rem; margin-bottom: auto; }

/* ----------------------------------------------------------------------------
   12. TESTIMONIOS — destacado + secundarios
---------------------------------------------------------------------------- */
.tst-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 22px; }
.tst-feature { background: var(--ink-bg); color: var(--on-dark); border-radius: var(--r-lg); padding: clamp(34px, 4vw, 52px); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.tst-feature::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 100% 0%, rgba(155,63,212,0.32), transparent 55%), radial-gradient(ellipse at 0% 100%, rgba(255,122,47,0.2), transparent 55%); }
.tst-feature > * { position: relative; z-index: 2; }
.tst-feature .stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 24px; font-size: 1.1rem; }
.tst-feature .q { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 2.7vw, 2.1rem); line-height: 1.32; color: #fff; letter-spacing: -0.02em; flex-grow: 1; }
.tst-feature .who { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.tst-side { display: flex; flex-direction: column; gap: 22px; }
.tst-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; box-shadow: var(--sh-sm); flex: 1; display: flex; flex-direction: column; }
.tst-card .stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.95rem; }
.tst-card .q { font-size: 1.02rem; color: var(--ink); line-height: 1.55; flex-grow: 1; }
.tst-card .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 15px; background: var(--grad); flex-shrink: 0; }
.who .name { font-weight: 650; font-size: 14.5px; }
.who .role { font-size: 12.5px; color: var(--ink-3); }
.tst-feature .who .name { color: #fff; } .tst-feature .who .role { color: var(--on-dark-2); }

/* ----------------------------------------------------------------------------
   13. PRECIOS
---------------------------------------------------------------------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 34px; display: flex; flex-direction: column; box-shadow: var(--sh-sm); position: relative; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.plan:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.plan.pop { background: var(--ink-bg); color: var(--on-dark); border-color: transparent; box-shadow: var(--sh-lg); }
.plan.pop::before { content: ""; position: absolute; inset: 0; border-radius: var(--r); background: radial-gradient(circle at 50% 0%, rgba(245,65,126,0.22), transparent 60%); pointer-events: none; }
.plan.pop > * { position: relative; z-index: 2; }
.plan .badge { position: absolute; top: 22px; right: 22px; font-size: 11.5px; font-weight: 600; padding: 5px 12px; border-radius: 100px; color: #fff; background: var(--grad); }
.plan .pname { font-size: 1.15rem; font-weight: 640; }
.plan .pdesc { color: var(--ink-3); font-size: 14px; margin-top: 6px; min-height: 40px; }
.plan.pop .pdesc { color: var(--on-dark-2); }
.plan .price { margin: 22px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.plan .price .amt { font-size: 3rem; font-weight: 680; letter-spacing: -0.05em; }
.plan.pop .price .amt { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.plan .price .per { color: var(--ink-3); font-size: 14px; }
.plan .pnote { font-size: 13px; color: var(--ink-3); margin-bottom: 26px; }
.plan.pop .pnote { color: var(--on-dark-2); }
.plan ul { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex-grow: 1; }
.plan li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink-2); align-items: flex-start; }
.plan.pop li { color: var(--on-dark-2); }
.plan li svg { flex-shrink: 0; margin-top: 3px; color: var(--pink); }
.plan .btn { width: 100%; }

/* ----------------------------------------------------------------------------
   14. BLOG preview — editorial (destacado + lista)
---------------------------------------------------------------------------- */
.blog-editorial { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: start; }
.post-feature { display: block; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.post-feature:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.post-feature .thumb { aspect-ratio: 16/10; display: grid; place-items: center; }
.post-feature .thumb .ti { width: 66px; height: 66px; }
.post-feature .pf-body { padding: 28px 30px 32px; background: #fff; }
.post-list { display: flex; flex-direction: column; }
.post-item { display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); transition: transform 0.35s var(--ease); }
.post-item:first-child { border-top: none; padding-top: 0; }
.post-item:hover { transform: translateX(5px); }
.post-item .pi-thumb { width: 92px; height: 72px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; }
.post-item .pi-thumb .ti { width: 30px; height: 30px; }
.post-item h3 { font-size: 1.08rem; line-height: 1.3; margin-bottom: 6px; }
.post-item:hover h3 { color: var(--pink); }
.post-cat { display: inline-flex; align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.post-meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--ink-3); margin-top: 12px; }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); }

/* Gradientes de miniatura */
.thumb-ia   { background: linear-gradient(135deg, #7c3aed, #b06bff); }
.thumb-seo  { background: linear-gradient(135deg, #f5417e, #ff86ac); }
.thumb-ads  { background: linear-gradient(135deg, #ff7a2f, #ffb06b); }
.thumb-social { background: linear-gradient(135deg, #e5308a, #ff6bc0); }
.thumb-web  { background: linear-gradient(135deg, #6d5cff, #9b3fd4); }
.thumb-estrategia { background: linear-gradient(135deg, #ff5e6c, #ff9e5c); }
.ti svg { width: 100%; height: 100%; }

/* ----------------------------------------------------------------------------
   15. FAQ
---------------------------------------------------------------------------- */
.faq-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; text-align: left; font-size: 17px; font-weight: 600; color: var(--ink); }
.faq-q .plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--pink); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.4s; }
.faq-q .plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-q .plus::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; color: var(--ink-2); font-size: 15.5px; }

/* ----------------------------------------------------------------------------
   16. CTA band
---------------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(50px, 8vw, 96px); text-align: center; background: var(--ink-bg); color: var(--on-dark); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 20% 10%, rgba(255,122,47,0.28), transparent 55%), radial-gradient(ellipse 60% 90% at 85% 100%, rgba(155,63,212,0.34), transparent 55%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 18px; }
.cta-band p { max-width: 540px; margin: 0 auto 34px; color: var(--on-dark-2); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----------------------------------------------------------------------------
   17. CONTACTO
---------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: stretch; }
.contact-info { background: var(--ink-bg); color: var(--on-dark); border-radius: var(--r-lg); padding: clamp(32px, 4vw, 48px); position: relative; overflow: hidden; }
.contact-info::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 100% 0%, rgba(245,65,126,0.26), transparent 55%); }
.contact-info > * { position: relative; z-index: 2; }
.contact-info h2 { color: #fff; margin-bottom: 16px; }
.contact-info > p { color: var(--on-dark-2); margin-bottom: 34px; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method { display: flex; align-items: center; gap: 15px; padding: 14px 16px; border: 1px solid var(--line-dark); border-radius: var(--r-sm); transition: transform 0.4s var(--ease), background 0.4s; }
.contact-method:hover { transform: translateX(5px); background: rgba(255,255,255,0.05); }
.contact-method .ci { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark); flex-shrink: 0; }
.contact-method .ci svg { width: 21px; height: 21px; color: #ff9a5c; }
.contact-method .cm-l { font-size: 12px; color: var(--on-dark-2); }
.contact-method .cm-v { font-weight: 600; font-size: 15px; color: #fff; }

.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 3vw, 40px); box-shadow: var(--sh-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.field textarea { resize: vertical; min-height: 118px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--pink); background: #fff; box-shadow: 0 0 0 4px rgba(245,65,126,0.1); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12.5px; color: var(--ink-3); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success.show { display: block; }
.form-success .check { width: 66px; height: 66px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; margin: 0 auto 20px; }

/* ----------------------------------------------------------------------------
   18. FOOTER (oscuro)
---------------------------------------------------------------------------- */
.footer { background: var(--bg); color: var(--ink-2); padding-block: 72px 38px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-brand img { height: 30px; margin-bottom: 20px; }
.footer-brand p { color: var(--ink-2); font-size: 14.5px; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 11px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--line); transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s, color 0.4s; }
.footer-social a:hover { transform: translateY(-4px); border-color: transparent; background: var(--grad); color: #fff; }
.footer-social svg { width: 18px; height: 18px; color: currentColor; }
.footer-social a { color: var(--ink-3); }
.footer-col h4 { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 20px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--ink-2); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-bottom p { font-size: 13.5px; color: var(--ink-3); }
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a { font-size: 13.5px; color: var(--ink-3); }
.footer-bottom .legal a:hover { color: var(--ink); }

/* ----------------------------------------------------------------------------
   19. WhatsApp flotante
---------------------------------------------------------------------------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 30px -6px rgba(37,211,102,0.5); transition: transform 0.4s var(--ease); opacity: 0; transform: scale(0) translateY(20px); }
.wa-float.show { opacity: 1; transform: scale(1) translateY(0); }
.wa-float:hover { transform: scale(1.1) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ----------------------------------------------------------------------------
   20. Reveal
---------------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.js .reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal.in, .reveal-scale.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; } .reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; }

/* ----------------------------------------------------------------------------
   21. Responsive
---------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand { grid-column: span 2; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .bento-lg, .bento-feature { grid-column: span 1; grid-row: span 1; }
  .bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .hero-reel { aspect-ratio: 16 / 11; }
  .feature-row { grid-template-columns: 1fr; gap: 30px; }
  .feature-row:nth-child(even) .feature-text { order: 0; }
  .feature-visual { aspect-ratio: 16/11; }
  .tst-grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .plan.pop { order: -1; }
  .blog-editorial { grid-template-columns: 1fr; gap: 32px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding-inline: 20px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .reel-stat { display: none; }
}

@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; }
  .js .reveal, .js .reveal-scale { opacity: 1 !important; transform: none !important; }
}
