/*
Theme Name:  Leve Leve News
Theme URI:   https://leveleve.st
Description: Tema completo para o portal de notícias Leve Leve News — São Tomé e Príncipe. Inclui homepage, artigos, categorias, página sobre, contacto e agente autónomo de notícias.
Author:      Leve Leve News
Version:     2.0.0
Text Domain: leve-leve-news
Tags:        news, blog, custom-header, custom-menu, featured-images, two-columns, right-sidebar
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --verde:         #085e3a;
  --verde-mid:     #0a7a4d;
  --verde-dark:    #054228;
  --verde-pale:    #e4f2eb;
  --amarelo:       #f0a500;
  --amarelo-deep:  #c8870a;
  --amarelo-pale:  #fff8ec;
  --vermelho:      #b02b1a;
  --vermelho-pale: #fdf0ee;
  --preto:         #1a0f06;
  --terra:         #3d2b1a;
  --areia:         #f9f5ef;
  --creme:         #f0e8d8;
  --branco:        #ffffff;
  --cinza:         #7a6e64;
  --cinza-light:   #b8b0a6;
  --cinza-pale:    #e8e4de;
  --borda:         rgba(26,15,6,0.10);
  --borda-med:     rgba(26,15,6,0.18);
  --r:             6px;
  --r-lg:          10px;
  --sombra:        0 2px 12px rgba(26,15,6,0.07);
  --sombra-lg:     0 6px 32px rgba(26,15,6,0.12);
  --sombra-xl:     0 16px 56px rgba(26,15,6,0.16);
  --max:           1180px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--areia);
  color: var(--preto);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
a { text-decoration: none; color: inherit; transition: color .15s; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: 'DM Sans', sans-serif; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; }

/* ============================================================
   LAYOUT UTILS
   ============================================================ */
.ll-container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.ll-grid-main { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.ll-section { padding: 48px 0; }
.ll-section--sm { padding: 32px 0; }

/* ============================================================
   TOPBAR
   ============================================================ */
#ll-topbar {
  background: var(--verde);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.ll-topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.07em;
  width: 100%;
  box-sizing: border-box;
}
.ll-topbar-left, .ll-topbar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ll-topbar-sep { width: 1px; height: 10px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.ll-live {
  display: flex; align-items: center; gap: 5px;
  color: #7fffc4; font-weight: 600; letter-spacing: 0.1em;
}
.ll-live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #7fffc4;
  animation: ll-blink 1.8s ease-in-out infinite;
}
@keyframes ll-blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

/* ============================================================
   MASTHEAD
   ============================================================ */
#ll-masthead {
  background: var(--preto);
  border-bottom: 3px solid var(--amarelo);
  overflow: hidden;
}
.ll-masthead-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  width: 100%;
}
.ll-logo-wrap { display: flex; align-items: center; gap: 20px; }
.ll-logo {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  text-decoration: none;
  display: block;
}
.ll-logo em { font-style: italic; color: var(--amarelo); }
.ll-logo-sep { width: 1px; height: 38px; background: rgba(255,255,255,0.14); }
.ll-logo-meta { display: flex; flex-direction: column; gap: 3px; }
.ll-logo-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.ll-logo-tagline {
  font-family: 'Source Serif 4', serif;
  font-style: italic; font-size: 12px;
  color: rgba(255,255,255,0.52);
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.ll-masthead-actions { display: flex; align-items: center; gap: 14px; }

/* Search */
.ll-search-wrap { position: relative; }
.ll-search-form {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 28px; padding: 8px 18px;
  transition: border-color .2s, background .2s;
}
.ll-search-form:focus-within {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.11);
}
.ll-search-form input {
  background: none; border: none; outline: none;
  color: #fff; font-size: 12px;
  font-family: 'DM Sans', sans-serif; width: 190px;
}
.ll-search-form input::placeholder { color: rgba(255,255,255,0.28); }
.ll-search-icon { color: rgba(255,255,255,0.36); font-size: 16px; line-height:1; }
#ll-search-dropdown {
  display: none; position: absolute;
  top: calc(100% + 8px); left: 0; right: 0; min-width: 320px;
  background: var(--branco);
  border-radius: var(--r-lg);
  box-shadow: var(--sombra-xl);
  border: 1px solid var(--borda);
  z-index: 9999; overflow: hidden;
}
.ll-sd-item {
  padding: 12px 16px; cursor: pointer;
  border-bottom: 1px solid var(--borda);
  transition: background .12s;
}
.ll-sd-item:hover { background: var(--areia); }
.ll-sd-item:last-child { border-bottom: none; }
.ll-sd-cat {
  font-size: 9px; font-weight: 700;
  color: var(--verde); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 2px;
}
.ll-sd-title {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 700; color: var(--preto);
}
.ll-sd-empty { padding: 14px 16px; font-size: 12px; color: var(--cinza); }

