/*
Theme Name: DIAN Colombia
Theme URI: https://dian.com.co
Author: dian.com.co
Description: Tema personalizado para dian.com.co — Guía independiente de trámites e impuestos en Colombia.
Version: 1.6
License: GNU General Public License v2 or later
Text Domain: dian-theme
*/

/* =============================================
   VARIABLES
============================================= */
:root {
  --verde: #1a7a4a;
  --verde-oscuro: #0f5233;
  --verde-medio: #22a05f;
  --verde-claro: #e8f5ee;
  --verde-suave: #d0eddb;
  --verde-acento: #2dce73;
  --blanco: #ffffff;
  --gris-fondo: #f7faf8;
  --gris-claro: #eef2ef;
  --texto: #0f1f17;
  --texto-suave: #4a6355;
  --borde: #c8ddd1;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--blanco);
  color: var(--texto);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   TIPOGRAFÍA
============================================= */
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', serif;
  line-height: 1.2;
  color: var(--verde-oscuro);
}
h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -1px; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; letter-spacing: -0.4px; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { line-height: 1.7; color: var(--texto-suave); }

/* =============================================
   DISCLAIMER BAR
============================================= */
.disclaimer-bar {
  background: var(--verde-oscuro);
  border-bottom: 1px solid rgba(45,206,115,0.2);
  padding: 0.4rem 5%;
  display: flex; align-items: center;
  justify-content: center;
  gap: 0.5rem; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.01em;
}
.disclaimer-bar strong { color: rgba(255,255,255,0.75); font-weight: 600; }
.disclaimer-bar a { color: var(--verde-acento); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(45,206,115,0.4); transition: color 0.2s; }
.disclaimer-bar a:hover { color: white; }

