/* =============================================================
   1. Tokens — sistema oscuro premium (revisión 2026-07-22)
   ============================================================= */
:root {
  --bg: #0F0F0C;
  --bg-deep: #080806;
  --surface: #1B1B16;
  --surface-2: #232319;
  --ink: #F3F0E6;
  --ink-soft: #B8B3A2;
  --ink-mute: #7D786A;
  --line: #322F24;
  --line-soft: #24221A;
  --brass: #C9A24B;
  --brass-deep: #9C7A32;
  --brass-bright: #E4C378;
  --brass-tint: #2A2410;
  --whats: #25D366;
  --whats-deep: #1DA851;
  --radius: 16px;
  --radius-sm: 10px;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Space Grotesk', var(--sans);
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  padding-bottom: 0;
}
@media (max-width: 760px) { body { padding-bottom: 76px; } }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.06; letter-spacing: -0.02em; font-family: var(--display); }
::selection { background: var(--brass-tint); color: var(--brass-deep); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: fixed; top: -100px; left: 1rem; padding: .7rem 1.1rem;
  background: var(--ink); color: var(--bg); z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* =============================================================
   4. Typography
   ============================================================= */
.eyebrow {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brass); margin: 0 0 16px; display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 16px; height: 1px; background: var(--brass); display: inline-block; }
h2 { font-size: clamp(1.6rem, 1.35rem + 1.1vw, 2.15rem); font-weight: 600; margin: 0 0 10px; }
.section-sub { color: var(--ink-soft); font-size: 15.5px; max-width: 60ch; margin: 0; }
.section-head { margin-bottom: 34px; }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 14px 24px; border-radius: 99px;
  font-weight: 600; font-size: 15px; border: 1px solid transparent; transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--whats); color: #06210F; box-shadow: 0 8px 24px -8px rgba(37,211,102,.45); }
.btn-primary:hover { background: var(--whats-deep); transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(37,211,102,.55); }
.btn-secondary { background: rgba(255,255,255,.08); color: var(--ink); border-color: var(--line); backdrop-filter: blur(6px); }
.btn-secondary:hover { border-color: var(--brass); color: var(--brass-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(243,240,230,.35); }
.btn-ghost:hover { border-color: var(--brass-bright); color: var(--brass-bright); }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* --- Header ---
   Fondo fijado al color exacto del PNG del logo (#1E2328) para que se integre
   sin recuadro visible — el logo no tiene fondo transparente. */
header {
  position: sticky; top: 0; z-index: 60; background: rgba(30,35,40,.92);
  backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
@supports not (backdrop-filter: blur(1px)) { header { background: rgba(30,35,40,1); } }
header.is-scrolled { border-color: var(--line); background: rgba(30,35,40,1); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1160px; margin: 0 auto; min-height: var(--header-h); }
.logo { display: flex; align-items: center; }
.logo img { height: 64px; width: auto; display: block; }
@media (max-width: 480px) { .logo img { height: 52px; } }
.navlinks { display: flex; gap: 30px; font-size: 14.5px; color: var(--ink-soft); list-style: none; }
.navlinks a { position: relative; padding: 4px 0; }
.navlinks a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--brass); transition: width .25s var(--ease-out); }
.navlinks a:hover { color: var(--ink); }
.navlinks a:hover::after { width: 100%; }
@media (max-width: 860px) { .navlinks { display: none; } }

/* --- Cards --- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }

/* --- Breadcrumb --- */
.breadcrumb { padding: 18px 0 0; font-size: 12.5px; color: var(--ink-mute); }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { margin: 0 7px; color: var(--line); }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

/* --- Ficha de servicio (elemento distintivo de marca) — franja horizontal tipo placa --- */
.ficha-strip {
  border-top: 3px double var(--line); border-bottom: 3px double var(--line);
  padding: 26px 0; display: flex; flex-wrap: wrap; position: relative;
}
.ficha-strip::before, .ficha-strip::after {
  content: ""; position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--brass-tint);
  border: 1px solid var(--line); top: 50%; transform: translateY(-50%);
}
.ficha-strip::before { left: 2px; } .ficha-strip::after { right: 2px; }
.ficha-item {
  flex: 1 1 0; min-width: 130px; padding: 4px 22px; border-left: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 6px;
}
.ficha-item:first-child { border-left: none; padding-left: 0; }
.ficha-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }
.ficha-value { font-family: var(--mono); font-weight: 600; font-size: 17px; color: var(--ink); }
.ficha-value.accent { color: var(--brass-deep); }
.ficha-value a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 860px) {
  .ficha-strip { gap: 20px 0; }
  .ficha-item { flex: 1 1 40%; border-left: none; border-top: 1px solid var(--line-soft); padding: 14px 0 0; }
  .ficha-item:nth-child(-n+2) { border-top: none; padding-top: 0; }
}

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero hijas (apilado editorial compacto — sin imagen de fondo) --- */
.hero-stack { padding: 56px 0 0; }
.hero-stack h1 {
  font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.9rem); max-width: 22ch; margin: 0 0 20px;
}
.hero-stack .lede { font-size: 16.5px; color: var(--ink-soft); max-width: 58ch; margin: 0 0 30px; }
.hero-stack .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
@media (max-width: 640px) { .hero-stack { padding: 40px 0 0; } .hero-stack .cta-row { margin-bottom: 32px; } }