/* Header newsletter button */
.ll-hdr-nl {
  background: var(--amarelo); color: var(--preto);
  font-size: 11px; font-weight: 700;
  padding: 9px 20px; border-radius: 28px;
  letter-spacing: 0.04em; white-space: nowrap;
  transition: background .18s, transform .18s;
}
.ll-hdr-nl:hover { background: var(--amarelo-deep); color: #fff; transform: translateY(-1px); }

/* ============================================================
   PRIMARY NAV
   ============================================================ */
#ll-primary-nav {
  background: var(--preto);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ll-nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 20px;
  display: flex; overflow-x: auto; scrollbar-width: none;
  gap: 0; width: 100%; box-sizing: border-box;
}
.ll-nav-inner::-webkit-scrollbar { display: none; }
.ll-nav-inner a, .ll-nav-inner span {
  display: block; padding: 13px 18px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.46);
  border-bottom: 2px solid transparent;
  white-space: nowrap; cursor: pointer;
  transition: color .15s, border-color .15s;
  text-decoration: none;
}
.ll-nav-inner a:hover, .ll-nav-inner span:hover { color: rgba(255,255,255,0.86); }
.ll-nav-inner a.current-cat,
.ll-nav-inner a.current-menu-item,
.ll-nav-inner .ll-nav-active {
  color: var(--amarelo) !important;
  border-bottom-color: var(--amarelo) !important;
}

/* ============================================================
   BREAKING NEWS TICKER
   ============================================================ */
#ll-ticker {
  background: var(--amarelo);
  height: 36px; overflow: hidden;
  position: relative; display: flex; align-items: center;
}
.ll-ticker-badge {
  position: absolute; left: 0; top: 0; bottom: 0; z-index: 2;
  background: var(--vermelho); color: #fff;
  display: flex; align-items: center;
  padding: 0 16px;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  white-space: nowrap;
}
.ll-ticker-track {
  display: flex; gap: 60px;
  padding-left: 116px; align-items: center;
  white-space: nowrap;
  animation: ll-ticker-run 44s linear infinite;
}
@keyframes ll-ticker-run { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ll-ticker-item {
  font-size: 11px; font-weight: 600; color: var(--preto);
  display: flex; align-items: center; gap: 9px;
}
.ll-ticker-bullet { width: 3px; height: 3px; border-radius: 50%; background: var(--verde); flex-shrink: 0; }

/* ============================================================
   DATE / EDITION STRIP
   ============================================================ */
#ll-date-strip {
  background: var(--creme);
  border-bottom: 1px solid var(--borda);
  overflow: hidden;
}
.ll-date-strip-inner {
  max-width: var(--max); margin: 0 auto; padding: 7px 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: var(--cinza); letter-spacing: 0.05em;
  width: 100%; box-sizing: border-box; flex-wrap: wrap; gap: 4px;
}
.ll-edition-badge { font-weight: 700; color: var(--verde); }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.ll-sec-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.ll-sec-label::before {
  content: ''; display: block;
  width: 4px; height: 20px;
  background: var(--verde); border-radius: 2px; flex-shrink: 0;
}
.ll-sec-label h2, .ll-sec-label span {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--verde); margin: 0;
}
.ll-sec-label::after { content: ''; flex: 1; height: 1px; background: var(--borda); }

/* ============================================================
   HERO — DESTAQUE PRINCIPAL
   ============================================================ */
