/*
 * LinkLoyalty — pages.css
 * Estilos específicos das telas: Sobre, Cases, Blog, Artigo
 * Fiel ao design dos HTMLs originais
 */

/* ────────────────────────────────────────────────
   BREADCRUMB
──────────────────────────────────────────────── */
.ll-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 24px;
}
.ll-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}
.ll-breadcrumb a:hover { text-decoration: underline; }

/* ────────────────────────────────────────────────
   PAGE HERO VARIANTS
──────────────────────────────────────────────── */
.ll-sobre-hero,
.ll-cases-hero,
.ll-blog-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 64px;
}
.ll-sobre-hero h1,
.ll-cases-hero h1,
.ll-blog-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 700px;
}

/* ────────────────────────────────────────────────
   SOBRE — MISSION
──────────────────────────────────────────────── */
.ll-mission-section { padding: 80px 0; }

.ll-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ll-mission-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.ll-mission-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.ll-mission-visual {
  background: var(--blue);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.ll-mission-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.ll-mission-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.ll-mv-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  position: relative;
}
.ll-mv-val {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
}
.ll-mv-val span { font-size: 28px; }
.ll-mv-sub {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  position: relative;
}
.ll-mv-divider {
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 28px 0;
  position: relative;
}
.ll-mv-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.ll-mv-stat {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}