/* --- Hero madre (variación C: imagen de fondo oscura + overlay + ficha flotante) --- */
.hero-image { position: relative; min-height: 84vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: clip; margin: 0 calc(50% - 50vw); }
.hero-image-media { position: absolute; inset: 0; z-index: 0; }
.hero-image-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-media.is-placeholder {
  background:
    radial-gradient(circle at 75% 30%, rgba(201,162,75,.14), transparent 55%),
    linear-gradient(150deg, #17160F 0%, #0F0F0C 70%);
}
.hero-image-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,12,.1) 0%, rgba(15,15,12,.5) 58%, var(--bg) 96%),
    linear-gradient(100deg, rgba(15,15,12,.92) 0%, rgba(15,15,12,.5) 46%, rgba(15,15,12,.12) 78%);
}
.hero-image-content { position: relative; z-index: 1; max-width: 700px; padding: 150px 0 64px; }
.hero-image-content .eyebrow { color: var(--brass-bright); }
.hero-image-content .eyebrow::before { background: var(--brass-bright); }
.hero-image-content h1 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.55rem); max-width: 17ch; margin: 0 0 22px; color: var(--ink); }
.hero-image-content .lede { font-size: 17px; color: var(--ink-soft); max-width: 52ch; margin: 0 0 32px; }
.hero-image-content .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image .ficha-strip { position: relative; z-index: 1; background: rgba(27,27,22,.68); backdrop-filter: blur(16px) saturate(150%); }
@media (max-width: 760px) { .hero-image { min-height: 92vh; } .hero-image-content { padding: 120px 0 48px; } }

/* --- Respuesta directa (AEO) debajo de la ficha --- */
.aeo-answer { padding: 52px 0 8px; }
.aeo-answer h2 { max-width: 26ch; }
.aeo-answer p { font-size: 16.5px; color: var(--ink-soft); max-width: 68ch; }

/* --- Section generic spacing --- */
section { padding: 56px 0; }

