:root {
      --rojo: #e8452a;
      --negro: #111110;
      --blanco: #ffffff;
      --gris-claro: #f4f3f1;
      --gris: #6b6b68;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Barlow', sans-serif; background: var(--blanco); color: var(--negro); overflow-x: hidden; min-height: 100vh; display: flex; flex-direction: column; }
    main { flex: 1; }

    nav {
      position: fixed; top: 0; width: 100%; z-index: 200;
      display: flex; justify-content: space-between; align-items: center;
      padding: 0 3rem; height: 60px; background: var(--negro);
    }
    .nav-logo img { height: 36px; width: auto; display: block; }
    .nav-links { display: flex; gap: 0; list-style: none; }
    .nav-links a {
      text-decoration: none; color: rgba(255,255,255,0.55);
      font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
      font-weight: 500; padding: 0 1.4rem; height: 60px;
      display: flex; align-items: center;
      border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
    }
    .nav-links a:hover { color: var(--blanco); border-color: var(--rojo); }
    .nav-fb {
      display: flex; align-items: center; gap: 0.5rem;
      text-decoration: none; background: var(--rojo); color: white;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 0.55rem 1.2rem; transition: background 0.2s;
    }
    .nav-fb:hover { background: #c93520; }

    .nav-burger {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      width: 32px; height: 32px; background: none; border: none; cursor: pointer;
      z-index: 210;
    }
    .nav-burger span {
      display: block; width: 100%; height: 2px; background: white;
      transition: transform 0.25s, opacity 0.25s;
    }
    .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-links-mobile {
      display: none; position: fixed; top: 60px; left: 0; width: 100%;
      background: var(--negro); flex-direction: column; list-style: none;
      max-height: 0; overflow: hidden; transition: max-height 0.3s ease; z-index: 199;
    }
    .nav-links-mobile.open { display: flex; max-height: 400px; }
    .nav-links-mobile li { border-top: 1px solid rgba(255,255,255,0.08); }
    .nav-links-mobile a {
      display: block; padding: 1rem 1.5rem; text-decoration: none;
      color: rgba(255,255,255,0.75); font-size: 0.85rem; letter-spacing: 0.1em;
      text-transform: uppercase; font-weight: 500;
    }
    .nav-links-mobile a:active, .nav-links-mobile a:hover { color: var(--rojo); }

    .hero {
      margin-top: 60px; position: relative; width: 100%;
      aspect-ratio: 1942/809; overflow: hidden; max-height: 520px;
    }
    .hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(17,17,16,0.5) 0%, transparent 60%);
    }
    .hero-badge {
      position: absolute; bottom: 2rem; left: 3rem;
      background: var(--rojo); color: white;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em;
      text-transform: uppercase; padding: 0.4rem 1rem;
    }

    .manifiesto { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .manifiesto-sidebar {
      background: var(--negro); padding: 4rem 3rem;
      display: flex; flex-direction: column; justify-content: center; gap: 2rem;
    }
    .manifiesto-sidebar img { width: 140px; height: auto; }
    .manifiesto-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rojo); font-weight: 700; }
    .manifiesto-tagline { font-family: 'Lora', serif; font-size: 1.5rem; color: var(--blanco); line-height: 1.4; font-style: italic; }
    .manifiesto-content { padding: 4rem; background: var(--gris-claro); }
    .manifiesto-pretitle { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rojo); font-weight: 700; margin-bottom: 1.5rem; }
    .manifiesto-title { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 800; text-transform: uppercase; color: var(--negro); line-height: 1; margin-bottom: 2rem; }
    .manifiesto-title span { color: var(--rojo); }
    .manifiesto-text { font-size: 1rem; line-height: 1.85; color: #444442; font-weight: 300; max-width: 580px; }
    .manifiesto-text p + p { margin-top: 1.1rem; }
    .manifiesto-text strong { color: var(--negro); font-weight: 500; }
    .manifiesto-details { margin-top: 1.1rem; }
    .manifiesto-details summary {
      cursor: pointer; list-style: none; color: var(--rojo); font-weight: 500;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; letter-spacing: 0.08em;
      text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.4rem;
    }
    .manifiesto-details summary::-webkit-details-marker { display: none; }
    .manifiesto-details summary::after { content: '+'; font-size: 1.1rem; line-height: 1; transition: transform 0.2s; }
    .manifiesto-details[open] summary::after { transform: rotate(45deg); }
    .manifiesto-details[open] summary { margin-bottom: 1.1rem; }
    .manifiesto-details-content p + p { margin-top: 1.1rem; }
    .manifiesto-subhead { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--negro); margin-top: 1.75rem; margin-bottom: 0.85rem; }
    .manifiesto-details-content .manifiesto-subhead:first-child { margin-top: 0; }
    .manifiesto-list { list-style: none; margin-top: 0.6rem; }
    .manifiesto-list li { display: flex; flex-direction: column; gap: 0.2rem; }
    .manifiesto-list li + li { margin-top: 0.9rem; }
    .manifiesto-list .item-title { font-weight: 500; color: var(--negro); }
    .manifiesto-list .item-desc { color: #444442; }
    .manifiesto-list.no-publicamos li { flex-direction: row; }
    .manifiesto-list.no-publicamos li + li { margin-top: 0.6rem; }

    .section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rojo); font-weight: 700; display: block; margin-bottom: 0.75rem; }

    .quejas { padding: 5rem 3rem 6rem; background: var(--gris-claro); max-width: 1000px; margin: 0 auto; }
    .quejas-header { text-align: center; margin-bottom: 1rem; }
    .quejas-header h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 800; text-transform: uppercase; color: var(--negro); }
    .quejas-header p { max-width: 560px; margin: 1rem auto 0; color: var(--gris); font-size: 0.95rem; line-height: 1.7; font-weight: 300; }
    .quejas-feed { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 2.75rem; }
    .quejas-empty { text-align: center; color: var(--gris); font-size: 0.9rem; margin-top: 3.5rem; font-weight: 300; }

    .queja { background: #faf7f1; display: grid; grid-template-columns: 220px 1fr; gap: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.08); position: relative; opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .queja.visible { opacity: 1; transform: translateY(0); }
    .queja:nth-child(even) { grid-template-columns: 1fr 220px; }
    .queja:nth-child(even) .queja-media { order: 2; }
    .queja:nth-child(odd) { transform: rotate(-0.4deg); }
    .queja:nth-child(even) { transform: rotate(0.4deg); }
    .queja.visible:nth-child(odd) { transform: rotate(-0.4deg) translateY(0); }
    .queja.visible:nth-child(even) { transform: rotate(0.4deg) translateY(0); }

    .queja-media { position: relative; overflow: hidden; background: repeating-linear-gradient(135deg, rgba(232,69,42,0.9) 0 14px, rgba(17,17,16,0.92) 14px 28px); display: flex; align-items: center; justify-content: center; min-height: 190px; }
    .queja-media img { width: 100%; height: 100%; object-fit: cover; }
    .queja-media .icono { font-size: 3.4rem; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.4)); }
    .queja-media .caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.85); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.45rem 0.75rem; font-family: 'Barlow Condensed', sans-serif; }

    .queja-body { padding: 2rem 2.25rem; position: relative; }
    .queja-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
    .queja-zona { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rojo); }
    .queja-fecha { font-size: 0.72rem; color: var(--gris); }
    .queja-fecha::before { content: '·'; margin-right: 0.75rem; color: var(--gris); }
    .queja h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.6rem; line-height: 1.15; }
    .queja p.relato { font-family: 'Lora', serif; font-style: italic; font-size: 0.95rem; line-height: 1.7; color: #33322f; max-width: 480px; }
    .queja p.relato::before { content: '\201C'; }
    .queja p.relato::after { content: '\201D'; }
    .queja-firma { margin-top: 0.9rem; font-size: 0.78rem; color: var(--gris); font-weight: 500; }

    .sello { position: absolute; top: 1.4rem; right: 1.6rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; border: 2px solid; border-radius: 4px; padding: 0.3rem 0.6rem; transform: rotate(6deg); opacity: 0.85; }
    .sello.revision { color: #b8860b; border-color: #b8860b; }
    .sello.respondida { color: #2e7d32; border-color: #2e7d32; }
    .sello.sinrespuesta { color: var(--rojo); border-color: var(--rojo); }

    .quejas-cta { margin-top: 3.5rem; text-align: center; padding: 2.5rem; background: var(--negro); }
    .quejas-cta p { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 460px; margin: 0 auto 1.25rem; line-height: 1.7; font-weight: 300; }
    .quejas-cta a { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--rojo); color: white; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2.2rem; }

    @media (max-width: 640px) {
      .quejas { padding: 3rem 1.5rem 4rem; }
      .queja, .queja:nth-child(even) { grid-template-columns: 1fr; transform: none; }
      .queja.visible, .queja.visible:nth-child(odd), .queja.visible:nth-child(even) { transform: none; }
      .queja:nth-child(even) .queja-media { order: 0; }
      .sello { position: static; display: inline-block; margin-bottom: 0.75rem; transform: rotate(-2deg); }
    }

    .historia { padding: 5rem 3rem; background: var(--gris-claro); }
    .historia-header { text-align: center; margin-bottom: 3rem; }
    .historia-header h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 800; text-transform: uppercase; color: var(--negro); }
    .historia-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
    .historia-item { border-bottom: 1px solid rgba(0,0,0,0.08); padding-bottom: 0.75rem; }
    .historia-item summary {
      display: grid; grid-template-columns: 110px 1fr auto; gap: 1.5rem; align-items: center;
      cursor: pointer; list-style: none; padding: 0.75rem 0;
    }
    .historia-item summary::-webkit-details-marker { display: none; }
    .historia-item summary::after { content: '+'; font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; color: var(--rojo); transition: transform 0.2s; }
    .historia-item[open] summary::after { transform: rotate(45deg); }
    .historia-year { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--rojo); text-align: right; }
    .historia-item summary h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--negro); }
    .historia-text { padding: 0 0 0.5rem 110px; }
    .historia-text p { font-size: 0.9rem; color: var(--gris); line-height: 1.7; font-weight: 300; }
    @media (max-width: 600px) {
      .historia-item summary { grid-template-columns: 70px 1fr auto; }
      .historia-text { padding-left: 70px; }
    }
    .historia-note { max-width: 900px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.08); font-size: 0.85rem; color: var(--gris); line-height: 1.8; font-weight: 300; }
    .historia-note strong { color: var(--negro); font-weight: 500; }

    .cta { background: var(--negro); padding: 5rem 3rem; text-align: center; }
    .cta-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rojo); font-weight: 700; display: block; margin-bottom: 1rem; }
    .cta h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; text-transform: uppercase; color: var(--blanco); line-height: 1.1; margin-bottom: 1.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
    .cta p { color: rgba(255,255,255,0.45); font-size: 0.95rem; font-weight: 300; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }
    .cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
    .cta-btn { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--rojo); color: white; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 1rem 2.5rem; transition: background 0.2s, transform 0.2s; }
    .cta-btn:hover { background: #c93520; transform: translateY(-2px); }
    .cta-btn svg { width: 20px; height: 20px; fill: white; }
    .cta-btn-outline { display: inline-flex; align-items: center; gap: 0.75rem; background: transparent; color: white; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 1rem 2.5rem; border: 1px solid rgba(255,255,255,0.3); transition: border-color 0.2s, background 0.2s; }
    .cta-btn-outline:hover { border-color: white; background: rgba(255,255,255,0.05); }

    .participa { padding: 5rem 3rem; background: var(--gris-claro); }
    .participa-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .participa h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 800; text-transform: uppercase; color: var(--negro); line-height: 1.1; margin-bottom: 1.5rem; }
    .participa h2 span { color: var(--rojo); }
    .participa p { font-size: 0.95rem; color: var(--gris); line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
    .participa-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
    .participa-item { display: flex; gap: 1rem; align-items: flex-start; opacity: 0; transform: translateX(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .participa-item.visible { opacity: 1; transform: translateX(0); }
    .participa-num { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--rojo); line-height: 1; flex-shrink: 0; width: 36px; }
    .participa-text h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
    .participa-text p { font-size: 0.85rem; margin-bottom: 0; }

    footer { background: var(--negro); padding: 2.5rem 3rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.06); }
    footer img { height: 40px; width: auto; opacity: 0.8; }
    footer p { font-size: 0.75rem; color: rgba(255,255,255,0.25); text-align: right; }
    footer a { color: var(--rojo); text-decoration: none; }

    @media (max-width: 900px) {
      .manifiesto { grid-template-columns: 1fr; }
      .manifiesto-sidebar { padding: 2.5rem 2rem; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
      .manifiesto-content { padding: 2.5rem 2rem; }
      .participa-inner { grid-template-columns: 1fr; gap: 2rem; }
      nav { padding: 0 1.5rem; }
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .nav-fb { display: none; }
      .cta { padding: 3rem 1.5rem; }
      .participa { padding: 3rem 1.5rem; }
    }
    @media (max-width: 600px) {
      .hero { aspect-ratio: 1942/809; max-height: 300px; }
      .hero-badge { left: 1.5rem; bottom: 1.5rem; }
      footer { flex-direction: column; gap: 1rem; }
      footer p { text-align: center; }
      }
/* Imágenes dentro del contenido del post (las que subes en el editor Markdown) */
article img,
.blog-lista img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
  display: block;
}

/* Imagen en las tarjetas del listado /blog/ */
.blog-item-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}