.ll-hero { margin-bottom: 36px; }
.ll-hero-card {
  display: grid; grid-template-columns: 1.05fr 1fr;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sombra-lg); cursor: pointer;
  transition: box-shadow .25s, transform .25s;
  text-decoration: none;
}
.ll-hero-card:hover { box-shadow: var(--sombra-xl); transform: translateY(-2px); }
.ll-hero-visual {
  min-height: 320px; padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.ll-hv-noise {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg,transparent,transparent 24px,rgba(255,255,255,0.018) 24px,rgba(255,255,255,0.018) 48px);
}
.ll-hv-orb1 {
  position: absolute; width: 300px; height: 300px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.07);
  top: -80px; right: -80px;
}
.ll-hv-orb2 {
  position: absolute; width: 180px; height: 180px;
  border-radius: 50%; background: rgba(240,165,0,0.1);
  bottom: -60px; left: -50px;
}
.ll-hero-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.ll-hero-pill {
  background: var(--amarelo); color: var(--preto);
  font-size: 9px; font-weight: 800;
  padding: 5px 12px; letter-spacing: 0.2em; text-transform: uppercase;
}
.ll-hero-ts { font-size: 10px; color: rgba(255,255,255,0.44); letter-spacing: 0.06em; }
.ll-hv-bottom { position: relative; z-index: 1; }
.ll-hv-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; font-style: italic;
  color: #fff; line-height: 1.28; margin-bottom: 12px;
}
.ll-hv-excerpt {
  font-family: 'Source Serif 4', serif;
  font-size: 13px; color: rgba(255,255,255,0.56);
  line-height: 1.7; font-style: italic;
}
.ll-hero-body {
  background: var(--branco);
  padding: 32px 34px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.ll-hero-body-top {}
.ll-hb-cat {
  font-size: 9px; font-weight: 700; color: var(--verde);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 11px;
}
.ll-hb-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; line-height: 1.32;
  color: var(--preto); margin-bottom: 14px;
}
.ll-hb-excerpt {
  font-family: 'Source Serif 4', serif;
  font-size: 14px; color: var(--cinza); line-height: 1.78;
  margin-bottom: 22px;
}
.ll-hb-divider { height: 1px; background: var(--borda); margin-bottom: 16px; }
.ll-hb-meta { display: flex; align-items: center; justify-content: space-between; font-size: 10px; color: var(--cinza-light); }
.ll-hb-meta-left { display: flex; align-items: center; gap: 14px; }
.ll-author-chip { display: flex; align-items: center; gap: 7px; }
.ll-author-av {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--verde-pale); display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: var(--verde); flex-shrink: 0;
}
.ll-read-more {
  font-size: 11px; font-weight: 700; color: var(--verde);
  display: flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.ll-read-more::after { content: '→'; }
.ll-hero-card:hover .ll-read-more { gap: 8px; }

/* ============================================================
   ARTICLE GRID
   ============================================================ */
.ll-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--borda);
  gap: 1px; margin-bottom: 36px;
}
.ll-grid-card {
  background: var(--branco);
  cursor: pointer; display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: background .15s; overflow: hidden;
}
.ll-grid-card:hover { background: #fbf8f3; }
.ll-gc-cat { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--verde); }
.ll-gc-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700; line-height: 1.38;
  color: var(--preto); flex: 1;
}
.ll-gc-excerpt { font-size: 12px; color: var(--cinza); line-height: 1.62; }
.ll-gc-meta {
  font-size: 10px; color: var(--cinza-light);
  display: flex; align-items: center; gap: 8px;
  padding-top: 11px; border-top: 1px solid var(--borda); margin-top: auto;
}
.ll-gc-source { margin-left: auto; font-style: italic; }

/* ============================================================
   FEATURED STRIP
   ============================================================ */
.ll-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--borda); border-radius: var(--r-lg);
  overflow: hidden; background: var(--borda); gap: 1px;
  margin-bottom: 36px;
}
.ll-strip-card {
  background: var(--branco); padding: 20px 22px;
  display: flex; gap: 16px; cursor: pointer;
  text-decoration: none; color: inherit;
  transition: background .15s;
}
.ll-strip-card:hover { background: #fbf8f3; }
.ll-strip-n {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 900;
  color: var(--creme); line-height: 1; flex-shrink: 0; min-width: 38px;
}
.ll-strip-cat { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--verde); margin-bottom: 6px; }
.ll-strip-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-weight: 700; line-height: 1.38;
  color: var(--preto); margin-bottom: 6px;
}
.ll-strip-meta { font-size: 10px; color: var(--cinza-light); }

/* ============================================================
   CATEGORY BANNER
   ============================================================ */
.ll-cat-banner {
  background: var(--verde);
  border-radius: var(--r-lg); padding: 28px 32px;
  margin-bottom: 36px; display: flex;
  align-items: center; justify-content: space-between; gap: 20px;
}
.ll-cat-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 900; font-style: italic;
  color: #fff;
}
.ll-cat-banner-count { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.ll-article-header {
  background: var(--verde); padding: 48px 0 56px;
  margin-bottom: -28px; position: relative;
}
.ll-article-header::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.06) 100%);
  pointer-events: none;
}
.ll-article-header .ll-container { position: relative; z-index: 1; }
.ll-ah-cat {
  font-size: 9px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amarelo); margin-bottom: 16px;
}
.ll-ah-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 38px); font-weight: 700; font-style: italic;
  color: #fff; line-height: 1.22; margin-bottom: 18px; max-width: 800px;
  text-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.ll-ah-lead {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(15px, 1.6vw, 17px); color: rgba(255,255,255,0.95);
  line-height: 1.75; font-style: italic; max-width: 700px; margin-bottom: 22px;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.ll-ah-meta { display: flex; align-items: center; gap: 20px; font-size: 11px; color: rgba(255,255,255,0.48); flex-wrap: wrap; }
.ll-ah-author { display: flex; align-items: center; gap: 8px; }
.ll-ah-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--verde-pale); display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--verde); flex-shrink: 0;
}
.ll-article-body-wrap {
  background: var(--branco);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 40px 48px; max-width: 820px;
  box-shadow: var(--sombra);
}
.ll-article-body {
  font-family: 'Source Serif 4', serif;
  font-size: 17px; line-height: 1.88; color: var(--preto);
}
.ll-article-body p { margin-bottom: 22px; }
.ll-article-body h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--preto); margin: 36px 0 16px; }
.ll-article-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin: 28px 0 12px; }
.ll-article-body blockquote {
  border-left: 3px solid var(--amarelo);
  padding: 16px 20px; margin: 28px 0;
  background: var(--amarelo-pale);
  font-style: italic; border-radius: 0 var(--r) var(--r) 0;
}
.ll-article-fonte {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--borda);
  font-size: 12px; color: var(--cinza);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.ll-sidebar { display: flex; flex-direction: column; gap: 28px; }