/* --- Showcase (imagen real + texto en dos columnas, pasos numerados) --- */
.showcase { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 44px; align-items: center; }
.showcase.rev { grid-template-columns: 1.05fr 0.95fr; }
.showcase.rev .showcase-media { order: 2; }
.showcase-media { border-radius: var(--radius); overflow: clip; aspect-ratio: 4/3; position: relative; }
.showcase-media img { width: 100%; height: 100%; object-fit: cover; }
.showcase-media.is-placeholder {
  background:
    radial-gradient(circle at 20% 20%, rgba(201,162,75,.22), transparent 55%),
    repeating-linear-gradient(115deg, rgba(30,35,40,.05) 0 2px, transparent 2px 26px),
    linear-gradient(150deg, var(--bg-deep) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
}
.showcase-pending-tag {
  position: absolute; top: 14px; right: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: .06em;
  color: var(--ink-mute); background: var(--surface); border: 1px solid var(--line); padding: 4px 9px; border-radius: 99px;
}
.showcase-steps { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.showcase-steps li { display: flex; gap: 14px; font-size: 14.5px; color: var(--ink); }
.showcase-steps .num { font-family: var(--mono); font-weight: 600; color: var(--brass-deep); flex-shrink: 0; }
@media (max-width: 820px) {
  .showcase, .showcase.rev { grid-template-columns: 1fr; }
  .showcase.rev .showcase-media { order: 0; }
}

/* --- Selector de electrodomésticos (mosaico asimétrico tipo "bento") --- */
.app-badge {
  display: inline-block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brass-bright); background: var(--brass-tint); padding: 5px 11px; border-radius: 99px; margin-bottom: 10px;
  border: 1px solid rgba(201,162,75,.25);
}
.mosaic { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 230px 230px; gap: 16px; margin-top: 8px; }
.mosaic-tile {
  position: relative; display: block; border-radius: var(--radius); overflow: clip;
  border: 1px solid var(--line); background: var(--surface); transition: border-color .25s ease;
}
.mosaic-tile:hover { border-color: var(--brass); }
.mosaic-tile-neveras { grid-column: 1; grid-row: 1 / 3; }
.mosaic-tile-lavadoras { grid-column: 2; grid-row: 1; }
.mosaic-tile-secadoras { grid-column: 3; grid-row: 1; }
.mosaic-tile-otros { grid-column: 2 / 4; grid-row: 2; }
.mosaic-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.mosaic-tile:hover img { transform: scale(1.045); }
.mosaic-tile-media.is-placeholder {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(201,162,75,.16), transparent 60%), var(--bg-deep);
}
.mosaic-tile-scrim { position: absolute; inset: 0; background: linear-gradient(195deg, rgba(15,15,12,.05) 28%, rgba(15,15,12,.94) 100%); }
.mosaic-tile-copy { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.mosaic-tile-copy h3 { font-size: 19px; margin: 0 0 6px; color: var(--ink); }
.mosaic-tile-neveras .mosaic-tile-copy h3 { font-size: 27px; }
.mosaic-tile-copy p { font-size: 13px; color: var(--ink-soft); margin: 0 0 6px; max-width: 32ch; }
.mosaic-tile-copy .app-symptom { font-family: var(--mono); font-size: 11.5px; color: var(--brass-bright); margin: 0 0 12px; }
.mosaic-tile-copy .keyword-link { color: var(--brass-bright); font-weight: 600; font-size: 13px; text-decoration: underline; text-underline-offset: 3px; }
.mosaic-tile-copy .mini-plate { display: flex; gap: 18px; margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(243,240,230,.14); }
.mosaic-tile-copy .mini-plate div { display: flex; flex-direction: column; gap: 2px; }
.mosaic-tile-copy .mini-plate .ficha-label { font-size: 9.5px; color: var(--ink-mute); }
.mosaic-tile-copy .mini-plate .ficha-value { font-size: 13px; }
@media (max-width: 860px) {
  .mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .mosaic-tile-neveras, .mosaic-tile-lavadoras, .mosaic-tile-secadoras, .mosaic-tile-otros { grid-column: 1; grid-row: auto; height: 260px; }
}

/* --- Cobertura + reseñas (dos columnas) --- */
.split-info { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .split-info { grid-template-columns: 1fr; } }
.zone-block h2, .reviews-block h2 { font-size: 1.3rem; }
.zone-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.zone-list li { font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.zone-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); flex-shrink: 0; }

