/* =========================================================
   TiendaLink — estilos propios de las páginas SEO
   Se cargan después de styles.css y solo agregan lo que
   la landing principal no tiene.
   ========================================================= */

/* Hero más contenido que el de la home */
.seo-hero { padding: 114px 0 90px; }
.seo-hero .hero-inner { align-items: center; }
.seo-hero .display { font-size: clamp(32px, 3.6vw, 46px); margin-top: 0; }
.seo-hero .lede { font-size: clamp(16px, 1.25vw, 18px); max-width: 560px; }
.seo-brand-line {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 26px;
}
.seo-brand-line img { height: 40px; width: auto; }
.seo-brand-line span {
  font-family: var(--font-disp); font-weight: 600; font-size: 24px;
  color: rgba(255,255,255,.8); letter-spacing: -.02em; line-height: 1;
}
.seo-brand-line b { color: white; font-weight: 700; }
.seo-hero .hero-mock .browser { transform: none; }

/* Breadcrumbs */
.crumbs {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 22px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.crumbs a { color: rgba(255,255,255,.72); }
.crumbs a:hover { color: white; text-decoration: underline; }
.crumbs span[aria-current] { color: rgba(255,255,255,.9); }
.crumbs i { font-style: normal; color: rgba(255,255,255,.35); }

/* Bloques de texto largo */
.prose { max-width: 760px; margin: 0 auto; }
.prose p {
  font-size: 16.5px; line-height: 1.7; color: var(--ink-600);
  margin: 0 0 18px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink-900); font-weight: 600; }
.section-dark .prose p { color: var(--ink-300); }
.section-dark .prose strong { color: white; }
.prose-head { margin-bottom: 26px; }
.prose-head .h2 { margin-bottom: 0; }

.seo-section-head { text-align: left; max-width: 760px; margin: 0 auto 34px; }
.seo-section-head .h2 { font-size: clamp(26px, 2.6vw, 34px); }
.seo-section-head p { font-size: 16.5px; color: var(--ink-500); line-height: 1.65; margin: 14px 0 0; }
.seo-section-head.is-centered { text-align: center; }

/* Checklist util */
.check-list {
  max-width: 760px; margin: 0 auto;
  list-style: none; padding: 0;
  display: grid; gap: 14px;
}
.check-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 22px 18px 52px;
  position: relative;
  font-size: 15px; color: var(--ink-600); line-height: 1.55;
}
.check-list li::before {
  content: ""; position: absolute; left: 20px; top: 20px;
  width: 18px; height: 18px;
  background: var(--green-500);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}
.check-list li b { display: block; color: var(--ink-900); font-weight: 600; margin-bottom: 3px; font-size: 15.5px; }

/* Tarjetas de contenido (reutiliza el aire de .func-card) */
.seo-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.seo-cards.is-2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }
.seo-cards.is-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .seo-cards, .seo-cards.is-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .seo-cards, .seo-cards.is-2, .seo-cards.is-4 { grid-template-columns: 1fr; } }
.seo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px 24px;
}
.seo-card h3 {
  font-family: var(--font-disp);
  font-size: 16.5px; font-weight: 700; letter-spacing: -.01em;
  margin: 0 0 10px;
}
.seo-card p { margin: 0; font-size: 14.5px; color: var(--ink-500); line-height: 1.6; }
.seo-card .seo-card-ico {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--green-50); color: var(--green-600);
  display: grid; place-items: center; margin-bottom: 16px;
}
.seo-card .seo-card-ico svg { width: 18px; height: 18px; }

/* Antes / después */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 900px; margin: 0 auto; }
@media (max-width: 720px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-col {
  border-radius: var(--r-xl);
  padding: 26px 26px 22px;
  border: 1px solid var(--line);
  background: var(--white);
}
.ba-col h3 {
  font-family: var(--font-disp); font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin: 0 0 16px; color: var(--ink-500);
}
.ba-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ba-col li { font-size: 14.5px; color: var(--ink-600); line-height: 1.5; padding-left: 26px; position: relative; }
.ba-col li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 12px; height: 2px; border-radius: 2px; background: var(--ink-300);
}
.ba-after { background: var(--ink-900); border-color: var(--ink-900); }
.ba-after h3 { color: var(--green-400); }
.ba-after li { color: rgba(255,255,255,.82); }
.ba-after li::before {
  top: 3px; width: 15px; height: 15px; border-radius: 0; background: var(--green-400);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}

/* Captura destacada */
.seo-shot { max-width: 980px; margin: 0 auto; }
.seo-shot figcaption {
  text-align: center; font-size: 13.5px; color: var(--ink-500);
  margin-top: 16px;
}
.seo-shot .phone { margin: 0 auto; }

/* CTA intermedio */
.seo-cta-band {
  background: var(--ink-900);
  border-radius: var(--r-2xl);
  padding: 44px 40px;
  text-align: center;
  position: relative; overflow: hidden;
  max-width: 900px; margin: 0 auto;
}
.seo-cta-band .cta-grid-bg { position: absolute; inset: 0; }
.seo-cta-band-inner { position: relative; z-index: 1; }
.seo-cta-band h2 {
  font-family: var(--font-disp);
  font-size: clamp(22px, 2.4vw, 30px); font-weight: 700;
  letter-spacing: -.02em; color: white; margin: 0 0 12px;
}
.seo-cta-band p { color: var(--ink-400); font-size: 15.5px; margin: 0 0 24px; }
.seo-cta-band .btn-primary { background: var(--green-500); color: white; }
.seo-cta-band .btn-primary:hover { background: var(--green-600); }
.seo-cta-band .cta-bullets { margin-top: 18px; }
@media (max-width: 720px) { .seo-cta-band { padding: 34px 22px; } }

/* Enlazado interno */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 22px 24px;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.related-card h3 {
  font-family: var(--font-disp); font-size: 16px; font-weight: 700;
  letter-spacing: -.01em; margin: 0 0 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.related-card h3 svg { width: 15px; height: 15px; color: var(--green-600); flex-shrink: 0; }
.related-card p { margin: 0; font-size: 13.5px; color: var(--ink-500); line-height: 1.55; }

/* Hub de alternativas */
.alt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
@media (max-width: 720px) { .alt-grid { grid-template-columns: 1fr; } }

/* Footer con más columnas */
.footer-grid.footer-grid-seo { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
@media (max-width: 1020px) { .footer-grid.footer-grid-seo { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid.footer-grid-seo { grid-template-columns: 1fr 1fr; } }
