/* ============================================================
   RedPrint — Sistema de diseño v2 "Ink & Fire"
   Rediseño sep-2026: profundidad, degradados, jerarquía clara.
   Contenido intacto — solo capa visual.
   Contrato de clases idéntico a v1 (55 clases).
   ============================================================ */

:root {
  /* Marca */
  --red: #D92D20;
  --red-dark: #B42318;
  --red-deep: #A61B12;
  --red-soft: #FEF3F2;
  --red-border: #FECDCA;
  --red-glow: rgba(217, 45, 32, .28);

  /* Tinta */
  --ink: #101828;
  --slate: #475467;
  --muted: #5D6472;
  --line: #E7EAEF;
  --bg: #FFFFFF;
  --bg-soft: #F8F9FB;
  --ink-bg: #0A0F1C;

  /* WhatsApp (contraste AA verificado 5.02:1) */
  --wa: #15803D;
  --wa-dark: #166534;

  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05), 0 1px 3px rgba(16, 24, 40, .06);
  --shadow-md: 0 2px 4px rgba(16, 24, 40, .04), 0 12px 32px -12px rgba(16, 24, 40, .16);
  --shadow-lift: 0 4px 8px rgba(16, 24, 40, .05), 0 22px 48px -16px rgba(16, 24, 40, .22);
  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--red); color: #fff; }

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