/* --- Cobertura a ancho completo (sin la columna de reseñas, oculta) --- */
.zone-block-full h2 { font-size: 1.6rem; }
.zone-block-full .section-sub { max-width: 60ch; }
.zone-list-row {
  flex-direction: row; flex-wrap: wrap; gap: 12px 16px; margin-top: 22px;
}
.zone-list-row li {
  background: var(--surface); border: 1px solid var(--line); border-radius: 99px;
  padding: 9px 18px 9px 14px; gap: 8px;
}
.reviews-summary { display: flex; align-items: center; gap: 12px; margin: 18px 0 20px; flex-wrap: wrap; }
.stars { color: var(--brass); font-size: 19px; letter-spacing: 1px; }
.reviews-count { font-size: 14px; color: var(--ink-soft); }
.reviews-count a { color: var(--brass-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.testi-list { display: flex; flex-direction: column; gap: 14px; }
.testi-card { padding: 20px; position: relative; }
.testi-text { font-size: 14px; margin: 0 0 10px; color: var(--ink); }
.testi-name { font-size: 12px; color: var(--ink-soft); font-family: var(--mono); }

/* --- Sellos de confianza (fila compacta, reutilizable) --- */
.trust-row { display: flex; flex-wrap: wrap; gap: 22px 28px; padding: 22px 0; border-top: 1px solid var(--line); }
.trust-row .trust-item { display: flex; gap: 10px; align-items: center; font-size: 13.5px; color: var(--ink-soft); }
.trust-row .trust-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 8px; background: var(--brass-tint);
  color: var(--brass-deep); display: flex; align-items: center; justify-content: center;
}
.trust-row .trust-icon svg { width: 15px; height: 15px; }
.trust-row strong { color: var(--ink); }

/* --- FAQ (AEO / details nativo) --- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 20px 4px; font-family: var(--display); font-weight: 600; font-size: 16px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--mono); font-size: 20px; color: var(--brass); flex-shrink: 0;
  transition: transform .25s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { font-size: 14.5px; color: var(--ink-soft); padding: 0 4px 20px; max-width: 68ch; }

/* --- Otras marcas (lateral, no compite en keywords) --- */
.other-brands {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 30px 0; display: flex; align-items: center; gap: 20px 28px; flex-wrap: wrap;
}
.other-brands p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.other-brands-links { display: flex; gap: 10px; flex-wrap: wrap; }
.other-brands-links a {
  font-size: 13.5px; font-weight: 600; padding: 7px 15px; border-radius: 99px; border: 1px solid var(--line);
  transition: border-color .2s ease, color .2s ease;
}
.other-brands-links a:hover { border-color: var(--brass); color: var(--brass-deep); }

/* --- Hermanas (enlaces entre páginas hija del mismo silo) --- */
.siblings-nav h2 { font-size: 1.3rem; margin-bottom: 18px; }
.siblings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 760px) { .siblings-grid { grid-template-columns: 1fr; } }
.sibling-card {
  display: block; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .2s ease, transform .2s var(--ease-out);
}
.sibling-card:hover { border-color: var(--brass); transform: translateY(-2px); }
.sibling-card .eyebrow { margin-bottom: 6px; font-size: 10.5px; }
.sibling-card strong { display: block; font-size: 14.5px; font-weight: 600; }
.back-to-madre { font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* --- CTA final --- */
.final-cta { text-align: center; padding: 64px 0; }
.final-cta h2 { margin-bottom: 12px; }
.final-cta .section-sub { margin: 0 auto 26px; }
.final-cta .btn-primary { font-size: 16px; padding: 17px 32px; }

/* --- Footer --- */
footer { background: var(--bg-deep); color: var(--ink-soft); padding: 46px 0 28px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 28px; font-size: 13.5px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid h4 { font-family: var(--display); font-size: 13px; color: var(--ink); margin: 0 0 14px; font-weight: 600; }
.foot-grid ul { list-style: none; padding: 0; }
.foot-grid li { margin-bottom: 9px; color: var(--ink-mute); }
.foot-grid li a:hover { color: var(--brass-bright); }
.foot-brand p { color: var(--ink-mute); max-width: 34ch; margin-top: 8px; }
.foot-bottom {
  border-top: 1px solid var(--line); margin-top: 30px; padding-top: 18px; font-size: 12px; color: var(--ink-mute);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.foot-bottom a { color: var(--brass); text-decoration: underline; text-underline-offset: 2px; }
.foot-legal-links { display: flex; flex-wrap: wrap; gap: 4px 16px; }
.foot-contact { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 0 0 18px; font-size: 13.5px; }
.foot-contact a { color: var(--brass-bright); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* --- Páginas legales (texto largo) --- */
.legal-page { max-width: 760px; padding: 56px 0 80px; }
.legal-page h1 { font-size: clamp(1.7rem, 1.4rem + 1vw, 2.3rem); margin-bottom: 8px; }
.legal-page .legal-updated { font-family: var(--mono); font-size: 12.5px; color: var(--ink-mute); margin-bottom: 40px; }
.legal-page h2 { font-size: 1.25rem; margin: 40px 0 12px; }
.legal-page h3 { font-family: var(--display); font-size: 1rem; font-weight: 600; margin: 24px 0 8px; color: var(--ink); }
.legal-page p { color: var(--ink-soft); font-size: 15px; margin: 0 0 14px; max-width: 68ch; }
.legal-page ul, .legal-page ol { color: var(--ink-soft); font-size: 15px; margin: 0 0 14px; padding-left: 22px; max-width: 68ch; }
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--ink); }
.legal-page a { color: var(--brass); text-decoration: underline; text-underline-offset: 2px; }
.legal-page .legal-placeholder { color: var(--brass-bright); font-family: var(--mono); font-size: 0.92em; }

/* --- Aviso de cookies --- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80; max-width: 560px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: 0 12px 32px -10px rgba(0,0,0,.5);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px;
}
.cookie-banner p { font-size: 13px; color: var(--ink-soft); margin: 0; flex: 1 1 260px; }
.cookie-banner p a { color: var(--brass); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner .btn { padding: 9px 18px; font-size: 13px; }
.cookie-banner[hidden] { display: none; }
@media (max-width: 640px) { .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px; } }

/* --- Sticky CTA móvil --- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface); border-top: 1px solid var(--line);
  padding: 11px 18px; display: none; z-index: 70; box-shadow: 0 -8px 24px -12px rgba(0,0,0,.15);
}
.sticky-cta .btn-primary { width: 100%; justify-content: center; }
@media (max-width: 760px) { .sticky-cta { display: flex; } }

/* --- Blog: cuerpo del artículo (prosa) --- */
.article-body { max-width: 720px; padding: 8px 0 0; }
.article-body h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-family: var(--display); font-size: 1.05rem; font-weight: 600; margin: 22px 0 8px; color: var(--ink); }
.article-body p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; margin: 0 0 16px; max-width: 68ch; }
.article-body ul, .article-body ol { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; margin: 0 0 16px; padding-left: 22px; max-width: 68ch; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--brass); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--brass-bright); }
.article-meta { display: flex; gap: 14px; align-items: center; font-family: var(--mono); font-size: 12px; color: var(--ink-mute); margin: 0 0 8px; flex-wrap: wrap; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-mute); }
.quick-answer {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--brass);
  border-radius: var(--radius-sm); padding: 20px 22px; margin: 4px 0 32px;
}
.quick-answer h2 { margin-top: 0 !important; font-size: 1.15rem; }
.quick-answer p { margin-bottom: 0; color: var(--ink); }