/* ────────────────────────────────────────────────
   SOBRE — VALUES
──────────────────────────────────────────────── */
.ll-values-section {
  background: var(--surface);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ll-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.ll-value-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ll-value-card:hover {
  border-color: #bdd0f8;
  box-shadow: var(--shadow);
}
.ll-vc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.ll-vc-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.ll-vc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ────────────────────────────────────────────────
   SOBRE — TEAM
──────────────────────────────────────────────── */
.ll-team-header { margin-bottom: 48px; }
.ll-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ll-team-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ll-team-card:hover { border-color: #bdd0f8; box-shadow: var(--shadow); }
.ll-team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.ll-team-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.ll-team-role { font-size: 12px; color: var(--dim); margin-bottom: 12px; }
.ll-team-bio  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ────────────────────────────────────────────────
   SOBRE — TIMELINE
──────────────────────────────────────────────── */
.ll-timeline-section {
  background: var(--ink);
  padding: 80px 0;
}
.ll-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 52px;
}
.ll-timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: rgba(255,255,255,.1);
}
.ll-tl-item { text-align: center; padding: 0 16px; }
.ll-tl-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
  border: 3px solid var(--ink);
}
.ll-tl-year  { font-size: 13px; font-weight: 700; color: #7aa8f8; margin-bottom: 6px; }
.ll-tl-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ll-tl-desc  { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; }

/* ────────────────────────────────────────────────
   CASES — PAGE
──────────────────────────────────────────────── */

/* Filtros */
.ll-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.ll-filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  background: #fff;
  text-decoration: none;
  display: inline-block;
}
.ll-filter-btn.active,
.ll-filter-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* Featured case */
.ll-featured-wrap { padding: 72px 0 0; }
.ll-featured-card {
  background: var(--ink);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ll-fc-content { padding: 52px; }
.ll-fc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.ll-fc-company {
  font-size: 13px;
  font-weight: 700;
  color: #7aa8f8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.ll-fc-title {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.ll-fc-desc {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.72;
  margin-bottom: 32px;
}
.ll-fc-metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.ll-fc-metric-val {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.ll-fc-metric-val span { color: #7aa8f8; }
.ll-fc-metric-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}
.ll-fc-visual {
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.ll-fc-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}

/* Case mockup dashboard */
.ll-case-mockup {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  position: relative;
  z-index: 1;
}
.ll-cm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ll-cm-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.ll-cm-badge { background: #ecfdf5; color: var(--green); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.ll-cm-big   { font-size: 40px; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
.ll-cm-sub   { font-size: 12px; color: var(--dim); margin-bottom: 20px; }
.ll-cm-bars  { display: flex; align-items: flex-end; gap: 5px; height: 60px; }
.ll-cm-bar   { flex: 1; border-radius: 3px 3px 0 0; background: var(--blue-light); }
.ll-cm-bar.ll-hi { background: var(--blue); }
.ll-cm-row   { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 14px; }
.ll-cm-kpi   { background: var(--surface); border-radius: 8px; padding: 10px; text-align: center; }
.ll-cm-kpi-val { font-size: 16px; font-weight: 800; color: var(--ink); }
.ll-cm-kpi-lbl { font-size: 10px; color: var(--dim); }

/* Cases grid */
.ll-cases-grid-section { padding: 64px 0; }
.ll-cases-grid-section > .container > h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.ll-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ll-case-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.ll-case-card:hover {
  border-color: #bdd0f8;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ll-case-card-top  { padding: 24px 24px 0; flex: 1; }
.ll-cc-sector {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
}
.ll-cc-company {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.ll-cc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.ll-cc-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
}
.ll-cc-metric {
  flex: 1;
  padding: 14px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.ll-cc-metric:last-child { border-right: none; }
.ll-cc-metric-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
}
.ll-cc-metric-lbl { font-size: 10px; color: var(--dim); margin-top: 2px; }
.ll-cc-footer {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.ll-cc-tag {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.ll-cc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}
.ll-cc-link:hover { color: var(--blue-dark); }

/* Cases logos */
.ll-logos-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.ll-logos-section h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
}
.ll-logos-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.ll-logo-item {
  padding: 14px 32px;
  border-right: 1px solid var(--border);
  font-weight: 800;
  font-size: 15px;
  color: var(--dim);
  letter-spacing: -0.03em;
}
.ll-logo-item:last-child { border-right: none; }

/* Cases CTA */
.ll-cases-cta {
  background: var(--blue);
  padding: 72px 0;
}
.ll-cases-cta h2 { font-size: 40px; font-weight: 800; color: #fff; letter-spacing: -0.04em; margin-bottom: 12px; }
.ll-cases-cta p  { font-size: 17px; color: rgba(255,255,255,.7); }

/* ────────────────────────────────────────────────
   BLOG — PAGE
──────────────────────────────────────────────── */
.ll-blog-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.ll-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border2);
  border-radius: 12px;
  padding: 12px 18px;
  min-width: 280px;
}
.ll-search-box input {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  width: 100%;
  background: transparent;
}
.ll-search-box input::placeholder { color: var(--dim); }
.ll-search-icon { color: var(--dim); font-size: 16px; }

/* Categories */
.ll-categories { padding: 32px 0 0; }
.ll-cat-row    { display: flex; gap: 8px; flex-wrap: wrap; }
.ll-cat-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  background: #fff;
  text-decoration: none;
  transition: all var(--transition);
}
.ll-cat-btn.active,
.ll-cat-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* Featured post */
.ll-featured-post { padding: 56px 0 0; }
.ll-fp-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}
.ll-fp-card:hover { box-shadow: var(--shadow-lg); }
.ll-fp-image {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ll-fp-image img { width: 100%; height: 100%; object-fit: cover; }
.ll-fp-image::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.ll-fp-image-inner { position: relative; z-index: 1; text-align: center; }
.ll-fp-image-icon  { font-size: 64px; display: block; margin-bottom: 16px; }
.ll-fp-image-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
.ll-fp-content { padding: 40px; }
.ll-fp-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ll-fp-cat  { background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.ll-fp-date { font-size: 12px; color: var(--dim); }
.ll-fp-read { font-size: 12px; color: var(--dim); }
.ll-fp-dot  { width: 3px; height: 3px; border-radius: 50%; background: var(--dim); display: inline-block; }
.ll-fp-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.ll-fp-desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.ll-fp-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.ll-fp-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ll-fp-av-img  { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.ll-fp-author-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.ll-fp-author-role { font-size: 11px; color: var(--dim); }

/* Posts grid */
.ll-posts-grid-section { padding: 56px 0 80px; }
.ll-posts-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.ll-posts-grid-header h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.04em; }
.ll-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ll-post-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
  background: #fff;
}
.ll-post-card:hover {
  border-color: #bdd0f8;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ll-post-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
}
.ll-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ll-post-body  { padding: 20px; }
.ll-post-meta  { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.ll-post-cat   { font-size: 10px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .8px; }
.ll-post-dot   { width: 3px; height: 3px; border-radius: 50%; background: var(--dim); display: inline-block; }
.ll-post-date  { font-size: 11px; color: var(--dim); }
.ll-post-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 8px;
}
.ll-post-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.ll-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ll-post-author { display: flex; align-items: center; gap: 8px; }
.ll-post-av {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ll-post-author-name { font-size: 12px; font-weight: 600; color: var(--muted); }
.ll-post-read { font-size: 11px; color: var(--dim); }

/* Newsletter */
.ll-newsletter {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.ll-nl-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.ll-nl-inner h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.ll-nl-inner p  { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.ll-nl-form     { display: flex; gap: 10px; }
.ll-nl-input {
  flex: 1;
  background: #fff;
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
}
.ll-nl-input:focus { border-color: var(--blue); }
.ll-nl-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.ll-nl-btn:hover { background: var(--blue-dark); }
.ll-nl-disclaimer { font-size: 11px; color: var(--dim); margin-top: 12px; }

/* ────────────────────────────────────────────────
   ARTIGO — SINGLE POST
──────────────────────────────────────────────── */
.ll-article-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 56px) 48px 100px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.ll-article-main {}

/* Art meta */
.ll-art-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ll-art-cat  { background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.ll-art-date { font-size: 13px; color: var(--dim); }
.ll-art-read { font-size: 13px; color: var(--dim); }
.ll-art-dot  { width: 3px; height: 3px; border-radius: 50%; background: var(--dim); display: inline-block; }

.ll-article-main h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--ink);
}

/* Author bar */
.ll-art-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.ll-art-av-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ll-art-author-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.ll-art-author-role { font-size: 13px; color: var(--dim); }
.ll-art-share {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ll-share-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: border-color var(--transition);
  background: #fff;
  text-decoration: none;
}
.ll-share-btn:hover { border-color: var(--blue); }
.ll-art-featured-img { margin-bottom: 40px; }

/* Article body — WP content styling */
.ll-art-body { font-size: 17px; color: var(--muted); line-height: 1.8; }
.ll-art-body p { margin-bottom: 20px; }
.ll-art-body h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin: 40px 0 16px;
  line-height: 1.15;
}
.ll-art-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 28px 0 12px;
}
.ll-art-body strong { color: var(--ink); font-weight: 700; }
.ll-art-body em     { font-style: italic; }
.ll-art-body ul, .ll-art-body ol { padding-left: 24px; margin-bottom: 20px; }
.ll-art-body li { margin-bottom: 8px; line-height: 1.7; }

/* Callout (via shortcode ou classe personalizada) */
.ll-art-body .wp-block-pullquote,
.ll-art-body blockquote,
.ll-art-callout {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.ll-art-body blockquote p,
.ll-art-callout p {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
}

/* Stats grid (classe .wp-block-columns ou shortcode) */
.ll-art-stats,
.ll-art-body .ll-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.ll-art-stat {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.ll-art-stat-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ll-art-stat-lbl { font-size: 12px; color: var(--dim); margin-top: 4px; }

/* Inline CTA */
.ll-art-body .ll-art-cta,
.ll-art-cta {
  background: var(--ink);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
}
.ll-art-cta h3 { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 8px; }
.ll-art-cta p  { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 20px; line-height: 1.65; }

/* Tags */
.ll-art-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.ll-art-tag {
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.ll-art-tag:hover { border-color: var(--blue); color: var(--blue); }

/* Related */
.ll-related {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.ll-related h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 24px; }
.ll-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ll-rel-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  display: block;
}
.ll-rel-card:hover { border-color: #bdd0f8; box-shadow: var(--shadow); }
.ll-rel-cat   { font-size: 10px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.ll-rel-title { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1.35; margin-bottom: 6px; }
.ll-rel-read  { font-size: 12px; color: var(--dim); }

/* ── SIDEBAR ── */
.ll-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
}
.ll-sidebar-cta {
  background: var(--blue);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 20px;
}
.ll-sidebar-cta h3 { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 8px; }
.ll-sidebar-cta p  { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 16px; line-height: 1.6; }
.ll-btn-sidebar {
  display: block;
  text-align: center;
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: 9px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: opacity var(--transition);
}
.ll-btn-sidebar:hover { opacity: .9; color: var(--blue); }
.ll-btn-sidebar-wa {
  display: block;
  text-align: center;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  border-radius: 9px;
  text-decoration: none;
  transition: background var(--transition);
}
.ll-btn-sidebar-wa:hover { background: rgba(255,255,255,.1); color: #fff; }
.ll-sidebar-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}
.ll-sidebar-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.02em; }
.ll-toc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.ll-toc-item:last-child { border-bottom: none; }
.ll-toc-item:hover { color: var(--blue); }
.ll-toc-num { font-weight: 700; color: var(--dim); min-width: 22px; font-size: 12px; margin-top: 1px; flex-shrink: 0; }
.ll-popular-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}
.ll-popular-item:last-child { border-bottom: none; }
.ll-popular-item:hover { opacity: .75; }
.ll-pop-num   { font-size: 20px; font-weight: 800; color: var(--border2); min-width: 28px; margin-top: 2px; flex-shrink: 0; }
.ll-pop-title { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.4; margin-bottom: 4px; }
.ll-pop-read  { font-size: 11px; color: var(--dim); }

/* ────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ll-mission-grid    { grid-template-columns: 1fr; gap: 48px; }
  .ll-team-grid       { grid-template-columns: 1fr 1fr; }
  .ll-timeline        { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ll-timeline::before{ display: none; }
  .ll-featured-card   { grid-template-columns: 1fr; }
  .ll-fc-visual       { min-height: 280px; }
  .ll-cases-grid      { grid-template-columns: 1fr 1fr; }
  .ll-posts-grid      { grid-template-columns: 1fr 1fr; }
  .ll-fp-card         { grid-template-columns: 1fr; }
  .ll-fp-image        { min-height: 220px; }
  .ll-article-wrap    { grid-template-columns: 1fr; padding: calc(var(--nav-h) + 32px) 48px 60px; }
  .ll-sidebar         { position: static; }
  .ll-related-grid    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ll-sobre-hero,
  .ll-cases-hero,
  .ll-blog-hero { padding: calc(var(--nav-h) + 40px) 0 40px; }
  .ll-values-grid     { grid-template-columns: 1fr; }
  .ll-team-grid       { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ll-timeline        { grid-template-columns: 1fr; }
  .ll-cases-grid      { grid-template-columns: 1fr; }
  .ll-posts-grid      { grid-template-columns: 1fr; }
  .ll-blog-hero-inner { grid-template-columns: 1fr; }
  .ll-search-box      { min-width: auto; }
  .ll-nl-form         { flex-direction: column; }
  .ll-article-wrap    { padding: calc(var(--nav-h) + 24px) 24px 60px; }
  .ll-art-stats       { grid-template-columns: 1fr 1fr; }
  .ll-related-grid    { grid-template-columns: 1fr; }
  .ll-fc-metrics      { gap: 20px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .ll-team-grid  { grid-template-columns: 1fr; }
  .ll-art-stats  { grid-template-columns: 1fr; }
}