a { color: var(--red-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.16; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: clamp(2.05rem, 1.4rem + 2.7vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.4vw, 2.15rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }
p { max-width: 66ch; }

.container { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: .6rem 1rem;
  border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 28px -14px rgba(16, 24, 40, .18); }
.nav-wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 70px; }

.brand {
  font-size: 1.45rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: .55rem;
}
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 36px; height: 36px; border-radius: 11px;
  background: linear-gradient(145deg, #E23B2B, var(--red-dark));
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.05rem; font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 6px 16px -6px var(--red-glow);
}
.brand em { font-style: normal; color: var(--red); }

.nav-links { display: flex; gap: 1.4rem; margin-left: auto; }
.nav-links a {
  color: var(--slate); font-weight: 550; font-size: .95rem;
  padding: .35rem 0;
  background: linear-gradient(var(--red), var(--red)) left bottom / 0% 2px no-repeat;
  transition: color .18s ease, background-size .22s ease;
}
.nav-links a:hover { color: var(--ink); text-decoration: none; background-size: 100% 2px; }
.nav-links a[aria-current="page"] {
  color: var(--ink); background-size: 100% 2px;
  background-image: linear-gradient(var(--red-dark), var(--red-dark));
}

/* CTA del header: suave (el CTA dominante vive en el hero) */
.nav-wrap > .btn-wa {
  background: var(--red-soft); color: var(--red-dark);
  border: 1px solid var(--red-border); box-shadow: none;
}
.nav-wrap > .btn-wa:hover {
  background: var(--red); color: #fff; border-color: var(--red);
  box-shadow: 0 8px 20px -8px var(--red-glow);
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 12px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-wa {
  background: var(--wa); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 10px 26px -10px rgba(21, 128, 61, .6);
}
.btn-wa:hover { background: var(--wa-dark); color: #fff; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 14px 32px -10px rgba(21, 128, 61, .65); }

.btn-red {
  background: linear-gradient(180deg, #DA3A2C, var(--red-dark)); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 10px 26px -10px var(--red-glow);
}
.btn-red:hover { color: #fff; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 16px 34px -10px var(--red-glow); }

.btn-ghost { background: transparent; color: var(--ink); border-color: #CBD2DD; }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--bg-soft); }

.btn-sm { padding: .55rem 1.1rem; font-size: .92rem; border-radius: 10px; }

/* ---------- Hero (home + 404): tinta con fuego ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3.4rem, 6.5vw, 6rem) 0 clamp(3rem, 5.5vw, 5rem);
  color: #C6CEDD;
  background:
    radial-gradient(880px 520px at 88% -12%, rgba(217, 45, 32, .36), transparent 62%),
    radial-gradient(720px 500px at -8% 112%, rgba(217, 45, 32, .16), transparent 60%),
    linear-gradient(158deg, #101A30 0%, #0A0F1C 55%, #170D12 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 85% 78% at 72% 16%, #000 30%, transparent 72%);
  mask-image: radial-gradient(ellipse 85% 78% at 72% 16%, #000 30%, transparent 72%);
}
.hero .container { position: relative; }

.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.5rem; align-items: center;
}
.hero .kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #FFB4AB; font-weight: 700;
  font-size: .84rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1.1rem;
  background: rgba(217, 45, 32, .16);
  border: 1px solid rgba(217, 45, 32, .38);
  padding: .38rem .9rem; border-radius: 999px;
}
.hero .kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #FF6B5E; box-shadow: 0 0 10px rgba(255, 107, 94, .9);
  flex: none;
}
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0, 0, 0, .35); }
.hero .sub { font-size: 1.18rem; margin: 1.25rem 0 1.9rem; max-width: 34em; color: #C6CEDD; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.7rem; }

/* Botón fantasma sobre fondo oscuro */
.hero .btn-ghost {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .28); color: #F3F6FB;
  backdrop-filter: blur(6px);
}
.hero .btn-ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .5); color: #fff; }

.hero-trust span { color: #C6CEDD; }
.hero-trust svg { color: #FF8A7A; }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; }
.chips li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  color: #E7EBF3; font-size: .88rem; font-weight: 600;
  padding: .42rem .9rem; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.chips .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #FF6B5E; box-shadow: 0 0 8px rgba(255, 107, 94, .8); flex: none;
}

/* Tarjeta "tu plan incluye": cristal sobre tinta */
.hero .plan-card {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .08);
  padding: 1.9rem; position: relative;
}
.hero .plan-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(180deg, #E23B2B, var(--red-dark));
  border-radius: var(--radius) 0 0 var(--radius);
}
.hero .plan-card h3 { color: #fff; font-size: 1.08rem; margin-bottom: 1.05rem; }
.hero .plan-card li { color: #D6DCE8; }
.hero .plan-card li svg { stroke: #FF8A7A; }
.hero .plan-card .nota {
  margin-top: 1.2rem; padding-top: 1rem; border-top: 1px dashed rgba(255, 255, 255, .16);
  font-size: .88rem; color: #A9B4C8;
}

/* Estructura compartida del plan-card (se usa también en claro, páginas internas) */
.plan-card ul { list-style: none; display: grid; gap: .7rem; }
.plan-card li { display: flex; gap: .65rem; align-items: flex-start; font-size: .97rem; }
.plan-card li svg { flex: none; margin-top: 3px; }

/* ---------- Secciones ---------- */
section { padding: clamp(3rem, 6vw, 4.8rem) 0; }
.section-soft { background: var(--bg-soft); border-block: 1px solid #EEF0F4; }

.section-head { max-width: 46rem; margin-bottom: 2.5rem; }
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--red-dark); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--red-soft); border: 1px solid var(--red-border);
  padding: .32rem .85rem; border-radius: 999px; margin-bottom: .8rem;
}
.section-head .eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex: none;
}
.section-head h2 { margin-bottom: .7rem; }
.section-head p { color: var(--muted); }

/* Tarjetas de servicios */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; display: flex; flex-direction: column; gap: .8rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .25s ease, transform .22s ease;
  color: inherit; text-decoration: none;
}
.card:hover {
  border-color: var(--red-border);
  box-shadow: 0 0 0 1px var(--red-border), 0 20px 44px -14px var(--red-glow);
  transform: translateY(-5px); text-decoration: none;
}
.card .icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(145deg, #FEE4E2, var(--red-soft));
  border: 1px solid var(--red-border);
  display: grid; place-items: center; color: var(--red);
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.card:hover .icon {
  background: linear-gradient(145deg, #E23B2B, var(--red-dark));
  color: #fff; box-shadow: 0 8px 18px -6px var(--red-glow);
}
.card h3 { font-size: 1.06rem; }
.card p { font-size: .93rem; color: var(--muted); max-width: none; }
.card .more { margin-top: auto; font-weight: 700; font-size: .92rem; color: var(--red-dark); transition: transform .2s ease; }
.card:hover .more { transform: translateX(4px); }

/* Tarjeta principal: borde degradado */
.card-principal {
  border: 1.5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(150deg, #E23B2B, var(--red-border)) border-box;
  box-shadow: 0 14px 36px -16px var(--red-glow);
}
.card-principal:hover {
  box-shadow: 0 0 0 1px var(--red-border), 0 24px 52px -14px rgba(217, 45, 32, .32);
}

/* Pasos */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; counter-reset: paso; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--red-border); }
.step::before {
  counter-increment: paso; content: counter(paso, decimal-leading-zero);
  font-weight: 800; font-size: .9rem; color: var(--red-dark);
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 30px; margin-bottom: .85rem;
  background: var(--red-soft); border: 1px solid var(--red-border);
  border-radius: 8px;
}
.step::after {
  content: ""; position: absolute; top: .9rem; right: 1.1rem;
  font-size: 3.6rem; font-weight: 800; line-height: 1;
  width: 74px; height: 56px;
  background:
    radial-gradient(rgba(217, 45, 32, .14) 2.5px, transparent 2.6px) 0 0 / 14px 14px;
  opacity: .8; pointer-events: none;
}
.step h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.step p { font-size: .94rem; color: var(--muted); max-width: none; }

/* Diferenciadores */
.feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
.feat {
  display: flex; gap: 1rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--red-border); }
.feat .icon {
  width: 46px; height: 46px; flex: none; border-radius: 13px;
  background: linear-gradient(145deg, #FEE4E2, var(--red-soft));
  border: 1px solid var(--red-border);
  display: grid; place-items: center; color: var(--red);
}
.feat h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.feat p { font-size: .93rem; color: var(--muted); max-width: none; }

/* Cobertura */
.coverage {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius); padding: 1.9rem 2.1rem;
  box-shadow: var(--shadow-md);
}
.coverage h2 { font-size: 1.3rem; margin-bottom: .3rem; }
.coverage p { color: var(--muted); max-width: 48ch; }

/* FAQ */
.faq { max-width: 46rem; display: grid; gap: .85rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 15px;
  padding: 0 1.35rem; box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .22s ease;
}
.faq details:hover { border-color: var(--red-border); }
.faq details[open] { border-color: var(--red-border); box-shadow: var(--shadow-md); }
.faq summary {
  cursor: pointer; list-style: none; font-weight: 700; color: var(--ink);
  padding: 1.05rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red-soft); border: 1px solid var(--red-border);
  font-size: 1.25rem; font-weight: 700; color: var(--red-dark); line-height: 1;
  transition: transform .22s ease, background-color .2s ease, color .2s ease;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
  background: var(--red); border-color: var(--red); color: #fff;
}
.faq .answer { padding: 0 0 1.15rem; color: var(--slate); font-size: .97rem; }

/* Banda CTA: fuego */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(620px 300px at 108% -40%, rgba(255, 255, 255, .14), transparent 60%),
    linear-gradient(115deg, var(--red-deep) 0%, #C72418 55%, var(--red) 100%);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .12) 1.5px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(100deg, transparent 55%, #000);
  mask-image: linear-gradient(100deg, transparent 55%, #000);
}
.cta-band .inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; padding: clamp(2.5rem, 5vw, 3.8rem) 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); margin-bottom: .5rem; text-shadow: 0 2px 18px rgba(0, 0, 0, .18); }
.cta-band p { color: #fff; max-width: 46ch; }

/* Botón dominante sobre la banda roja: blanco */
.cta-band .btn-wa {
  background: #fff; color: var(--red-dark);
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .45);
}
.cta-band .btn-wa:hover { background: #FFF5F4; color: var(--red-deep); }

/* ---------- Footer: tinta ---------- */
.site-footer {
  background:
    radial-gradient(700px 320px at 90% -60%, rgba(217, 45, 32, .18), transparent 65%),
    var(--ink-bg);
  color: #A7B1C4;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark)) 1;
  padding: 3.2rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.3rem; }
.site-footer .brand { color: #fff; }
.site-footer .brand em { color: #FF6B5E; }
.site-footer h3 {
  font-size: .95rem; text-transform: uppercase; letter-spacing: .09em;
  margin-bottom: 1rem; color: #fff;
  display: flex; align-items: center; gap: .6rem;
}
.site-footer h3::after {
  content: ""; width: 26px; height: 3px; border-radius: 99px;
  background: linear-gradient(90deg, var(--red), transparent); flex: none;
}
.site-footer ul { list-style: none; display: grid; gap: .55rem; font-size: .95rem; }
.site-footer a { color: #A7B1C4; transition: color .16s ease; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09); padding-top: 1.4rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .86rem; color: #8A94A8;
}
.footer-bottom a { color: #8A94A8; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Botón flotante WhatsApp ---------- */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(160deg, #1B9A4A, var(--wa)); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px -8px rgba(21, 128, 61, .65), inset 0 1px 0 rgba(255, 255, 255, .2);
  transition: transform .18s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa);
  animation: wa-ping 2.6s cubic-bezier(0, 0, .2, 1) infinite;
}
@keyframes wa-ping {
  0% { transform: scale(1); opacity: .75; }
  75%, 100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Páginas internas ---------- */
.page-hero {
  position: relative;
  padding: clamp(2.8rem, 5vw, 4.4rem) 0 clamp(2rem, 4vw, 3.2rem);
  background:
    radial-gradient(640px 300px at 92% -80%, rgba(217, 45, 32, .07), transparent 65%),
    linear-gradient(180deg, #FFFFFF 0%, #FBF7F6 70%, var(--bg-soft) 100%);
  border-bottom: 1px solid #EEF0F4;
}
.page-hero::after {
  content: ""; position: absolute; left: 50%; bottom: -2px; transform: translateX(-50%);
  width: 92px; height: 4px; border-radius: 99px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}
.page-hero .kicker {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--red-dark); font-weight: 700;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--red-soft); border: 1px solid var(--red-border);
  padding: .32rem .85rem; border-radius: 999px; margin-bottom: .9rem;
}
.page-hero .kicker::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex: none;
}
.page-hero .sub { font-size: 1.12rem; margin-top: 1rem; max-width: 40em; color: var(--muted); }
.page-hero .hero-ctas { margin-top: 1.7rem; margin-bottom: 0; }

/* Plan-card en contexto claro (páginas internas) */
.page-hero .plan-card, .dos-col .plan-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 1.8rem; position: relative;
}
.page-hero .plan-card::before, .dos-col .plan-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(180deg, #E23B2B, var(--red-dark));
  border-radius: var(--radius) 0 0 var(--radius);
}
.page-hero .plan-card h3, .dos-col .plan-card h3 { font-size: 1.05rem; margin-bottom: 1rem; color: var(--ink); }
.page-hero .plan-card li, .dos-col .plan-card li { color: var(--slate); }
.page-hero .plan-card li svg, .dos-col .plan-card li svg { stroke: var(--red); }
.page-hero .plan-card .nota, .dos-col .plan-card .nota {
  margin-top: 1.2rem; padding-top: 1rem; border-top: 1px dashed var(--line);
  font-size: .88rem; color: var(--muted);
}

.bloque-lista { list-style: none; display: grid; gap: .9rem; margin-top: 1.4rem; }
.bloque-lista li { display: flex; gap: .7rem; align-items: flex-start; }
.bloque-lista svg { flex: none; margin-top: 4px; color: var(--red); }
.bloque-lista strong { color: var(--ink); }

.dos-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.2rem; align-items: start; }