/* --- Blog: CTA intermedio (mismo lenguaje visual que final-cta, más compacto) --- */
.mid-cta {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; margin: 8px 0 32px; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 16px;
}
.mid-cta p { margin: 0; color: var(--ink); font-size: 15px; max-width: 46ch; }
.mid-cta strong { color: var(--brass-bright); }

/* --- Blog: tabla de precios orientativa --- */
.price-table-wrap { overflow-x: auto; margin: 8px 0 28px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.price-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 480px; }
.price-table th, .price-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.price-table th { font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); background: var(--surface-2); }
.price-table td { color: var(--ink-soft); }
.price-table td:first-child { color: var(--ink); font-weight: 600; }
.price-table tr:last-child td { border-bottom: none; }
.price-table .accent-cell { color: var(--brass-bright); font-family: var(--mono); font-weight: 600; }

/* --- Blog: índice --- */
.blog-index-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.blog-index-card {
  display: block; padding: 26px 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: border-color .2s ease, transform .2s var(--ease-out);
}
.blog-index-card:hover { border-color: var(--brass); transform: translateY(-2px); }
.blog-index-card h2 { font-size: 1.2rem; margin: 0 0 8px; }
.blog-index-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 12px; max-width: 64ch; }
.blog-index-card .keyword-link { font-weight: 600; font-size: 13.5px; }

/* =============================================================
   7. Effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition-duration: .01ms !important; }
}
