/* ================ VARIABLES Y CONFIGURACIÓN ================ */
:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-soft: #dbeafe;
  --accent: #f59e0b;
  --accent-light: #fcd34d;
  --accent-soft: #fef3c7;
  --success: #10b981;
  --success-soft: #d1fae5;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-tertiary: #64748b;
  --text-inverse: #ffffff;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 10px 25px -5px rgba(37, 99, 235, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.3);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --border-light: #334155;
    --border-medium: #475569;
    --primary-soft: #1e3a8a;
    --accent-soft: #92400e;
    --success-soft: #065f46;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(15, 23, 42, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
  }
}

/* ================ BASE ================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ================ HEADER UNIFICADO (SIN RECUADRO) ================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 20px;
  margin-bottom: 32px;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* LOGO SIN RECUADRO - COMO TE GUSTA */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 36px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(37,99,235,0.3));
}

/* Versión modo oscuro para el logo */
@media (prefers-color-scheme: dark) {
  .logo-img {
    filter: drop-shadow(0 2px 4px rgba(255,255,255,0.15)) brightness(1.1);
  }
  .logo-img:hover {
    filter: drop-shadow(0 4px 8px rgba(245,158,11,0.3)) brightness(1.2);
  }
}

.logo-link {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.header-text {
  text-align: center;
  flex: 1;
}

.claim {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2px;
}

.explicacion {
  color: var(--text-secondary);
  margin: 2px 0;
  font-size: 14px;
  line-height: 1.4;
}

.highlight {
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
}

.stats {
  font-size: 12px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.stats time {
  font-weight: 600;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  padding: 6px 14px;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.nav a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
  border-color: var(--primary-light);
}

.nav a.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary-light);
}

/* ================ CONTENEDOR ================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

/* ================ FILTRO ================ */
.filtro-container,
.filtro-medios {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  margin-bottom: 28px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.filtro-container label,
.filtro-medios label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 14px;
}

.filtro-container select,
.filtro-medios select {
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid var(--border-medium);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.filtro-container select:hover,
.filtro-medios select:hover {
  border-color: var(--primary);
}

/* ================ TARJETAS ================ */
.card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 28px;
  border: 1px solid var(--border-light);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.5s ease-out;
  box-shadow: var(--shadow-sm);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-primary);
  border-color: transparent;
}

.card:hover::before {
  opacity: 1;
}

.card h2 {
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--text-primary);
  line-height: 1.3;
}

.card h2 a {
  color: inherit;
  background: linear-gradient(to right, var(--primary), var(--accent));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.3s;
}

.card h2 a:hover {
  background-size: 100% 2px;
}