/* Weather */
.ll-weather {
  background: var(--verde); border-radius: var(--r-lg);
  padding: 22px; color: #fff; overflow: hidden; position: relative;
}
.ll-weather::after {
  content: '☀'; position: absolute; top: -10px; right: -10px;
  font-size: 80px; opacity: 0.06; line-height: 1;
}
.ll-w-city { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.66; margin-bottom: 12px; }
.ll-w-main { display: flex; align-items: flex-end; gap: 14px; margin-bottom: 6px; }
.ll-w-temp { font-family: 'Playfair Display', serif; font-size: 54px; font-weight: 900; line-height: 1; }
.ll-w-side {}
.ll-w-icon { font-size: 24px; margin-bottom: 3px; }
.ll-w-cond { font-size: 12px; opacity: 0.78; }
.ll-w-hr { height: 1px; background: rgba(255,255,255,0.14); margin: 14px 0; }
.ll-w-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ll-w-stat { font-size: 11px; opacity: 0.66; }
.ll-w-stat strong { display: block; font-size: 14px; font-weight: 700; opacity: 1; color: #fff; margin-bottom: 1px; }
.ll-w-forecast { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; margin-top: 14px; }
.ll-w-day { background: rgba(255,255,255,0.09); border-radius: 5px; padding: 8px 4px; text-align: center; font-size: 10px; }
.ll-w-dn { opacity: 0.56; margin-bottom: 4px; font-size: 9px; }
.ll-w-dt { font-weight: 700; margin-top: 2px; }

/* Trending */
.ll-sb-box {
  background: var(--branco);
  border: 1px solid var(--borda); border-radius: var(--r-lg);
  overflow: hidden;
}
.ll-sb-box-head {
  padding: 14px 18px; border-bottom: 1px solid var(--borda);
  font-family: 'Playfair Display', serif;
  font-size: 11px; font-weight: 700; color: var(--verde);
  letter-spacing: 0.18em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.ll-sb-box-head::before { content: ''; width: 3px; height: 14px; background: var(--verde); border-radius: 2px; flex-shrink: 0; }
.ll-trend-list { display: flex; flex-direction: column; }
.ll-trend-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 18px; border-bottom: 1px solid var(--borda);
  cursor: pointer; transition: background .15s; text-decoration: none; color: inherit;
}
.ll-trend-row:hover { background: var(--areia); }
.ll-trend-row:last-child { border-bottom: none; }
.ll-trend-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 900;
  color: var(--creme); line-height: 1; min-width: 32px; flex-shrink: 0;
}
.ll-trend-cat { font-size: 9px; font-weight: 700; color: var(--verde); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 3px; }
.ll-trend-title { font-size: 13px; font-weight: 500; line-height: 1.4; color: var(--preto); }