/* Prosa (blog) */
.prose { max-width: 44rem; }
.prose h2 { font-size: 1.55rem; margin: 2.2rem 0 .8rem; }
.prose h3 { font-size: 1.15rem; margin: 1.6rem 0 .5rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.4rem; display: grid; gap: .5rem; }
.prose blockquote {
  border-left: 4px solid var(--red);
  background: linear-gradient(90deg, var(--red-soft), #fff 70%);
  padding: 1.1rem 1.4rem; border-radius: 0 12px 12px 0; margin: 1.4rem 0;
  color: var(--ink); font-weight: 550;
}
.prose table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: 1rem; }
.prose th { text-align: left; background: var(--ink); color: #fff; }
.prose th, .prose td { border: 1px solid var(--line); padding: .85rem 1rem; vertical-align: top; }
.prose tr:nth-child(even) td { background: var(--bg-soft); }

.art-meta { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }

/* Menú móvil */
.menu-movil { display: none; position: relative; margin-left: auto; }
.menu-movil summary {
  list-style: none; cursor: pointer; width: 44px; height: 44px;
  display: grid; place-items: center; border: 1px solid var(--line);
  border-radius: 12px; color: var(--ink);
}
.menu-movil summary::-webkit-details-marker { display: none; }
.menu-movil .menu-panel {
  position: absolute; right: 0; top: calc(100% + .6rem);
  background: #fff; border: 1px solid var(--line); border-radius: 15px;
  box-shadow: var(--shadow-lift); padding: .8rem; width: 235px;
  display: grid; gap: .2rem; z-index: 70;
}
.menu-movil .menu-panel a {
  padding: .6rem .8rem; border-radius: 9px; color: var(--ink); font-weight: 550;
}
.menu-movil .menu-panel a:hover { background: var(--bg-soft); text-decoration: none; }

/* ---------- Animaciones de entrada (requiere js/efectos.js) ----------
   html.anim solo lo añade JS: sin JS todo queda visible. */
html.anim .reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.16, 1, .3, 1);
}
html.anim .reveal.reveal-in { opacity: 1; transform: none; }
html.anim .cards-grid .reveal:nth-child(2),
html.anim .steps .reveal:nth-child(2),
html.anim .feats .reveal:nth-child(2),
html.anim .hero-grid .reveal:nth-child(2) { transition-delay: .1s; }
html.anim .cards-grid .reveal:nth-child(3),
html.anim .steps .reveal:nth-child(3),
html.anim .feats .reveal:nth-child(3) { transition-delay: .2s; }
html.anim .cards-grid .reveal:nth-child(4),
html.anim .feats .reveal:nth-child(4) { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .dos-col { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-wrap > .btn { display: none; }
  .menu-movil { display: block; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .feats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.9rem; }
  .hero-ctas .btn { width: 100%; }
  .coverage { padding: 1.5rem; }
  .plan-card { padding: 1.4rem; }
  .step::after { display: none; }
}

/* ── Utilidades QA (se conservan de v1) ── */
.table-scroll { overflow-x: auto; }
.table-scroll table { min-width: 540px; }
.col-renta { background: var(--red-soft); font-weight: 600; }
th.col-renta { color: var(--red-dark); }
.cta-inline {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  flex-wrap: wrap;
  background: linear-gradient(90deg, var(--red-soft), #fff 75%);
  border: 1px solid var(--red-border); border-left: 4px solid var(--red);
  border-radius: var(--radius); padding: 1.35rem 1.55rem; margin: 1.6rem 0;
}
.cta-inline strong { color: var(--ink); font-size: 1.05rem; display: block; margin-bottom: .25rem; }
.cta-inline p { color: var(--slate); max-width: 48ch; margin: 0; }
.chip-principal {
  display: inline-block;
  background: linear-gradient(145deg, #E23B2B, var(--red-dark)); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px; margin-bottom: .8rem;
  box-shadow: 0 6px 14px -6px var(--red-glow);
}
.nota-horario { font-size: .88rem; color: var(--muted); margin-top: .6rem; }
@media (max-width: 620px) {
  .cta-inline { flex-direction: column; align-items: flex-start; }
}