/* =============================================
   NAVEGACIÓN
============================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--verde-oscuro);
  box-shadow: 0 2px 16px rgba(15,82,51,0.25);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 5%;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 62px;
}
.site-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.logo-badge {
  background: var(--verde-acento);
  color: var(--verde-oscuro);
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 900; font-size: 1rem;
}
.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-weight: 700;
  color: white;
}
.logo-name span { color: var(--verde-acento); }
.main-nav { display: flex; gap: 0.2rem; }
.main-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.86rem; font-weight: 500;
  padding: 0.4rem 0.85rem; border-radius: 5px;
  transition: all 0.18s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.main-nav a:hover { background: rgba(255,255,255,0.1); color: white; }
.main-nav a.nav-oficial {
  background: var(--verde-acento);
  color: var(--verde-oscuro) !important;
  font-weight: 700;
}
.main-nav a.nav-oficial:hover { background: #3dde83; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: white; font-size: 1.5rem;
}

/* =============================================
   HERO
============================================= */
.hero {
  background: var(--verde-oscuro);
  padding: 72px 5% 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 85% 40%, rgba(45,206,115,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 5% 80%, rgba(45,206,115,0.06) 0%, transparent 60%);
}
.hero-dots {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(45,206,115,0.15);
  border: 1px solid rgba(45,206,115,0.3);
  color: var(--verde-acento);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 20px;
  margin-bottom: 1.3rem; width: fit-content;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero h1 { color: white; margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: var(--verde-acento); }
.hero-desc {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem; line-height: 1.75;
  max-width: 490px; margin-bottom: 2rem;
}
.hero-search {
  max-width: 360px;
  width: 100%;
  background: transparent;
  box-shadow: none;
  margin-bottom: 1.5rem;
}
.hero-search form {
  display: flex;
  width: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.25);
}
.hero-search label {
  flex: 1;
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0;
}
.hero-search input,
.hero-search .search-field {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0.75rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--texto);
  background: white;
}
.hero-search input::placeholder,
.hero-search .search-field::placeholder { color: #9ab; }
.hero-search button,
.hero-search .search-submit {
  flex-shrink: 0;
  width: auto;
  background: var(--verde);
  color: white;
  border: none;
  cursor: pointer;
  padding: 0 1.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-search button:hover,
.hero-search .search-submit:hover { background: var(--verde-medio); }
.hero-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.hero-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 0.3rem 0.85rem; border-radius: 20px;
  font-size: 0.8rem; cursor: pointer;
  transition: all 0.18s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-pill:hover {
  background: rgba(45,206,115,0.15);
  border-color: var(--verde-acento);
  color: var(--verde-acento);
}

/* HERO PANEL */
.hero-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; overflow: hidden;
  backdrop-filter: blur(8px);
}
.panel-head {
  background: rgba(0,0,0,0.15);
  padding: 1rem 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 0.6rem;
}
.panel-head h3 { color: white; font-size: 0.92rem; font-weight: 700; }
.panel-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.panel-item:last-child { border-bottom: none; }
.panel-item:hover { background: rgba(45,206,115,0.08); }
.pi-left { display: flex; align-items: center; gap: 0.7rem; }
.pi-icon {
  width: 30px; height: 30px; border-radius: 6px;
  background: rgba(45,206,115,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; flex-shrink: 0;
}
.pi-text { color: rgba(255,255,255,0.82); font-size: 0.87rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.pi-badge {
  font-size: 0.68rem; font-weight: 700;
  padding: 0.15rem 0.5rem; border-radius: 10px; flex-shrink: 0;
}
.pi-badge.popular { background: #e74c3c; color: white; }
.pi-badge.nuevo { background: var(--verde); color: white; }
.pi-arrow { color: rgba(255,255,255,0.25); font-size: 0.8rem; }

/* =============================================
   STATS BAR
============================================= */
.stats-bar { background: var(--verde); padding: 1.3rem 5%; }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem; font-weight: 900;
  color: var(--verde-acento); display: block;
}
.stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.7); font-family: 'Plus Jakarta Sans', sans-serif; }

/* =============================================
   SECCIONES GENERALES
============================================= */
.section { padding: 72px 5%; }
.section-bg { background: var(--gris-fondo); }
.section-verde { background: var(--verde-oscuro); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--verde); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.eyebrow::before { content: ''; display: block; width: 18px; height: 2px; background: var(--verde); }
.eyebrow-white { color: var(--verde-acento); }
.eyebrow-white::before { background: var(--verde-acento); }

.row-between {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
}
.ver-mas {
  color: var(--verde); font-size: 0.87rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s; white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ver-mas:hover { gap: 0.6rem; }

/* =============================================
   CATEGORÍAS
============================================= */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.1rem;
}
.cat-card {
  border: 1.5px solid var(--borde); border-radius: 10px;
  padding: 1.5rem; background: white;
  display: block; transition: all 0.22s;
  position: relative; overflow: hidden;
}
.cat-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--verde), var(--verde-acento));
  transform: scaleX(0); transform-origin: left; transition: transform 0.28s;
}
.cat-card:hover { border-color: var(--verde); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(26,122,74,0.12); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--verde-claro);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 0.9rem; transition: background 0.22s;
}
.cat-card:hover .cat-icon { background: var(--verde-suave); }
.cat-card h3 { color: var(--verde-oscuro); margin-bottom: 0.35rem; }
.cat-card p { font-size: 0.84rem; margin-bottom: 0.8rem; }
.cat-count { font-size: 0.77rem; color: var(--verde); font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }

/* =============================================
   ARTÍCULOS
============================================= */
.arts-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.3rem; }