/* Newsletter Sidebar */
.ll-sb-nl {
  background: var(--amarelo); border-radius: var(--r-lg); padding: 22px;
}
.ll-sb-nl-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--preto); margin-bottom: 7px;
}
.ll-sb-nl-sub { font-size: 12px; color: rgba(26,15,6,0.58); line-height: 1.58; margin-bottom: 16px; }
.ll-nl-input {
  width: 100%; padding: 10px 14px; border-radius: 5px;
  border: 1.5px solid rgba(26,15,6,0.18);
  font-size: 12px; font-family: 'DM Sans', sans-serif;
  background: rgba(255,255,255,0.72); outline: none;
  margin-bottom: 8px; display: block; transition: all .18s;
}
.ll-nl-input:focus { border-color: var(--preto); background: #fff; box-shadow: 0 0 0 3px rgba(26,15,6,0.08); }
.ll-nl-btn {
  width: 100%; background: var(--preto); color: #fff;
  font-size: 12px; font-weight: 700; padding: 11px;
  border-radius: 5px; letter-spacing: 0.07em;
  font-family: 'DM Sans', sans-serif; transition: background .18s; cursor: pointer;
}
.ll-nl-btn:hover { background: var(--verde); }

/* About box */
.ll-sb-about { padding: 18px; }
.ll-sb-about-title { font-size: 11px; font-weight: 700; color: var(--verde); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.ll-sb-about-text { font-size: 12px; color: var(--cinza); line-height: 1.72; }
.ll-sb-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.ll-sb-stat { background: var(--areia); border-radius: 5px; padding: 11px 10px; }
.ll-sb-stat-n { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--verde); line-height: 1; }
.ll-sb-stat-l { font-size: 10px; color: var(--cinza); margin-top: 2px; }

/* Tags cloud */
.ll-tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 16px 18px; }
.ll-tag {
  background: var(--areia); color: var(--terra);
  font-size: 11px; font-weight: 500;
  padding: 5px 12px; border-radius: 20px;
  border: 1px solid var(--borda);
  cursor: pointer; transition: all .15s;
  text-decoration: none;
}
.ll-tag:hover { background: var(--verde); color: #fff; border-color: var(--verde); }

/* ============================================================
   OPINION SECTION
   ============================================================ */
.ll-opinion-block {
  background: var(--preto); border-radius: var(--r-lg);
  padding: 28px 32px; margin-bottom: 36px;
}
.ll-opinion-hdr { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.ll-opinion-hdr::before { content: ''; display: block; width: 3px; height: 16px; background: var(--amarelo); border-radius: 2px; }
.ll-opinion-hdr h2 {
  font-family: 'Playfair Display', serif;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amarelo); font-weight: 700; margin: 0;
}
.ll-opinion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ll-opinion-card { cursor: pointer; }
.ll-op-author { display: flex; align-items: center; gap: 11px; margin-bottom: 11px; }
.ll-op-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--verde); display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.ll-op-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); }
.ll-op-role { font-size: 10px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.ll-op-title {
  font-family: 'Source Serif 4', serif;
  font-size: 14px; font-style: italic;
  color: rgba(255,255,255,0.68); line-height: 1.55;
}
.ll-op-title::before { content: '"'; }
.ll-op-title::after { content: '"'; }

/* ============================================================
   LOAD MORE
   ============================================================ */
.ll-load-more-wrap { text-align: center; margin: 32px 0; }
.ll-load-more {
  background: none; border: 1.5px solid var(--verde);
  color: var(--verde); font-size: 12px; font-weight: 700;
  padding: 12px 32px; border-radius: 28px;
  letter-spacing: 0.08em; cursor: pointer;
  transition: all .18s; font-family: 'DM Sans', sans-serif;
}
.ll-load-more:hover { background: var(--verde); color: #fff; }
.ll-load-more.loading { opacity: 0.5; cursor: default; }

/* ============================================================
   FOOTER
   ============================================================ */
#ll-footer {
  background: var(--preto);
  border-top: 3px solid var(--amarelo);
  margin-top: 64px;
}
.ll-footer-main {
  max-width: var(--max); margin: 0 auto;
  padding: 52px 24px 36px;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ll-ft-brand { }
.ll-ft-logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 900; color: #fff;
  letter-spacing: -1px; margin-bottom: 12px; display: block;
}
.ll-ft-logo em { font-style: italic; color: var(--amarelo); }
.ll-ft-mission {
  font-family: 'Source Serif 4', serif;
  font-style: italic; font-size: 13px;
  color: rgba(255,255,255,0.34); line-height: 1.78; margin-bottom: 20px;
}
.ll-ft-social { display: flex; gap: 10px; }
.ll-ft-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: background .18s;
}
.ll-ft-social a:hover { background: var(--amarelo); }
.ll-ft-col-title {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.32); margin-bottom: 16px;
}
.ll-ft-links { display: flex; flex-direction: column; gap: 10px; }
.ll-ft-link {
  font-size: 13px; color: rgba(255,255,255,0.48);
  transition: color .15s; text-decoration: none;
}
.ll-ft-link:hover { color: var(--amarelo); }
.ll-footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 0.06em;
}
.ll-footer-bottom-right { display: flex; gap: 20px; }
.ll-footer-bottom-right a { color: rgba(255,255,255,0.32); text-decoration: none; transition: color .15s; }
.ll-footer-bottom-right a:hover { color: var(--amarelo); }

/* ============================================================
   ARTICLE MODAL
   ============================================================ */
