/* =============================================
   PRM 2026 — Minimal Modern Political
   Teal #62c0b8 dominant, Red #d80001 accent
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --red: #d80001;
  --red-soft: rgba(216,0,1,0.07);
  --red-glow: rgba(216,0,1,0.15);
  --teal: #62c0b8;
  --teal-soft: rgba(98,192,184,0.1);
  --teal-glow: rgba(98,192,184,0.15);
  --gold: #ffdd5b;
  --bg: #fefefe;
  --bg-subtle: #f7f7f5;
  --surface: #ffffff;
  --border: rgba(0,0,0,0.07);
  --text: #171717;
  --text-secondary: #6b6b6b;
  --text-muted: #a0a0a0;
  --font: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 14px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER — glass minimal
   ============================================= */
.site-header {
  position: fixed;
  inset: 12px 12px auto;
  z-index: 1000;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 16px;
  height: 60px;
  transition: all 0.4s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 8px;
}
.header-logo img {
  height: 40px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.header-nav > a,
.header-nav > .dropdown > a {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 10px;
  transition: all 0.2s var(--ease);
  letter-spacing: -0.01em;
}
.header-nav > a:hover,
.header-nav > .dropdown:hover > a {
  color: var(--teal);
  background: rgba(98,192,184,0.06);
}
.nav-cta {
  background: var(--red) !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 8px 22px !important;
  border-radius: 10px !important;
  margin-left: 8px !important;
  font-size: 0.82rem !important;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover {
  background: #c00 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--red-glow);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-arrow { font-size: 0.55rem; margin-left: 3px; opacity: 0.4; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  min-width: 200px;
  padding: 6px;
  z-index: 9999;
}
.dropdown:hover > .dropdown-menu { display: block; }
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 0; right: 0;
  height: 6px;
}
.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 450;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.15s;
}
.dropdown-menu li a:hover {
  background: rgba(98,192,184,0.08);
  color: var(--teal);
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 20px; height: 1.5px; background: var(--text); margin: 5px 0; border-radius: 4px; transition: 0.3s; }

/* =============================================
   HERO — modern asymmetric
   ============================================= */
.hero {
  margin-top: 84px;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--teal); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 420px;
  width: 100%;
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.hero-card img {
  width: 85%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.25));
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 80px;
}
.stat-item {
  background: var(--surface);
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--red);
  color: white;
}
.btn-primary:hover {
  background: #c00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}
.btn-secondary {
  background: var(--bg-subtle);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--surface);
  border-color: rgba(0,0,0,0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.btn-ghost {
  background: transparent;
  color: var(--teal);
  border-color: rgba(98,192,184,0.3);
}
.btn-ghost:hover {
  background: var(--teal-soft);
  border-color: var(--teal);
}
.btn-teal {
  background: var(--teal);
  color: white;
}
.btn-teal:hover {
  background: #4fada5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--teal-glow);
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 100px 0; }
.section--subtle { background: var(--bg-subtle); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-top: 12px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.section-link:hover { gap: 8px; }
.section-link::after { content: '\2192'; }

/* =============================================
   PAGE HEADER — red banner
   ============================================= */
.page-header {
  margin-top: 84px;
  padding: 64px 0 48px;
  background: var(--red);
  color: white;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 2;
}
.page-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-top: 12px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* =============================================
   POSITIONS — bento grid
   ============================================= */
.positions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.position-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.35s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.position-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.position-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.position-card:hover::before {
  transform: scaleX(1);
}
.position-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-soft);
  border-radius: 10px;
  color: var(--teal);
  margin-bottom: 18px;
}
.position-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.position-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Position card — large variant for interior page */
.position-card-lg {
  padding: 40px 32px;
}
.position-card-lg .position-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  margin-bottom: 24px;
}
.position-card-lg h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.position-card-lg p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* =============================================
   BANNER — floating card
   ============================================= */