.card p {
  color: var(--text-secondary);
  margin: 10px 0;
  font-size: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.card p strong {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 100px;
}

/* ================ RESUMEN IA ================ */
.resumen {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-left: 4px solid var(--primary);
  line-height: 1.6;
}

/* ================ SESGO ================ */
.sesgo-card {
  background: var(--accent-soft);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin: 16px 0;
  border: 1px solid var(--accent-light);
}

.sesgo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.sesgo-texto {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.sesgo-info {
  color: var(--text-tertiary);
  cursor: help;
  font-size: 14px;
  position: relative;
}

.sesgo-info:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.sesgo-barra {
  display: flex;
  height: 24px;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px 0 6px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.barra-progresista {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  height: 100%;
  transition: width 0.3s ease;
}

.barra-conservadora {
  background: linear-gradient(90deg, #f97316, #fb923c);
  height: 100%;
  transition: width 0.3s ease;
}

.sesgo-etiquetas {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.sesgo-nota {
  font-size: 11px;
  color: var(--text-tertiary);
  font-style: italic;
  margin-top: 6px;
}

/* ================ ESPAÑA EN EL MUNDO ================ */
.internacional-header {
  background: linear-gradient(135deg, #1e3a8a20, #0d948820);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 28px;
  border: 1px solid var(--border-light);
}

.internacional-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lista-noticias {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.noticia-item {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.noticia-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.noticia-medio {
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  white-space: nowrap;
  border: 1px solid var(--accent-light);
}

.noticia-titulo {
  flex: 1;
  color: var(--text-primary);
  font-size: 15px;
}

.noticia-titulo a {
  color: inherit;
  text-decoration: none;
}

.noticia-titulo a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.noticia-fecha {
  color: var(--text-tertiary);
  font-size: 0.8rem;
  white-space: nowrap;
}

.sin-noticias {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  color: var(--text-tertiary);
}

/* ================ SOBRE PRISMA ================ */
.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-about {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 2px dashed var(--border-light);
}

.hero-about h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-about p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
}

.about-section {
  margin-bottom: 32px;
}

.about-section h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-section h2::before {
  content: '◆';
  color: var(--accent);
  font-size: 1.6rem;
  opacity: 0.7;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-highlight {
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  margin: 28px 0;
  border-left: 4px solid var(--primary);
  font-style: italic;
}

.contacto-box {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--border-light);
  margin: 32px 0 16px;
}

.contacto-box a {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 10px 28px;
  border-radius: 40px;
  background: var(--bg-primary);
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.contacto-box a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.firma {
  text-align: center;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 2px dashed var(--border-light);
  font-size: 1.1rem;
  color: var(--text-tertiary);
  font-style: italic;
}

/* ================ CALL TO ACTION ================ */
.cta-section {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  border-radius: var(--radius-xl);
  margin: 40px 0;
  border: 1px solid var(--border-light);
}

.cta-section h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-btn {
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 14px;
}

.cta-btn.primary {
  background: var(--primary);
  color: white;
}

.cta-btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.cta-btn.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-btn.secondary:hover {
  background: var(--primary);
  color: white;
}

.cta-btn.github {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.cta-btn.github:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ================ BOTONES FLOTANTES ================ */
.compartir-flotante {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1000;
}

.share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--text-primary);
}

.share-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
  color: white;
}

.share-btn.twitter:hover { background: #1DA1F2; }
.share-btn.facebook:hover { background: #4267B2; }
.share-btn.whatsapp:hover { background: #25D366; }
.share-btn.telegram:hover { background: #0088cc; }
.share-btn.copy:hover { background: var(--primary); }

/* ================ ANIMACIONES ================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 15px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ================ VER MÁS - VERSIÓN MEJORADA ================ */
.ver-mas {
    margin-top: 16px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    transition: var(--transition);
}

.ver-mas:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.ver-mas summary {
    padding: 14px 20px;
    cursor: pointer;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    list-style: none;
    position: relative;
    background: linear-gradient(to right, var(--primary-soft), transparent);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.ver-mas summary:hover {
    background: linear-gradient(to right, var(--primary-light), var(--primary-soft));
    color: white;
}

.ver-mas summary::before {
    content: "🔍";
    margin-right: 10px;
    font-size: 14px;
}

.ver-mas summary::after {
    content: "▼";
    font-size: 12px;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
    color: var(--primary);
    font-weight: bold;
}

.ver-mas[open] summary::after {
    transform: rotate(180deg);
}

.ver-mas[open] summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: var(--primary);
    color: white;
}

.ver-mas[open] summary::after {
    color: white;
}

.ver-mas .noticias-extra {
    padding: 16px 20px 10px 20px;
    border-top: 2px dashed var(--primary-light);
    background: var(--bg-primary);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Versión móvil */
@media (max-width: 768px) {
    .ver-mas summary {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .ver-mas .noticias-extra {
        padding: 12px 16px 8px 16px;
    }
    
    .ver-mas summary::before {
        content: "🔍";
        margin-right: 8px;
    }
}
/* ================ MEJORAS MODO VIGILANTE MÓVIL ================ */
@media (max-width: 768px) {
  .vigilante-header {
    padding: 20px 16px;
  }
  
  .vigilante-header h2 {
    font-size: 1.6rem;
    flex-wrap: wrap;
  }
  
  .search-box {
    padding: 16px;
  }
  
  .search-form {
    flex-direction: column;
  }
  
  .search-form input {
    width: 100%;
    min-width: auto;
    padding: 10px 16px;
  }
  
  .search-form button {
    width: 100%;
    padding: 10px;
  }
  
  .stats-vigilante {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  
  #resultados-container .card {
    padding: 16px;
  }
  
  #resultados-container .card h2 {
    font-size: 18px;
  }
}

/* ================ RESPONSIVE MEJORADO ================ */
@media (max-width: 768px) {
  .header {
    padding: 8px 12px;
    margin-bottom: 16px;
  }
  
  .header-content {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .logo {
    justify-content: center;
  }
  
  .logo-img {
    height: 28px;
  }
  
  .logo-link {
    font-size: 22px;
  }
  
  .header-text {
    text-align: center;
    width: 100%;
  }
  
  .claim {
    font-size: 11px;
  }
  
  .explicacion {
    font-size: 12px;
    line-height: 1.3;
    padding: 0 5px;
  }
  
  .explicacion br {
    display: none; /* Elimina el salto de línea en móvil */
  }
  
  .highlight {
    font-size: 11px;
    padding: 2px 8px;
    display: inline-block;
    margin-top: 4px;
  }
  
  .stats {
    font-size: 10px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
  }
  
  .nav {
    width: 100%;
    justify-content: center;
    gap: 4px;
    margin-top: 4px;
  }
  
  .nav a {
    padding: 5px 10px;
    font-size: 11px;
    white-space: nowrap;
  }
  
  /* Buscador rápido */
  .buscador-rapido {
    padding: 16px;
  }
  
  .buscador-rapido form {
    flex-direction: column;
    gap: 8px;
  }
  
  .buscador-rapido input {
    width: 100%;
    min-width: auto;
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .buscador-rapido button {
    width: 100%;
    padding: 10px;
  }
  
  /* Tarjetas */
  .card {
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .card h2 {
    font-size: 18px;
    margin-bottom: 12px;
    padding-right: 10px;
  }
  
  .card p {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin: 8px 0;
    font-size: 13px;
    word-break: break-word;
  }
  
  .card p strong {
    min-width: auto;
    font-size: 11px;
    background: var(--accent-soft);
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 2px;
  }
  
  .card p a {
    word-break: break-word;
    line-height: 1.4;
  }
  
  /* Resumen IA */
  .resumen {
    padding: 12px 14px;
    font-size: 13px;
    margin: 12px 0;
  }
  
  /* Barra de sesgo */
  .sesgo-simple {
    padding: 12px;
    margin: 12px 0;
  }
  
  .sesgo-header {
    flex-wrap: wrap;
  }
  
  .sesgo-texto {
    font-size: 13px;
  }
  
  .sesgo-barra {
    height: 20px;
  }
  
  .sesgo-etiquetas {
    font-size: 11px;
  }
  
  /* Filtro */
  .filtro-container,
  .filtro-medios {
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .filtro-container select,
  .filtro-medios select {
    width: 100%;
    padding: 8px 12px;
  }
  
  /* Internacional */
  .internacional-header {
    padding: 16px;
  }
  
  .internacional-header h2 {
    font-size: 1.4rem;
    gap: 6px;
  }
  
  .noticia-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px;
  }
  
  .noticia-medio {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
  
  .noticia-titulo {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .noticia-fecha {
    align-self: flex-end;
    font-size: 0.7rem;
  }
  
  /* Sobre */
  .about-card {
    padding: 24px 16px;
  }
  
  .hero-about h1 {
    font-size: 1.8rem;
  }
  
  .hero-about p {
    font-size: 1rem;
  }
  
  .about-section h2 {
    font-size: 1.5rem;
  }
  
  .about-section h2::before {
    font-size: 1.3rem;
  }
  
  .about-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .about-highlight {
    padding: 16px 20px;
  }
  
  .contacto-box {
    padding: 20px;
  }
  
  .contacto-box a {
    font-size: 1.1rem;
    padding: 10px 20px;
    width: 100%;
  }
  
  /* CTA */
  .cta-section {
    padding: 24px 16px;
  }
  
  .cta-section h3 {
    font-size: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 13px;
  }
  
  /* Botones flotantes */
  .compartir-flotante {
    bottom: 10px;
    right: 10px;
    gap: 4px;
  }
  
  .share-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 6px 8px;
  }
  
  .logo-img {
    height: 24px;
  }
  
  .logo-link {
    font-size: 20px;
  }
  
  .claim {
    font-size: 10px;
  }
  
  .explicacion {
    font-size: 11px;
  }
  
  .stats {
    font-size: 9px;
  }
  
  .nav a {
    padding: 4px 8px;
    font-size: 10px;
  }
  
  .card {
    padding: 14px;
  }
  
  .card h2 {
    font-size: 16px;
  }
  
  .card p {
    font-size: 12px;
  }
  
  .resumen {
    padding: 10px 12px;
    font-size: 12px;
  }
  
  .sesgo-texto {
    font-size: 12px;
  }
  
  .sesgo-barra {
    height: 18px;
  }
  
  .sesgo-etiquetas {
    font-size: 10px;
  }
  
  .internacional-header h2 {
    font-size: 1.3rem;
  }
  
  .noticia-titulo {
    font-size: 12px;
  }
  
  .hero-about h1 {
    font-size: 1.6rem;
  }
  
  .hero-about p {
    font-size: 0.9rem;
  }
  
  .about-section h2 {
    font-size: 1.3rem;
  }
  
  .firma {
    font-size: 0.9rem;
  }
}
/* ================ ENFOQUES MINI ================ */
.enfoques-mini {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.enfoques-mini h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.enfoques-mini h3::before {
    content: "📊";
    font-size: 18px;
}

.enfoques-barras {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enfoque-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.enfoque-label {
    min-width: 90px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.barra-container {
    flex: 1;
    height: 24px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    overflow: hidden;
    min-width: 150px;
}

.barra {
    height: 100%;
    transition: width 0.3s ease;
}

.barra-progresista {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.barra-conservadora {
    background: linear-gradient(90deg, #f97316, #fb923c);
}

.barra-neutra {
    background: linear-gradient(90deg, #94a3b8, #cbd5e1);
}

.enfoque-numero {
    min-width: 30px;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
}

@media (max-width: 768px) {
    .enfoques-mini {
        padding: 16px;
    }
    
    .enfoque-item {
        flex-wrap: wrap;
    }
    
    .enfoque-label {
        min-width: 80px;
        font-size: 13px;
    }
    
    .barra-container {
        min-width: 120px;
        height: 20px;
    }
    
    .enfoque-numero {
        font-size: 13px;
    }
}