#ll-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(26,15,6,0.82); z-index: 99999;
  justify-content: center; align-items: flex-start;
  padding: 32px 24px; overflow-y: auto;
}
#ll-modal.open { display: flex; }
.ll-modal-box {
  background: var(--branco); border-radius: 10px;
  max-width: 720px; width: 100%; margin: auto;
  overflow: hidden; box-shadow: var(--sombra-xl);
  animation: ll-modal-in .2s ease;
}
@keyframes ll-modal-in { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
.ll-modal-hdr { padding: 28px 32px 24px; position: relative; }
.ll-modal-close {
  position: absolute; top: 18px; right: 20px;
  background: rgba(255,255,255,0.14); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  color: rgba(255,255,255,0.8); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s; line-height: 1;
}
.ll-modal-close:hover { background: rgba(255,255,255,0.28); }
.ll-modal-cat {
  font-size: 9px; font-weight: 800;
  padding: 4px 11px; letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-block; margin-bottom: 13px;
  color: #fff; background: rgba(255,255,255,0.17); border-radius: 2px;
}
.ll-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; font-style: italic;
  color: #fff; line-height: 1.28; margin-bottom: 12px;
}
.ll-modal-meta { font-size: 11px; color: rgba(255,255,255,0.44); display: flex; gap: 16px; flex-wrap: wrap; }
.ll-modal-body { padding: 28px 32px; }
.ll-modal-lead {
  font-family: 'Source Serif 4', serif;
  font-size: 16px; line-height: 1.82; color: var(--terra);
  margin-bottom: 22px; padding-bottom: 22px;
  border-bottom: 1px solid var(--borda);
}
.ll-modal-content {
  font-family: 'Source Serif 4', serif;
  font-size: 15px; line-height: 1.9; color: var(--preto);
}
.ll-modal-content p { margin-bottom: 16px; }
.ll-modal-footer {
  background: var(--areia); padding: 14px 32px;
  border-top: 1px solid var(--borda);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--cinza);
}
.ll-modal-permalink { font-size: 11px; font-weight: 700; color: var(--verde); text-decoration: none; }
.ll-modal-permalink:hover { text-decoration: underline; }

/* ============================================================
   PAGE TEMPLATES — SOBRE / CONTACTO / PRIVACIDADE
   ============================================================ */
.ll-page-hero {
  background: var(--verde); padding: 64px 0;
  margin-bottom: 0;
}
.ll-page-hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.ll-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 900; font-style: italic;
  color: #fff; margin-bottom: 12px;
}
.ll-page-hero p {
  font-family: 'Source Serif 4', serif;
  font-style: italic; font-size: 16px;
  color: rgba(255,255,255,0.6); max-width: 600px; line-height: 1.72;
}
.ll-page-body {
  max-width: var(--max); margin: 0 auto; padding: 52px 24px;
}
.ll-page-content {
  font-family: 'Source Serif 4', serif;
  font-size: 16px; line-height: 1.88; color: var(--preto);
  max-width: 760px;
}
.ll-page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--verde);
  margin: 40px 0 16px;
}
.ll-page-content h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin: 28px 0 12px; }
.ll-page-content p { margin-bottom: 18px; }
.ll-page-content ul { list-style: disc; padding-left: 24px; }
.ll-page-content ul li { margin-bottom: 8px; }
.ll-page-content a { color: var(--verde); text-decoration: underline; }
.ll-page-content strong { font-weight: 700; }

/* Equipa */
.ll-team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; }
.ll-team-card {
  background: var(--branco); border: 1px solid var(--borda);
  border-radius: var(--r-lg); padding: 24px; text-align: center;
}
.ll-team-av {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--verde); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: #fff; margin: 0 auto 12px;
}
.ll-team-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--preto); margin-bottom: 4px; }
.ll-team-role { font-size: 11px; color: var(--cinza); letter-spacing: 0.08em; }

/* Contact form */
.ll-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 36px; }
.ll-form-group { margin-bottom: 18px; }
.ll-form-label { display: block; font-size: 12px; font-weight: 600; color: var(--terra); margin-bottom: 6px; letter-spacing: 0.04em; }
.ll-form-input, .ll-form-textarea, .ll-form-select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--borda-med); border-radius: 5px;
  font-size: 13px; font-family: 'DM Sans', sans-serif;
  color: var(--preto); background: var(--branco); outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.ll-form-input:focus, .ll-form-textarea:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(8,94,58,0.1);
}
.ll-form-textarea { min-height: 120px; resize: vertical; }
.ll-form-btn {
  background: var(--verde); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 13px 32px; border-radius: 28px;
  letter-spacing: 0.07em; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: background .18s, transform .18s; border: none;
}
.ll-form-btn:hover { background: var(--verde-dark); transform: translateY(-1px); }