.cta-banner {
  margin: 20px;
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}
.cta-banner .btn { position: relative; z-index: 2; }
.btn-white { background: white; color: var(--red); border: none; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* =============================================
   NEWS CARDS
   ============================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: transparent;
}
.news-card a { color: inherit; }
.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg-subtle);
}
.news-card-body { padding: 22px; }
.news-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  margin-bottom: 10px;
}
.news-tag--red { background: var(--red); }
.news-tag--urgente { background: var(--red); }
.news-tag--teal { background: var(--teal); }
.news-tag--gold { background: #c9a800; }
.news-card-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 6px; }
.news-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 8px;
}
.news-card-excerpt { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.2s;
}
.news-card-link:hover { gap: 8px; }
.news-card-link::after { content: '\2192'; }

/* =============================================
   EVENTS
   ============================================= */
.events-list { display: flex; flex-direction: column; gap: 10px; }
.event-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  align-items: center;
}
.event-card:hover {
  border-color: var(--teal);
  transform: translateX(4px);
}
.event-date-block { min-width: 56px; text-align: center; }
.event-date-block .day {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.event-date-block .month {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.event-info h3 { font-size: 0.98rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.event-info p { font-size: 0.85rem; color: var(--text-secondary); }
.event-meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.events-past .event-card { opacity: 0.7; }
.events-past .event-card:hover { opacity: 1; }

/* =============================================
   QUOTES
   ============================================= */
blockquote, .quote {
  border-left: 3px solid var(--teal);
  padding: 20px 24px;
  background: var(--teal-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.92rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  transition: all 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-actions { margin-top: 24px; }

/* =============================================
   CONTENT PAGE — general prose
   ============================================= */
.content-page h2 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-soft);
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 10px;
}
.content-page p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.content-page ul li {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* =============================================
   CONTACT GRID
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.contact-item {
  margin-bottom: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}
.contact-item:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
  margin-bottom: 6px;
}
.contact-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-item a { color: var(--teal); }
.contact-item a:hover { text-decoration: underline; }

/* =============================================
   AFFILIATE — two column layout
   ============================================= */
.affiliate-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.affiliate-benefits {
  position: sticky;
  top: 100px;
}
.affiliate-benefits h2 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.affiliate-benefits > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg-subtle);
  border-radius: var(--radius);
}
.benefit-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-soft);
  border-radius: 10px;
  color: var(--teal);
  flex-shrink: 0;
}
.benefit-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.affiliate-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.affiliate-form h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--teal-soft);
}

/* =============================================
   FILTER BUTTONS (noticias)
   ============================================= */
.category-filters {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 18px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.filter-btn:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.filter-btn.active {
  background: white;
  color: var(--red);
  border-color: white;
}

/* =============================================
   ACCORDION (programa)
   ============================================= */
.accordion { margin-bottom: 12px; }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  width: 100%;
  text-align: left;
  font-family: var(--font);
}
.accordion-header:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}
.accordion.active .accordion-header {
  border-color: var(--teal);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--teal-soft);
}
.accordion-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.accordion-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--teal);
  color: white;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.accordion-icon {
  width: 20px; height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.accordion.active .accordion-icon {
  transform: rotate(180deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-body-inner {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.accordion-body-inner p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.accordion-body-inner p:last-child { margin-bottom: 0; }
.accordion-body-inner ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.accordion-body-inner ul li {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* Accordion variant — item/trigger/content */
.accordion-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 8px; overflow: hidden; }
.accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; background: var(--surface); border: none; font-family: var(--font); font-size: 1rem; font-weight: 600; cursor: pointer; text-align: left; transition: background 0.2s; }
.accordion-trigger:hover { background: var(--bg-subtle); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 24px; }
.accordion-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px; }
.accordion-content p:last-child { margin-bottom: 0; }
.accordion-content ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.accordion-content ul li { color: var(--text-secondary); line-height: 1.7; margin-bottom: 6px; }
.accordion-item.open .accordion-content { max-height: 2000px; padding: 0 24px 24px; }
.accordion-item.open .accordion-trigger i { transform: rotate(180deg); }
.accordion-item.open .accordion-trigger { background: var(--teal-soft); }

/* =============================================
   ESTATUTOS — sidebar layout
   ============================================= */
.estatutos-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 48px;
  align-items: start;
}
.estatutos-sidebar {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.estatutos-sidebar h3 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 16px;
}
.estatutos-sidebar ul li { margin-bottom: 2px; }
.estatutos-sidebar ul li a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.15s;
}
.estatutos-sidebar ul li a:hover {
  background: var(--teal-soft);
  color: var(--teal);
}
.estatutos-content .doc-section {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}
.estatutos-content .doc-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-soft);
}
.estatutos-content .doc-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.estatutos-content .doc-section ul {
  list-style: none;
  padding: 0;
}
.estatutos-content .doc-section ul li {
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--text-secondary);
  line-height: 1.7;
  border-bottom: 1px solid var(--border);
}
.estatutos-content .doc-section ul li:last-child { border-bottom: none; }
.estatutos-content .doc-section ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 18px;
  width: 8px; height: 8px;
  background: var(--teal-soft);
  border: 2px solid var(--teal);
  border-radius: 50%;
}
.article-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px; height: 28px;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 8px;
}

