/* ===== Tokens (colores muestreados del PDF — ver docs/reference/content.md) ===== */
:root {
  --bg: #0c0c0d;
  --bg-navy: #10131f;
  --surface: #101014;
  --border: rgba(255, 255, 255, 0.1);
  --accent: #aba5d3;
  --accent-strong: #a08ae6;
  --accent-border: rgba(171, 165, 211, 0.55);
  --grad-cases: linear-gradient(172deg, #303976 0%, #292d44 48%, #05090e 100%);
  --grad-about:
    radial-gradient(68% 60% at 25% 52%, rgba(184, 200, 184, 0.95), transparent 74%),
    radial-gradient(50% 60% at 100% 45%, rgba(96, 92, 150, 0.85), transparent 72%),
    linear-gradient(100deg, #383c41 0%, #4b5055 52%, #464874 100%);
  --grad-footer: linear-gradient(180deg, #2a2e53 0%, #1d2140 100%);
  --text: #fcf9f7;
  --text-muted: #b4b4bf;
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
  --container: 1320px;
  --radius: 14px;
}

@font-face { font-family: 'Montserrat'; src: url('/fonts/montserrat-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('/fonts/montserrat-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('/fonts/montserrat-800.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('/fonts/montserrat-900.woff2') format('woff2'); font-weight: 900; font-display: swap; }

/* ===== Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font: 400 1rem/1.6 var(--font); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section-label { color: var(--text); font-size: 1.25rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.55em; margin-bottom: 48px; }
.section-label--light { color: #fff; }
.eyebrow { color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.45em; font-size: 0.85rem; text-align: center; }

/* ===== Botones ===== */
.btn { display: inline-block; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.9rem; padding: 16px 34px; border-radius: 999px; transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s; }
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: #fff; color: #0c0c0d; }
.btn--outline { border: 1.5px solid rgba(255, 255, 255, 0.75); color: #fff; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { background: #fff; color: #0c0c0d; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; padding: 10px 26px; border-radius: 6px; align-self: flex-end; }

/* ===== Header ===== */
.header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding-block: 14px; background: linear-gradient(180deg, rgba(10, 10, 14, 0.55), transparent); transition: background 0.3s, padding 0.3s, transform 0.35s ease; }
.header.is-scrolled { background: rgba(12, 12, 13, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding-block: 10px; }
.header__inner { display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.header__logo { display: none; }
.header__logo img { height: 26px; width: auto; }
.header__toggle { display: none; background: none; border: 0; color: var(--text); padding: 10px; cursor: pointer; position: relative; z-index: 110; }
.header__toggle:hover { color: var(--accent); }
.nav { display: flex; gap: 38px; }
.nav__link { position: relative; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3em; color: var(--text-muted); padding-block: 6px; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: #fff; transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

@media (max-width: 900px) {
  .header__logo { display: block; position: relative; z-index: 110; }
  .header__inner { justify-content: space-between; }
  .header__toggle { display: block; }
  .nav { position: fixed; inset: 0; background: rgba(12, 12, 13, 0.97); flex-direction: column; align-items: center; justify-content: center; gap: 34px; transform: translateY(-100%); visibility: hidden; transition: transform 0.3s ease, visibility 0.3s; }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav__link { font-size: 1rem; }
}

/* ===== Hero ===== */
/* Fondo original del PDF (degradado con textura de puntos), compartido por header + hero + franja */
.hero { background: #0d0e15 url('/assets/img/bg-hero.webp') no-repeat top center / cover; padding-top: 0; text-align: center; }
.hero__visual { display: block; width: 100%; height: auto; }
.hero__content { max-width: 1408px; padding-block: 10px 56px; }
.hero__title { font-size: clamp(0.85rem, 1.6vw, 1.15rem); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5em; color: var(--text); }
.hero__strip-label { margin-top: 44px; color: var(--text-muted); font-size: clamp(0.8rem, 1.4vw, 1rem); font-weight: 600; letter-spacing: 0.35em; text-transform: capitalize; }
/* Banda sutil full-bleed (como el PDF) con logos transparentes en marquee: sin costuras */
.hero__clients-band { margin-top: 26px; overflow: hidden; background: #1f2026; padding-block: 18px; }
.marquee { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee .hero__clients { width: auto; height: clamp(48px, 5.4vw, 84px); margin-right: 110px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Propuesta ===== */
/* Composición del PDF: escenario Reed Latino (centro) + trofeo saco azul (derecha), atenuados; izquierda en negro */
.pitch {
  padding-block: 90px 70px;
  background:
    linear-gradient(90deg, #0b0b0d 0%, #0b0b0d 24%, rgba(11, 11, 13, 0.6) 33%, rgba(11, 11, 13, 0.6) 60%, rgba(11, 11, 13, 0.88) 68%, rgba(11, 11, 13, 0.88) 74%, rgba(11, 11, 13, 0.6) 82%, #0b0b0d 100%),
    linear-gradient(180deg, rgba(11, 11, 13, 0.26) 0%, rgba(11, 11, 13, 0.42) 55%, rgba(11, 11, 13, 0.96) 90%),
    url('/assets/img/bg-pitch.webp') no-repeat 44% 0 / auto 92%,
    url('/assets/img/bg-pitch2.webp') no-repeat 99% 0 / auto 98%;
  background-color: #0b0b0d;
}
.pitch > .container { display: flex; flex-direction: column; }
.pitch .eyebrow { order: 1; } .pitch__grid { order: 2; } .pitch__sub { order: 3; }
.intro-copy { order: 4; } .pitch__divider { order: 5; } .pillars { order: 6; }
@media (max-width: 760px) {
  .pitch__divider { order: 4; margin-block: 40px 32px; }
  .pillars { order: 5; }
  .intro-copy { order: 6; margin-top: 40px; }
}
.pitch__grid { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 70px; }
.pitch__title { font-size: clamp(2.8rem, 6.3vw, 5.6rem); font-weight: 400; line-height: 1.1; letter-spacing: 0.1em; }
.pitch__title strong { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }
/* Reveal por líneas del titular (se dispara con .is-visible del .pitch__grid) */
.pitch__title .line { display: block; overflow: hidden; }
/* Secuencia: 1) sube "La POLÍTICA"  2) barrido de POLÍTICA  3) solo al terminar, "también" y "se diseña" */
.pitch__title .line > span { display: block; transform: translateY(112%); transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1); }
/* "también" y "se diseña" entran rápidas y seguidas, pero solo cuando POLÍTICA terminó (~1.7s) */
.pitch__title .line:nth-child(2) > span { transition-duration: 0.8s; transition-delay: 1.7s; }
.pitch__title .line:nth-child(3) > span { transition-duration: 0.8s; transition-delay: 1.88s; }
.pitch__grid.is-visible .pitch__title .line > span { transform: none; }
/* La palabra POLÍTICA entra con barrido (termina ~1.7s, antes de que entren las líneas de abajo) */
.pitch__title strong { display: inline-block; clip-path: inset(0 100% 0 -6%); transition: clip-path 1.2s 0.5s ease; }
.pitch__grid.is-visible .pitch__title strong { clip-path: inset(0 -6% 0 -6%); }
.pitch__ctas { display: flex; flex-direction: column; gap: 26px; min-width: 340px; align-items: stretch; }
.pitch__ctas .btn { text-align: center; border-radius: 14px; padding: 22px 44px; font-size: 1.06rem; }
.pitch__ctas .btn--outline { border-width: 2px; }
.pitch__sub { color: var(--text); font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 400; letter-spacing: 0.1em; margin-top: 70px; max-width: 780px; line-height: 1.5; }
.pitch__divider { border: 0; height: 6px; background: var(--accent); margin-block: 62px 50px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillars li { display: flex; align-items: center; gap: 20px; font-weight: 600; font-size: 1.08rem; letter-spacing: 0.1em; }
/* Cascada de pilares al entrar */
.pillars.reveal li { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.pillars.reveal li:nth-child(2) { transition-delay: 0.12s; }
.pillars.reveal li:nth-child(3) { transition-delay: 0.24s; }
.pillars.reveal.is-visible li { opacity: 1; transform: none; }
.pillars__icon { color: #fff; flex-shrink: 0; display: grid; place-items: center; }
.pillars__icon svg { width: 40px; height: 40px; }
@media (max-width: 900px) {
  .pitch__grid { flex-direction: column; align-items: flex-start; }
  .pillars { grid-template-columns: 1fr; }
}

/* ===== Servicios ===== */
.services { padding-top: 90px; background: var(--bg); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.card { background: rgba(255, 255, 255, 0.015); border: 2px solid rgba(169, 162, 221, 0.85); border-radius: var(--radius); padding: 40px 30px; transition: transform 0.25s, border-color 0.25s; }
.card:hover { transform: translateY(-6px); border-color: var(--accent-strong); }
.card__icon { color: #fff; display: block; margin-bottom: 52px; }
.card__icon svg { width: 56px; height: 56px; }
.card h3 { font-size: 1.16rem; font-weight: 800; line-height: 1.32; margin-bottom: 18px; }
.card p { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); }
@media (max-width: 1100px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  {
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 22px 18px; }
  .card__icon { margin-bottom: 14px; }
  .card__icon svg { width: 40px; height: 40px; }
}

/* Banda de laureles + logos de campañas (imagen completa del PDF, sin cortes) */
.awards-band { margin-top: 90px; background: #0b0c10; }
.awards-band .awards-band__full { width: 100%; }
.awards-band__mobile { display: none; }
@media (max-width: 700px) {
  .awards-band { padding-block: 34px; }
  .awards-band__full { display: none; }
  .awards-band__mobile { display: block; width: min(420px, 86%); margin-inline: auto; }
}

/* ===== Campañas ===== */
/* Mismo fondo original del PDF (con sus detalles de puntos al inicio) sobre el degradado */
.cases { background: var(--grad-cases); }
.cases__body { background: url('/assets/img/bg-hero.webp') no-repeat top center / cover; padding-bottom: 90px; }
.cases__head { background: #0c0c0d; padding-block: 30px 26px; }
.cases__head-inner { display: flex; align-items: center; gap: 44px; }
.cases__head .section-label { margin-bottom: 0; }
.cases__head-line { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.45); }
.case { position: relative; display: grid; grid-template-columns: 1.55fr 1fr; gap: 36px; align-items: center; padding-block: 44px; }
.case__media { position: relative; border-radius: 4px; overflow: hidden; box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45); }
.case__media img { width: 100%; height: auto; }
.case__media iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
.case__media--dim::before { content: ''; position: absolute; inset: 0; background: rgba(10, 16, 44, 0.62); z-index: 1; }
.case__slogan { position: absolute; right: 44px; top: 50%; transform: translateY(-50%); z-index: 2; font-weight: 900; text-transform: uppercase; font-size: clamp(2rem, 3.8vw, 3.6rem); line-height: 1.06; letter-spacing: 0.01em; color: #5b82d8; text-align: left; }
.play { position: absolute; left: 28px; bottom: 26px; z-index: 3; display: flex; align-items: center; gap: 16px; background: none; border: 0; color: #fff; font: 600 1.05rem var(--font); letter-spacing: 0.55em; text-transform: uppercase; cursor: pointer; padding: 0; }
.play svg { transition: transform 0.2s; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5)); animation: playPulse 2.6s ease-in-out infinite; }
.play:hover svg { animation-play-state: paused; transform: scale(1.12); }
@keyframes playPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.case__info { display: flex; flex-direction: column; gap: 18px; }
.case__banner { border-radius: 4px; box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35); }
.case__info h3 { font-size: 1.35rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.case__info p { font-size: 0.88rem; line-height: 1.65; color: #e8e6f2; }
@media (max-width: 900px) {
  .case { grid-template-columns: 1fr; }
  }

/* ===== Quiénes Somos ===== */
.about { background: var(--grad-about); background-color: #3a3e44; overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; padding-block: 90px 0; }
.about__text { padding-bottom: 90px; }
.about__name { font-size: clamp(3rem, 6.5vw, 4.8rem); font-weight: 800; line-height: 1.05; color: #fff; }
.about__role { color: #fff; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4em; font-size: 0.9rem; margin-block: 22px 34px; }
.about__text > p:not(.about__name):not(.about__role) { color: #15151a; font-weight: 600; font-size: 1.02rem; line-height: 1.65; margin-bottom: 20px; max-width: 54ch; }
.about__collage { align-self: end; }
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__text { padding-bottom: 0; }
}

/* ===== Contacto ===== */
.contact { padding-block: 90px 80px; background: linear-gradient(180deg, #0c0c0d 0%, #101122 78%, #1a1e3c 100%); }
.contact__grid { display: grid; grid-template-columns: auto 1fr auto; gap: 60px; align-items: center; margin-top: 24px; }
.contact__brand { display: flex; align-items: center; gap: 60px; }
.contact__brand img { width: 310px; height: auto; }
.contact__brand::after { content: ''; width: 3px; height: 160px; background: #fff; border-radius: 2px; }
.contact__claim { font-size: clamp(1.35rem, 2.7vw, 2rem); font-weight: 800; letter-spacing: 0.06em; line-height: 1.45; max-width: 700px; }
.contact__sub { color: #d9d7e2; margin-top: 18px; font-size: 1.08rem; max-width: 540px; }
.btn--arrow { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; max-width: 280px; border-radius: 20px; padding: 24px 30px; line-height: 1.55; text-align: left; }
.btn--arrow__icon { align-self: flex-end; font-size: 1.35rem; margin-top: -6px; }
@media (max-width: 1000px) {
  .contact__grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .contact__brand::after { display: none; }
}

/* ===== Footer ===== */
.footer { background: var(--grad-footer); border-top: 1px solid rgba(255, 255, 255, 0.35); padding-block: 44px; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.footer__copy { color: var(--text-muted); font-size: 0.95rem; }
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer__brand img:first-child { width: 190px; height: auto; }
.footer__brand img:last-child { width: 210px; height: auto; }
.footer__email { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; }
.footer__email a:hover { color: var(--accent); }
@media (max-width: 900px) {
  .footer { padding-block: 28px; }
  .footer__inner { flex-direction: column; text-align: center; gap: 16px; }
}
@media (max-width: 480px) {
  .contact__brand img { width: min(300px, 72vw); }
}

/* ===== Reveal on-scroll (JS añade .is-visible) ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* CTAs magnéticos (solo desktop con puntero fino; JS controla el transform) */
@media (pointer: fine) and (min-width: 901px) {
  .js-magnetic { transition: transform 0.25s ease; will-change: transform; }
  .js-magnetic:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .pitch__title .line > span { transform: none; }
  .pitch__title strong { clip-path: none; }
  .pillars.reveal li { opacity: 1; transform: none; }
  .subpage__hero .reveal .eyebrow, .subpage__hero .reveal h1, .subpage__hero .reveal .subpage__slogan { opacity: 1; transform: none; }
  .marquee { animation: none !important; }
}

/* ===== Botón flotante de WhatsApp ===== */
.wa-fab { position: fixed; right: 22px; bottom: 22px; z-index: 95; }
.wa-fab__btn { width: 58px; height: 58px; border-radius: 50%; border: 0; background: #25d366; color: #fff; display: grid; place-items: center; cursor: pointer; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45); transition: transform 0.2s; }
.wa-fab__btn:hover { transform: scale(1.07); }
.wa-fab__menu { position: absolute; right: 0; bottom: 72px; width: 256px; background: #14141d; border: 1px solid var(--border); border-radius: 14px; padding: 14px; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5); }
.wa-fab__title { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
.wa-fab__opt { display: block; padding: 11px 12px; border-radius: 9px; font-size: 0.92rem; font-weight: 600; }
.wa-fab__opt:hover { background: rgba(37, 211, 102, 0.13); color: #4ddb84; }
.hero__ctas { display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.intro-copy { margin-top: 56px; }
.intro-copy p { color: var(--text-muted); line-height: 1.85; font-size: 1.05rem; margin-bottom: 20px; break-inside: avoid; }
.intro-copy h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; margin: 30px 0 22px; column-span: all; }
@media (min-width: 900px) {
  .intro-copy { columns: 2; column-gap: 70px; }
}

/* ===== Previews de campañas/gobierno (v2) ===== */
.cases__intro { max-width: 72ch; color: #e8e6f2; margin-bottom: 44px; }
.cases__intro strong { color: var(--text); display: block; font-size: 1.25rem; margin-bottom: 8px; }
.cases-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.case-card a { display: flex; flex-direction: column; gap: 12px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; transition: transform 0.25s, border-color 0.25s; height: 100%; }
.case-card a:hover { transform: translateY(-6px); border-color: var(--accent-strong); }
.case-card__media { overflow: hidden; border-radius: 6px; background: #0e0e13; }
.case-card__media img { width: 100%; aspect-ratio: 16 / 9; height: auto; object-fit: contain; transition: transform 0.45s ease; }
.case-card a:hover .case-card__media img { transform: scale(1.05); }
.case-card h3 { font-size: 1.15rem; font-weight: 800; text-transform: uppercase; }
.case-card p { color: #cfcde0; font-size: 0.9rem; }
.case-card .btn { align-self: flex-start; margin-top: 4px; }
@media (max-width: 760px) { .cases-preview { grid-template-columns: 1fr; } }
.gov { padding-block: 90px; background: var(--bg-navy); }
.gov__claim { max-width: 72ch; margin-bottom: 44px; color: var(--text-muted); }
.gov__claim strong { color: var(--text); display: block; font-size: 1.3rem; margin-bottom: 10px; }
@media (min-width: 1100px) { .gov .cases-preview { grid-template-columns: repeat(3, 1fr); } }
.why { padding-block: 90px 0; background: var(--bg); }
.why__title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; margin-bottom: 40px; }
.why__title strong { color: var(--accent); font-weight: 800; }
.why__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 70px; }
.why__cols p { color: var(--text-muted); margin-bottom: 14px; }
.why__cols h3 { font-weight: 800; margin-bottom: 14px; }
@media (max-width: 800px) { .why__cols { grid-template-columns: 1fr; } }
.services__title { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; margin: -20px 0 40px; }
.services__more { display: flex; justify-content: flex-end; margin-top: 34px; }
.services__more .btn { letter-spacing: 0.18em; font-size: 0.9rem; border-radius: 12px; padding: 15px 32px; }
.services__more .plus { color: var(--accent-strong); }

/* ===== Equipo y Manifiesto (v2) ===== */
.team { padding-block: 90px; background: var(--bg); }
.team__title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.team__sub { color: var(--text-muted); max-width: 64ch; margin-bottom: 36px; }
.team__roles { columns: 3; gap: 40px; margin-bottom: 36px; }
.team__roles li { color: var(--text-muted); padding-block: 6px; border-bottom: 1px solid var(--border); break-inside: avoid; }
.team__closer { font-weight: 800; font-size: 1.1rem; }
@media (max-width: 900px) { .team__roles { columns: 2; } }
@media (max-width: 560px) { .team__roles { columns: 1; } }
.manifesto { padding-block: 100px; background: linear-gradient(180deg, #0c0c0d, #10131f); }
.manifesto__lead { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 400; margin-bottom: 36px; max-width: 22ch; line-height: 1.3; }
.manifesto__lead strong { color: var(--accent); font-weight: 800; }
@media (min-width: 1000px) {
  .manifesto .container { display: grid; grid-template-columns: 0.9fr 1.1fr; column-gap: 70px; }
  .manifesto .section-label { grid-column: 1 / -1; }
  .manifesto__closer { grid-column: 1 / -1; }
}
.manifesto__body { display: grid; gap: 14px; max-width: 62ch; }
.manifesto__body p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }
.manifesto__closer { margin-top: 36px; font-weight: 800; font-size: 1.2rem; letter-spacing: 0.04em; }
.contact__people { margin-top: 22px; display: grid; gap: 8px; color: var(--text-muted); font-size: 0.95rem; }
.contact__people a:hover { color: var(--accent); }
.contact__wa { display: inline-block; margin-top: 14px; color: var(--text-muted); font-size: 0.9rem; letter-spacing: 0.08em; text-decoration: underline; }
.contact__wa:hover { color: #4ddb84; }
@media (max-width: 1280px) and (min-width: 901px) {
  .nav { gap: 24px; }
  .nav__link { letter-spacing: 0.2em; }
}
@media (max-width: 900px) and (max-height: 540px) {
  .nav { gap: 10px; justify-content: flex-start; padding-block: 48px 16px; overflow-y: auto; }
  .nav__link { font-size: 0.85rem; }
}

/* ===== Subpáginas (v2) ===== */
.subpage__hero { background: var(--grad-cases); padding: 124px 0 40px; }
.subpage__hero .eyebrow { text-align: left; margin-bottom: 12px; }
/* Cascada de entrada: label → título → eslogan (con el .reveal del contenedor) */
.subpage__hero .reveal .eyebrow, .subpage__hero .reveal h1, .subpage__hero .reveal .subpage__slogan {
  opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease;
}
.subpage__hero .reveal h1 { transition-delay: 0.12s; }
.subpage__hero .reveal .subpage__slogan { transition-delay: 0.24s; }
.subpage__hero .reveal.is-visible .eyebrow, .subpage__hero .reveal.is-visible h1, .subpage__hero .reveal.is-visible .subpage__slogan {
  opacity: 1; transform: none;
}
.subpage__hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.subpage__slogan { color: var(--accent); font-weight: 800; font-size: clamp(1.1rem, 2.2vw, 1.55rem); margin-top: 6px; }
.subpage__body { padding-block: 48px 90px; background: var(--bg); }
.subpage__layout { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 52px; align-items: start; }
.subpage__main .case__media { margin-bottom: 36px; }
.subpage__copy { max-width: 68ch; display: grid; gap: 16px; }
.subpage__copy p { color: var(--text-muted); line-height: 1.75; }
.subpage__copy strong { color: var(--text); }
/* Ficha lateral tipo case-study */
.subpage__aside { position: sticky; top: 92px; display: grid; gap: 18px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.subpage__banner { width: 100%; max-width: 100%; border-radius: 6px; margin: 0; }
.subpage__role { color: var(--accent); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.82rem; line-height: 1.6; margin: 0; }
.subpage__result { font-weight: 800; font-size: 1.25rem; color: var(--text); margin: 0; padding-top: 4px; border-top: 1px solid var(--border); }
.subpage__aside .btn { text-align: center; }
.subpage__back { color: var(--text-muted); font-size: 0.88rem; letter-spacing: 0.06em; justify-self: start; }
.subpage__back:hover { color: var(--accent); }
@media (max-width: 980px) {
  .subpage__layout { grid-template-columns: 1fr; gap: 36px; }
  .subpage__aside { position: static; }
  .subpage__hero { padding: 108px 0 32px; }
}

/* ===== 404 ===== */
.notfound { min-height: 100svh; display: grid; place-content: center; justify-items: center; gap: 22px; text-align: center; padding: 24px; background: var(--bg-navy); }
.notfound h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }
.notfound p { color: var(--text-muted); }

/* ===== Dosier: el caso completo (v3) ===== */
.dossier { background: var(--bg-navy); padding-block: 80px 100px; border-top: 1px solid var(--border); }
.dossier__badge { display: inline-block; border: 1px solid var(--accent-border); color: var(--accent); border-radius: 999px; padding: 8px 18px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 26px; }
.dossier__body { max-width: 76ch; }
.dossier__chapter { margin-bottom: 46px; }
.dossier__chapter h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); font-weight: 800; margin-bottom: 18px; }
.dossier__chapter p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.dossier__chapter strong { color: var(--text); }
.dossier__list { margin: 0 0 16px 1.2em; list-style: disc; }
.dossier__list li { color: var(--text-muted); line-height: 1.7; padding-block: 3px; }
.dossier__table { width: 100%; border-collapse: collapse; margin: 8px 0 18px; font-size: 0.92rem; }
.dossier__table th { text-align: left; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; padding: 10px 14px; border-bottom: 1px solid var(--accent-border); }
.dossier__table td { color: var(--text-muted); padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.dossier__table td:first-child { color: var(--text); font-weight: 600; white-space: nowrap; }
.dossier__figure { margin: 46px 0 0; }
.dossier__figure img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4); }
.dossier__figure figcaption { color: var(--text-muted); font-size: 0.85rem; margin-top: 12px; letter-spacing: 0.04em; }
@media (max-width: 700px) { .dossier__table td:first-child { white-space: normal; } .dossier { padding-block: 56px 70px; } }
.footer__legal { font-size: 0.78rem; text-decoration: underline; opacity: 0.8; }
.footer__legal:hover { color: var(--accent); }
.eyebrow--left { text-align: left; }