.ll-contact-info {}
.ll-ci-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.ll-ci-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--verde-pale); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.ll-ci-label { font-size: 11px; font-weight: 700; color: var(--verde); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.ll-ci-val { font-size: 13px; color: var(--terra); }

/* ============================================================
   LOADING & STATES
   ============================================================ */
.ll-loading-state {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 72px 24px; gap: 14px; color: var(--cinza);
}
.ll-spinner {
  width: 36px; height: 36px;
  border: 2.5px solid var(--verde-pale);
  border-top-color: var(--verde);
  border-radius: 50%;
  animation: ll-spin .8s linear infinite;
}
@keyframes ll-spin { to { transform: rotate(360deg); } }
.ll-loading-txt { font-size: 13px; letter-spacing: 0.06em; }
.ll-empty-state { padding: 48px 24px; text-align: center; }
.ll-empty-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--preto); margin-bottom: 8px; }
.ll-empty-sub { font-size: 13px; color: var(--cinza); }

/* ============================================================
   PAGINATION
   ============================================================ */
.ll-pagination { display: flex; justify-content: center; gap: 6px; margin: 36px 0; }
.ll-page-btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: 5px; font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--borda-med); color: var(--cinza);
  transition: all .15s; text-decoration: none;
}
.ll-page-btn:hover, .ll-page-btn.active { background: var(--verde); color: #fff; border-color: var(--verde); }
.ll-page-btn.dots { border: none; cursor: default; }

/* ============================================================
   UTILITY
   ============================================================ */
.ll-badge {
  display: inline-block; font-size: 9px; font-weight: 800;
  padding: 3px 9px; letter-spacing: 0.16em; text-transform: uppercase;
}
.ll-badge-verde { background: var(--verde); color: #fff; }
.ll-badge-amarelo { background: var(--amarelo); color: var(--preto); }
.ll-badge-vermelho { background: var(--vermelho); color: #fff; }
.ll-badge-outline { background: transparent; border: 1.5px solid var(--verde); color: var(--verde); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ================================================================
   TEAM BIO
================================================================ */
.ll-team-bio { font-size: 12px; color: var(--cinza); line-height: 1.65; margin-top: 10px; }

/* ================================================================
   ARTICLE IMAGE
================================================================ */
.ll-post-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  display: block;
}
.ll-gc-img {
  width: 100%; height: 160px; object-fit: cover;
  display: block;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.ll-hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .22; mix-blend-mode: luminosity;
}

/* ================================================================
   RESPONSIVE — Mobile-first, corrigido de raiz
================================================================ */

/* ── 1024px — tablet landscape ─────────────────────────────── */
@media (max-width: 1024px) {
  .ll-grid-main        { grid-template-columns: 1fr; }
  .ll-sidebar          { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .ll-grid             { grid-template-columns: 1fr 1fr; }
  .ll-footer-main      { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ll-sobre-two-col,
  .ll-editorial-two-col,
  .ll-pub-two-col,
  .ll-deon-two-col     { grid-template-columns: 1fr !important; }
  .ll-sticky-sb        { position: static !important; }
}

/* ── 768px — tablet portrait / large phones ─────────────────── */
@media (max-width: 768px) {
  /* Layout */
  .ll-grid-main        { grid-template-columns: 1fr; }
  .ll-sidebar          { grid-template-columns: 1fr; }
  .ll-grid             { grid-template-columns: 1fr; }
  .ll-strip            { grid-template-columns: 1fr; }
  .ll-opinion-grid     { grid-template-columns: 1fr; }
  .ll-footer-main      { grid-template-columns: 1fr; }
  .ll-team-grid        { grid-template-columns: 1fr 1fr; }
  .ll-contact-grid     { grid-template-columns: 1fr !important; }
  .ll-hero-card        { grid-template-columns: 1fr; }
  .ll-hero-visual      { min-height: 200px; }

  /* Header / nav */
  .ll-topbar-right     { display: none; }
  .ll-logo-sep,
  .ll-logo-meta        { display: none; }
  .ll-logo             { font-size: 30px; letter-spacing: -1px; }
  .ll-masthead-inner   { padding: 12px 16px; min-height: 60px; gap: 10px; }
  .ll-masthead-actions { gap: 8px; }
  .ll-search-form      { padding: 6px 10px; }
  .ll-search-form input{ width: 100px; }
  .ll-hdr-nl           { padding: 7px 12px; font-size: 11px; }
  .ll-topbar-inner     { padding: 5px 16px; }
  .ll-nav-inner        { padding: 0 14px; }
  .ll-date-strip-inner { padding: 6px 16px; flex-wrap: wrap; gap: 4px; }
  .ll-ticker-track     { padding-left: 88px; }
  .ll-ticker-badge     { padding: 0 10px; font-size: 8px; }

  /* Inline page grids (sobre, editorial, etc.) */
  .ll-sobre-two-col,
  .ll-editorial-two-col,
  .ll-pub-two-col,
  .ll-deon-two-col     { grid-template-columns: 1fr !important; }
  .ll-sticky-sb        { position: static !important; }

  /* Article */
  .ll-art-title        { font-size: 24px; }
  .ll-art-body-wrap    { padding: 24px 20px; }
  .ll-page-hero h1     { font-size: 26px; }
  .ll-ah-title         { font-size: 24px; }

  /* Strip numbers */
  .ll-sc-n             { font-size: 26px; }
}

/* ── 480px — phones ─────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Kill search on smallest screens */
  .ll-search-form      { display: none; }

  /* Logo */
  .ll-logo             { font-size: 26px; letter-spacing: -.5px; }

  /* Padding */
  .ll-masthead-inner   { padding: 10px 14px; }
  .ll-topbar-inner     { padding: 5px 14px; }
  .ll-nav-inner        { padding: 0 12px; }
  .ll-date-strip-inner { padding: 5px 14px; }
  .ll-container        { padding: 0 14px; }

  /* Grid */
  .ll-team-grid        { grid-template-columns: 1fr; }
  .ll-footer-main      { grid-template-columns: 1fr; }
  .ll-opinion-grid     { grid-template-columns: 1fr; }
  .ll-sobre-two-col,
  .ll-editorial-two-col,
  .ll-pub-two-col,
  .ll-deon-two-col     { grid-template-columns: 1fr !important; }

  /* Hdr button */
  .ll-hdr-nl           { font-size: 10px; padding: 7px 10px; }

  /* Hero */
  .ll-hv-title         { font-size: 18px; }
  .ll-hb-title         { font-size: 17px; }
  .ll-hb-lead          { font-size: 13px; }

  /* Article */
  .ll-art-body-wrap    { padding: 18px 16px; }
  .ll-art-title        { font-size: 22px; }
  .ll-art-lead         { font-size: 14px; }
  .ll-art-body         { font-size: 15px; }

  /* Page hero */
  .ll-page-hero h1     { font-size: 22px; }

  /* Ticker */
  .ll-ticker-track     { padding-left: 80px; }
  .ll-ticker-badge     { font-size: 7px; padding: 0 8px; }

  /* Modal */
  .ll-modal-box        { border-radius: 6px; }
  .ll-modal-hdr        { padding: 18px 18px 14px; }
  .ll-modal-body       { padding: 18px; }
  .ll-modal-title      { font-size: 20px; }

  /* Footer */
  .ll-footer-main      { padding: 32px 16px 24px; }
  .ll-footer-bottom    { padding: 12px 16px; flex-direction: column; gap: 8px; text-align: center; }
  .ll-footer-bottom-right { gap: 12px; }

  /* Search dropdown */
  #ll-search-dropdown  { min-width: 0; width: 100%; left: -80px; }
}

/* ── Pilares da página Sobre — responsivo ───────────────────── */
@media (max-width: 600px) {
  .ll-sobre-pillars { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 340px) {
  .ll-sobre-pillars { grid-template-columns: 1fr !important; }
}


/* ================================================================
   ELEMENTOR — COMPATIBILIDADE
================================================================ */

/* Editor Elementor — garantir que os nossos estilos carregam */
.elementor-editor-active .ll-grid-card,
.elementor-editor-active .ll-hero-card,
.elementor-editor-active .ll-strip-card {
  pointer-events: auto;
}

/* Widgets Elementor dentro do nosso tema */
.elementor-widget-ll-noticias .ll-grid-card,
.elementor-widget-ll-hero .ll-hero-card {
  text-decoration: none;
}

/* Full width template — remover padding do container */
.ll-canvas-page { margin: 0; padding: 0; background: #f9f5ef; }
.ll-canvas-page .elementor-section-stretched {
  left: 0 !important;
  width: 100% !important;
}

/* Elementor Full Width template */
body.page-template-elementor-full main { max-width: 100%; padding: 0; }
body.page-template-elementor-full .elementor-section.elementor-section-stretched {
  left: 0 !important; width: 100% !important;
}

/* Garantir que fontes do tema ficam disponíveis no editor Elementor */
.elementor-widget-heading .elementor-heading-title {
  font-family: 'Playfair Display', serif;
}

/* Override Elementor defaults para manter o look do nosso tema */
.elementor-widget-text-editor p { font-family: 'Source Serif 4', serif; }

/* ================================================================
   ELEMENTOR — SECÇÕES ESTICADAS (STRETCHED)
================================================================ */
.elementor-section.elementor-section-stretched {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

/* ================================================================
   MODO RESPONSIVO DO ELEMENTOR — garantir que o nosso CSS prevalece
================================================================ */
@media (max-width: 1024px) {
  .elementor-column { width: 100% !important; }
}