/* =============================================
   EMPTY STATE
   ============================================= */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}
.empty-state p { font-size: 1rem; }

/* =============================================
   ALERTS
   ============================================= */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.alert-success {
  background: var(--teal-soft);
  color: #1a7a72;
  border: 1px solid var(--teal-glow);
}
.alert-error {
  background: var(--red-soft);
  color: var(--red);
  border: 1px solid var(--red-glow);
}

/* =============================================
   FOOTER — dark minimal
   ============================================= */
.site-footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.5);
  margin-top: 80px;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.footer-col p { font-size: 0.85rem; line-height: 1.7; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--teal);
  color: white;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.05s; }
.reveal-d2 { transition-delay: 0.1s; }
.reveal-d3 { transition-delay: 0.15s; }
.reveal-d4 { transition-delay: 0.2s; }

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
  border-radius: 8px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* =============================================
   DONATE WIDGET
   ============================================= */
.donate-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.donate-opt:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.donate-opt.selected { background: #d80001; border-color: #d80001; color: #fff; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 320px; margin: 0 auto; }
  .positions-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .affiliate-grid { grid-template-columns: 1fr; }
  .affiliate-benefits { position: static; }
  .estatutos-layout { grid-template-columns: 1fr; }
  .estatutos-sidebar { position: static; }
}
@media (max-width: 768px) {
  .site-header { inset: 8px 8px auto; height: 56px; border-radius: 14px; }
  .header-inner { height: 56px; }
  .menu-toggle { display: block; }
  .header-nav {
    display: none;
    position: fixed;
    top: 72px; left: 8px; right: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    flex-direction: column;
    padding: 12px;
    z-index: 9999;
  }
  .header-nav.open { display: flex; }
  .header-nav > a, .header-nav > .dropdown > a { padding: 12px 14px; font-size: 0.9rem; }
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 0 0 14px !important;
    display: none;
  }
  .dropdown.open > .dropdown-menu { display: block !important; }
  .nav-cta { margin: 4px 0 0 !important; display: block !important; text-align: center; }
  .hero { margin-top: 72px; padding: 48px 0 64px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-card { max-width: 260px; }
  .positions-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta-banner { margin: 12px; padding: 48px 24px; border-radius: 18px; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .page-header { margin-top: 72px; padding: 48px 0 36px; }
  .estatutos-sidebar {
    position: static;
    padding: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .estatutos-sidebar ul {
    display: flex;
    gap: 6px;
    white-space: nowrap;
  }
  .estatutos-sidebar ul li { margin-bottom: 0; }
  .estatutos-sidebar ul li a {
    padding: 8px 14px;
    font-size: 0.78rem;
    background: var(--bg-subtle);
  }
  .donate-widget { padding: 32px 20px; }
  .donate-methods { grid-template-columns: 1fr 1fr; }
  .donate-opt-lg { min-width: auto; }
}
