@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800;900&display=swap');
/* Blog EcoPlagas – estilos compartidos (paleta alineada con home/servicios) */
:root {
  --turf-green: #0A6A39;
  --bright-gold: #D4A82B;
  --gold-soft: #D4A82B;
  --yellow-dark: #b0901f;
  --yellow-darker: #8a6c14;
  --black: #000000;
  --white: #ffffff;
  --gray: #444;
  --card-radius: 6px;
  --card-shadow: 0 1px 2px rgba(0,0,0,0.06);
  --card-border: 1px solid rgba(0, 0, 0, 0.08);
  --section-bg: #fff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Figtree', system-ui, -apple-system, sans-serif; color: var(--black); background: var(--section-bg); line-height: 1.6; }
.container { max-width: 720px; margin: 0 auto; padding: 0 1.25rem; }
h1,h2,h3,h4 { letter-spacing:-0.01em; font-weight:700; } /* tipografia alineada al home */
a { color: var(--turf-green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* El header y el footer NO se estilan aquí: son compartidos por todo el sitio.
   Fuente de verdad: chrome/header.html + chrome/footer.html (markup) y
   public/css/chrome.css (estilos). Se inyectan con scripts/sync-chrome.py. */

@media (max-width: 768px) {
  .site-header { position: relative; z-index: 1000; }
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    border-radius: 0 0 8px 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s, box-shadow 0.3s ease;
  }
  .site-header.nav-open .header-nav {
    max-height: 380px;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  }
  .header-nav a {
    width: 100%;
    padding: 1rem 1.25rem;
    min-height: 52px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 6px;
    margin-bottom: 0.35rem;
    background: #f5f7f5;
    border: 1px solid rgba(0,0,0,0.08);
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s, border-color 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .header-nav a:hover { background: #eef1ee; border-color: rgba(0,0,0,0.12); color: var(--turf-green); }
  .header-nav a:last-of-type:not(.cta) { margin-bottom: 0; }
  .header-nav a.cta {
    margin-top: 0.5rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    text-align: center;
    justify-content: center;
    background: var(--gold-soft);
    border: none;
    color: #022e14;
    font-size: 1.05rem;
  }
  .header-nav a.cta:hover { background: #c2971f; color: #022e14; }
}

main { padding: 2rem 0 3rem; }
main .container {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  padding: 2rem 1.5rem;
}
.breadcrumb { font-size: 0.85rem; color: var(--gray); margin-bottom: 1rem; }
.breadcrumb a { color: var(--turf-green); }

.blog-intro { margin-bottom: 2rem; }
.blog-intro h1 { font-size: 1.75rem; color: var(--turf-green); margin-bottom: 0.5rem; }
.blog-intro h1 span[aria-hidden="true"] { margin-right: 0.35rem; display: inline-block; font-size: 1.15em; vertical-align: middle; }
.blog-intro p { color: var(--gray); font-size: 1rem; }

.blog-list { list-style: none; margin: 0 0 2.5rem 0; padding: 0; }
.blog-list li { margin-bottom: 0.5rem; }
.blog-list a {
  display: block;
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 1rem 1.25rem;
  border: var(--card-border);
  border-left: 4px solid var(--turf-green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  color: var(--black);
}
.blog-list a:hover { background: #fafafa; text-decoration: none; border-left-color: #036328; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.blog-list .tag { font-size: 0.7rem; color: var(--turf-green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.blog-list h2, .blog-list h3 { font-size: 1.05rem; margin-bottom: 0.25rem; font-weight: 700; }
.blog-list .teaser { font-size: 0.9rem; color: var(--gray); line-height: 1.45; }

.article { margin-bottom: 2rem; }
.article .tag { font-size: 0.75rem; color: var(--turf-green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.25rem; }
.article h1 { font-size: 1.5rem; color: var(--turf-green); margin-bottom: 1rem; line-height: 1.3; }
.article h2 { font-size: 1.35rem; color: var(--turf-green); margin-bottom: 1rem; line-height: 1.3; }
.article p { margin-bottom: 1rem; color: var(--gray); }
.article ul, .article ol { margin: 0 0 1rem 1.5rem; color: var(--gray); }
.article li { margin-bottom: 0.4rem; }
.article .refs { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px dashed #ccc; font-size: 0.85rem; color: #666; }
.article .refs p { margin-bottom: 0.35rem; }
.article .refs a { word-break: break-all; }
.article figure { margin: 1.25rem 0; }
.article figure img { width: 100%; max-width: 100%; height: auto; border-radius: 6px; border: 1px solid #e0e0e0; display: block; }
.article figure figcaption { font-size: 0.85rem; color: var(--gray); margin-top: 0.5rem; font-style: italic; }

.article-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.article-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 6px; background: rgba(4, 120, 53, 0.12); display: flex; align-items: center; justify-content: center; }
.article-icon svg { width: 28px; height: 28px; stroke: var(--turf-green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.blog-list .list-icon { width: 36px; height: 36px; border-radius: 6px; background: rgba(4, 120, 53, 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.blog-list .list-icon svg { width: 18px; height: 18px; stroke: var(--turf-green); fill: none; stroke-width: 2; }

.diagram { margin: 1.5rem 0; padding: 0; }
.diagram-title { font-size: 0.9rem; font-weight: 700; color: var(--turf-green); margin-bottom: 1rem; text-align: center; }
.diagram-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.diagram-box {
  flex: 1; min-width: 140px; max-width: 200px;
  background: #f3f8f4;
  border: 2px solid rgba(4, 120, 53, 0.25);
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
}
.diagram-box .d-icon { width: 40px; height: 40px; margin: 0 auto 0.5rem; border-radius: 50%; background: var(--turf-green); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.1rem; }
.diagram-box .d-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2.5; }
.diagram-box strong { display: block; font-size: 1rem; color: var(--black); margin-bottom: 0.2rem; }
.diagram-box span { font-size: 0.8rem; color: var(--gray); }

.tip {
  display: flex;
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #fffdf2;
  border-left: 4px solid var(--gold-soft);
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 8px rgba(242, 203, 5, 0.2);
}
.tip .tip-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 6px; background: rgba(242, 203, 5, 0.25); display: flex; align-items: center; justify-content: center; }
.tip .tip-icon svg { width: 22px; height: 22px; stroke: var(--yellow-dark); fill: none; stroke-width: 2; }
.tip .tip-body strong { display: block; font-size: 0.85rem; color: var(--yellow-darker); margin-bottom: 0.25rem; }
.tip .tip-body p { margin: 0; font-size: 0.95rem; color: #444; line-height: 1.5; }

.destacado {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: rgba(4, 120, 53, 0.08);
  border: 2px solid rgba(4, 120, 53, 0.3);
  border-radius: 6px;
  border-left: 4px solid var(--turf-green);
}
.destacado strong { color: var(--turf-green); font-size: 0.9rem; }
.destacado p { margin: 0.35rem 0 0; color: var(--gray); font-size: 0.95rem; }

.article .en-breve {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.25rem;
  background: #f8faf8;
  border-radius: 6px;
  border: 1px solid rgba(4, 120, 53, 0.2);
}
.article .en-breve strong { display: block; font-size: 0.85rem; color: var(--turf-green); margin-bottom: 0.5rem; }
.article .en-breve ul { margin: 0; padding-left: 1.25rem; list-style: disc; }
.article .en-breve li { margin-bottom: 0.25rem; }

.article .related-posts { margin: 1.5rem 0; padding-top: 1rem; border-top: 1px solid #e5e5e5; }
.article .related-posts h3 { font-size: 1rem; color: var(--turf-green); margin-bottom: 0.75rem; font-weight: 700; }
.article .related-posts ul { list-style: none; margin: 0; padding: 0; }
.article .related-posts li { margin-bottom: 0.5rem; }
.article .related-posts a { font-size: 0.95rem; }

.article ul.check-list { list-style: none; margin-left: 0; }
.article ul.check-list li { position: relative; padding-left: 1.75rem; margin-bottom: 0.5rem; }
.article ul.check-list li::before {
  content: ''; position: absolute; left: 0; top: 0.35rem;
  width: 20px; height: 20px; border-radius: 50%; background: rgba(4, 120, 53, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23047835' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 20px 20px; background-repeat: no-repeat; background-position: center;
}

.blog-seccion-tit {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--turf-green);
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid rgba(4, 120, 53, 0.25);
}
.article ol.pasos { list-style: none; margin: 0 0 1rem 0; padding: 0; counter-reset: paso; }
.article ol.pasos li { position: relative; padding-left: 2.5rem; margin-bottom: 0.75rem; counter-increment: paso; }
.article ol.pasos li::before {
  content: counter(paso);
  position: absolute; left: 0; top: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--turf-green); color: #fff; font-weight: 700; font-size: 0.9rem;
  display: inline-block; text-align: center; line-height: 28px;
}

/* CTA teléfono: misma paleta que home – caja amarilla, botón blanco */
.blog-cta-phone {
  margin: 1.75rem 0;
  padding: 1.25rem;
  background: var(--gold-soft);
  border-radius: 6px;
  border: var(--card-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  color: var(--black);
  text-align: center;
}
.blog-cta-phone p { margin: 0 0 1rem; font-size: 0.95rem; color: #333; }
.blog-cta-phone .blog-cta-tit { font-weight: 700; font-size: 1rem; color: var(--turf-green); margin-bottom: 0.5rem; }
.blog-cta-phone .blog-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.blog-cta-phone a.btn-blog-call, .blog-cta-phone a.btn-blog-wa {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  text-decoration: none;
}
.blog-cta-phone a.btn-blog-call { background: #fff; color: var(--black); display: inline-flex; align-items: center; gap: 0.35rem; border: 2px solid rgba(0,0,0,0.1); }
.blog-cta-phone a.btn-blog-call svg { width: 18px; height: 18px; flex-shrink: 0; }
.blog-cta-phone a.btn-blog-call:hover { background: #eee; color: var(--black); text-decoration: none; }
.blog-cta-phone a.btn-blog-wa { background: #25D366; color: #fff; }
.blog-cta-phone a.btn-blog-wa:hover { background: #20bd5a; color: #fff; text-decoration: none; }

.back-cta { margin-top: 2rem; text-align: center; }
.back-cta a {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
.back-cta a:hover { background: var(--yellow-dark); color: #fff; text-decoration: none; }

/* ================================================================ */
/* TRUST STRIP — barra de confianza debajo del header               */
/* ================================================================ */
.trust-strip {
  background: var(--turf-green);
  color: #fff;
  padding: 8px 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 2px solid rgba(0,0,0,0.1);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.trust-strip svg {
  width: 14px; height: 14px;
  stroke: rgba(255,255,255,0.85);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .trust-strip { font-size: 0.7rem; padding: 6px 0; }
  .trust-strip .container { gap: 4px 12px; }
}

/* ================================================================ */
/* ARTICLE META — fecha, autor, tiempo de lectura                   */
/* ================================================================ */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--gray);
}
.article-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.article-meta .meta-item svg {
  width: 15px; height: 15px;
  stroke: var(--turf-green);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.article-meta .meta-divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}

/* ================================================================ */
/* TABLE OF CONTENTS                                                */
/* ================================================================ */
.toc {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  background: #f8faf8;
  border: 1px solid rgba(4, 120, 53, 0.15);
  border-radius: 6px;
}
.toc-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--turf-green);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.toc-title svg {
  width: 16px; height: 16px;
  stroke: var(--turf-green);
  fill: none;
  stroke-width: 2;
}
.toc ol {
  margin: 0;
  padding-left: 1.25rem;
  list-style: decimal;
}
.toc li {
  margin-bottom: 0.3rem;
  font-size: 0.88rem;
}
.toc a {
  color: var(--gray);
  text-decoration: none;
}
.toc a:hover {
  color: var(--turf-green);
  text-decoration: underline;
}

/* ================================================================ */
/* AUTHOR BOX                                                       */
/* ================================================================ */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  padding: 1.25rem;
  background: #f6faf7;
  border: 1px solid rgba(4, 120, 53, 0.15);
  border-radius: 6px;
}
.author-box img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(4, 120, 53, 0.25);
  flex-shrink: 0;
}
.author-box .author-info { flex: 1; }
.author-box .author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--turf-green);
  margin-bottom: 0.2rem;
}
.author-box .author-role {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
}
.author-box .author-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 480px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
}

/* ================================================================ */
/* FAQ SECTION                                                      */
/* ================================================================ */
.faq-section {
  margin: 1.5rem 0;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}
.faq-section h3 {
  font-size: 1.1rem;
  color: var(--turf-green);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.faq-item {
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f8faf8;
  border: 1px solid rgba(4, 120, 53, 0.12);
  border-radius: 6px;
}
.faq-item dt {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.faq-item dt::before {
  content: 'P';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--turf-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-item dd {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
  padding-left: 1.9rem;
}

/* ================================================================ */
/* BLOG INDEX — cards con thumbnail y categorías                    */
/* ================================================================ */
h2.blog-category {
  margin: 2rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(4, 120, 53, 0.2);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--turf-green);
  display: flex;
  align-items: center;
  gap: 8px;
}
h2.blog-category svg {
  width: 22px; height: 22px;
  stroke: var(--turf-green);
  fill: none;
  stroke-width: 2;
}

/* Cards con imagen */
.blog-list a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.blog-list .card-thumb {
  width: 110px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #e0e0e0;
}
.blog-list .card-content {
  flex: 1;
  min-width: 0;
}
@media (max-width: 480px) {
  .blog-list a { flex-direction: column; gap: 0.5rem; }
  .blog-list .card-thumb { width: 100%; height: 140px; }
  .blog-list .list-icon { display: none; }
}

@media (max-width: 640px) {
}

/* ================================================================ */
/* CTA MEJORADO — mejor contraste                                   */
/* ================================================================ */
.back-cta a {
  background: var(--turf-green);
  color: #fff;
}
.back-cta a:hover { background: #036328; color: #fff; text-decoration: none; }

/* ============================================================
   Pulido editorial 2026 — capa aditiva (última en la cascada).
   Eleva tipografía, ritmo y profundidad al nivel del landing.
   No cambia contenido, textos ni enlaces. Misma fuente/paleta.
   ============================================================ */
:root{
  --green-dark:#022e14;
  --card-radius:10px;
  --card-shadow:0 1px 3px rgba(10,50,30,.05), 0 12px 28px -14px rgba(10,60,35,.12);
  --card-shadow-hover:0 2px 6px rgba(10,50,30,.06), 0 22px 44px -16px rgba(10,60,35,.20);
}
body{ background:#f5f8f5; color:#1a1a1a; text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }

/* Lienzo editorial: la tarjeta blanca de contenido flota sobre fondo suave */
main{ padding:2.25rem 0 3.5rem; }
main .container{ border-radius:14px; border:1px solid rgba(10,60,35,.07);
  box-shadow:0 1px 3px rgba(10,50,30,.04), 0 22px 50px -26px rgba(10,60,35,.18);
  padding:2.5rem 2.1rem; }
@media(max-width:600px){ main .container{ padding:1.6rem 1.2rem; border-radius:12px; } }

/* Titulares con presencia editorial (más grandes, ajustados, con jerarquía) */
h1,h2,h3,h4{ font-weight:800; letter-spacing:-.02em; }
.blog-intro h1{ color:#141414; font-size:clamp(1.9rem,4.2vw,2.5rem); line-height:1.12;
  letter-spacing:-.025em; margin-bottom:.6rem; }
.blog-intro p{ font-size:1.08rem; color:#555; line-height:1.6; }
.article h1{ color:#141414; font-size:clamp(1.9rem,4.2vw,2.5rem); line-height:1.14;
  letter-spacing:-.025em; margin-bottom:.9rem; }
.article h2{ color:var(--turf-green); font-size:clamp(1.35rem,2.6vw,1.65rem); font-weight:700;
  letter-spacing:-.015em; line-height:1.22; margin:2.2rem 0 .9rem; }
.article h3{ font-size:1.15rem; font-weight:700; letter-spacing:-.01em; margin:1.6rem 0 .6rem; }
.blog-seccion-tit{ font-weight:800; letter-spacing:-.01em; }

/* Cuerpo legible y aireado (mejor medida de lectura) */
.article p, .article li{ font-size:1.075rem; line-height:1.75; color:#2c2c2c; }
.article p{ margin-bottom:1.1rem; }
.article ul, .article ol{ margin-bottom:1.2rem; }
.article p a, .article li a{ color:var(--turf-green); text-decoration:underline;
  text-decoration-color:rgba(10,106,57,.35); text-underline-offset:2px; text-decoration-thickness:1.5px; }
.article p a:hover, .article li a:hover{ text-decoration-color:var(--turf-green); }

/* Etiquetas/eyebrows más marcadas + cifras alineadas */
.article .tag, .blog-list .tag{ letter-spacing:.14em; font-weight:700; font-size:.72rem; }
.article-meta, .toc, .diagram-box{ font-variant-numeric:tabular-nums; }

/* Tarjetas del índice: profundidad sutil + lift al hover */
.blog-list a{ border-radius:var(--card-radius); box-shadow:var(--card-shadow);
  border:1px solid rgba(10,60,35,.06); border-left:4px solid var(--turf-green);
  transition:transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s ease, border-left-color .22s ease; }
.blog-list a:hover{ transform:translateY(-3px); background:#fff;
  box-shadow:var(--card-shadow-hover); border-left-color:#036328; }
.blog-list h2, .blog-list h3{ font-size:1.08rem; font-weight:700; letter-spacing:-.01em; }
.blog-list .card-thumb{ border-radius:8px; }
h2.blog-category{ font-size:1.2rem; font-weight:800; letter-spacing:-.015em; }

/* Callouts editoriales cohesivos (radio unificado) */
.tip, .destacado, .toc, .author-box, .faq-item, .article .en-breve,
.article-icon, .diagram-box, .blog-cta-phone{ border-radius:var(--card-radius); }

/* CTA de teléfono / botones: micro-interacción */
.blog-cta-phone a.btn-blog-call, .blog-cta-phone a.btn-blog-wa, .back-cta a{
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease; }
.blog-cta-phone a.btn-blog-call:hover, .blog-cta-phone a.btn-blog-wa:hover, .back-cta a:hover{
  transform:translateY(-1px); box-shadow:0 8px 20px -8px rgba(0,0,0,.28); }

/* Header de contenido: sombra sutil para separarlo del lienzo */

/* Foco accesible y consistente (teclado) */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:2px solid var(--turf-green); outline-offset:2px; border-radius:4px; }