.art-main {
  background: white; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--borde); display: block; transition: box-shadow 0.22s;
}
.art-main:hover { box-shadow: 0 10px 36px rgba(26,122,74,0.13); }
.art-img {
  height: 195px;
  background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.art-img-bg {
  position: absolute; font-family: 'Fraunces', serif;
  font-size: 4.5rem; font-weight: 900;
  color: rgba(255,255,255,0.05); user-select: none;
}
.art-img-tag {
  position: relative; z-index: 1;
  background: var(--verde-acento); color: var(--verde-oscuro);
  padding: 0.45rem 1.1rem; border-radius: 4px;
  font-family: 'Fraunces', serif; font-size: 0.85rem; font-weight: 800;
}
.art-body { padding: 1.5rem; }
.art-meta { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.6rem; flex-wrap: wrap; }
.art-cat {
  background: var(--verde-claro); color: var(--verde);
  padding: 0.18rem 0.65rem; border-radius: 20px;
  font-size: 0.73rem; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.art-fecha { font-size: 0.76rem; color: var(--texto-suave); font-family: 'Plus Jakarta Sans', sans-serif; }
.art-main h3 { color: var(--verde-oscuro); margin-bottom: 0.55rem; font-size: 1.18rem; }
.art-main p { font-size: 0.87rem; margin-bottom: 0.9rem; }
.art-leer { color: var(--verde); font-size: 0.83rem; font-weight: 600; display: flex; align-items: center; gap: 0.3rem; font-family: 'Plus Jakarta Sans', sans-serif; }

.arts-side { display: flex; flex-direction: column; gap: 0.9rem; }
.art-small {
  background: white; border-radius: 9px; padding: 1.1rem 1.3rem;
  border: 1px solid var(--borde); display: block; transition: all 0.2s;
}
.art-small:hover { border-color: var(--verde); transform: translateX(4px); }
.art-small h4 { color: var(--verde-oscuro); line-height: 1.35; margin: 0.35rem 0; font-size: 0.93rem; }
.art-small .read-time { font-size: 0.76rem; color: var(--texto-suave); font-family: 'Plus Jakarta Sans', sans-serif; }

/* =============================================
   DATOS CLAVE
============================================= */
.datos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.1rem; }
.dato-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 1.5rem;
}
.dato-card h4 {
  color: var(--verde-acento); font-size: 0.87rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Fraunces', serif;
}
.dato-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); gap: 0.8rem;
}
.dato-row:last-child { border-bottom: none; }
.dato-lbl { color: rgba(255,255,255,0.6); font-size: 0.83rem; line-height: 1.4; font-family: 'Plus Jakarta Sans', sans-serif; }
.dato-val { color: white; font-size: 0.83rem; font-weight: 600; text-align: right; white-space: nowrap; flex-shrink: 0; font-family: 'Plus Jakarta Sans', sans-serif; }
.dato-val.mal { color: #ff8a80; }
.dato-val.bien { color: var(--verde-acento); }

/* =============================================
   LINKS OFICIALES
============================================= */
.links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 0.9rem; }
.link-oficial {
  background: var(--gris-fondo); border: 1.5px solid var(--borde);
  border-radius: 8px; padding: 1.1rem 1.2rem;
  display: flex; align-items: center; gap: 0.75rem; transition: all 0.2s;
}
.link-oficial:hover { background: var(--verde-claro); border-color: var(--verde); }
.link-ico { font-size: 1.3rem; flex-shrink: 0; }
.link-txt { font-size: 0.86rem; font-weight: 600; color: var(--verde-oscuro); font-family: 'Plus Jakarta Sans', sans-serif; }
.link-sub { font-size: 0.76rem; color: var(--texto-suave); margin-top: 0.1rem; font-family: 'Plus Jakarta Sans', sans-serif; }

/* =============================================
   NEWSLETTER
============================================= */
.nl-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.nl-inner h2 { color: white; margin-bottom: 0.5rem; }
.nl-inner p { color: rgba(255,255,255,0.65); margin-bottom: 1.7rem; }
.nl-form { display: flex; gap: 0.7rem; max-width: 420px; margin: 0 auto; }
.nl-input {
  flex: 1; padding: 0.85rem 1.1rem; border-radius: 7px;
  border: none; outline: none;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem;
}
.btn-verde {
  background: var(--verde-acento); color: var(--verde-oscuro);
  border: none; cursor: pointer; padding: 0.85rem 1.4rem; border-radius: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; font-weight: 700; transition: background 0.2s; white-space: nowrap;
}
.btn-verde:hover { background: #3dde83; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #071a0f; padding: 3.5rem 5% 2rem;
  border-top: 3px solid var(--verde);
}
.ft-inner { max-width: 1200px; margin: 0 auto; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.ft-logo { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 900; color: white; margin-bottom: 0.8rem; display: block; }
.ft-logo span { color: var(--verde-acento); }
.ft-disclaimer {
  background: rgba(45,206,115,0.06); border: 1px solid rgba(45,206,115,0.18);
  border-radius: 7px; padding: 0.75rem 0.9rem;
  font-size: 0.79rem; color: rgba(255,255,255,0.55); line-height: 1.55; margin-bottom: 0.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ft-disclaimer a { color: var(--verde-acento); }
.ft-desc { color: rgba(255,255,255,0.35); font-size: 0.81rem; line-height: 1.6; font-family: 'Plus Jakarta Sans', sans-serif; }
.ft-col h5 {
  color: rgba(255,255,255,0.5); font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ft-col li { margin-bottom: 0.5rem; }
.ft-col a { color: rgba(255,255,255,0.45); font-size: 0.84rem; transition: color 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
.ft-col a:hover { color: rgba(255,255,255,0.85); }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem;
}
.ft-bottom p { color: rgba(255,255,255,0.22); font-size: 0.77rem; font-family: 'Plus Jakarta Sans', sans-serif; }

/* =============================================
   CONTENIDO DE ARTÍCULOS (single.php)
============================================= */
.article-container { max-width: 780px; margin: 0 auto; padding: 60px 5%; }
.article-header { margin-bottom: 2.5rem; }
.article-category {
  background: var(--verde-claro); color: var(--verde);
  padding: 0.2rem 0.8rem; border-radius: 20px;
  font-size: 0.78rem; font-weight: 700; display: inline-block;
  margin-bottom: 1rem; font-family: 'Plus Jakarta Sans', sans-serif;
}
.article-title { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--verde-oscuro); margin-bottom: 1rem; }
.article-meta-bar {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  padding: 1rem 0; border-top: 1px solid var(--borde); border-bottom: 1px solid var(--borde);
  margin-bottom: 2rem; font-size: 0.84rem; color: var(--texto-suave);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.article-content h2 { font-size: 1.5rem; margin: 2rem 0 0.8rem; color: var(--verde-oscuro); }
.article-content h3 { font-size: 1.15rem; margin: 1.5rem 0 0.6rem; color: var(--verde); }
.article-content p { margin-bottom: 1.2rem; color: var(--texto); font-size: 0.97rem; }
.article-content ul, .article-content ol { margin: 1rem 0 1.2rem 1.5rem; }
.article-content li { margin-bottom: 0.4rem; color: var(--texto); font-size: 0.97rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.article-content strong { color: var(--verde-oscuro); font-weight: 700; }
.info-box {
  background: var(--verde-claro); border-left: 4px solid var(--verde);
  border-radius: 0 8px 8px 0; padding: 1.2rem 1.5rem; margin: 1.5rem 0;
}
.info-box p { color: var(--texto); margin: 0; }
.warning-box {
  background: #fff8e1; border-left: 4px solid #f5c842;
  border-radius: 0 8px 8px 0; padding: 1.2rem 1.5rem; margin: 1.5rem 0;
}
.warning-box p { color: #5a4500; margin: 0; }

/* =============================================
   ANIMACIONES
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.5s ease both; }
.hero h1 { animation: fadeUp 0.5s 0.08s ease both; }
.hero-desc { animation: fadeUp 0.5s 0.15s ease both; }
.hero-search { animation: fadeUp 0.5s 0.21s ease both; }
.hero-pills { animation: fadeUp 0.5s 0.28s ease both; }
.hero-panel { animation: fadeUp 0.6s 0.18s ease both; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .arts-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 600px) {
  .ft-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .hero { padding: 50px 5% 60px; }
  .section { padding: 50px 5%; }
}

/* =============================================
   BREADCRUMBS
============================================= */
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--texto-suave);
  margin-bottom: 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.3rem;
}
.breadcrumbs a { color: var(--verde); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--verde-oscuro); }
.breadcrumbs span { color: var(--texto-suave); }
.bc-sep { color: var(--borde); font-size: 0.9rem; }
