:root {
  --blue: #001F6B;
  --blue-mid: #003399;
  --blue-light: #0055cc;
  --red: #D90429;
  --red-dark: #a50320;
  --white: #FFFFFF;
  --gold: #FFD700;
  --gray: #f0f2f5;
  --text-dark: #0a0f2c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── PARTICLES ─── */
#particles-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ─── STICKY NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,31,107,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--red);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: all .3s;
}

nav.scrolled {
  height: 56px;
  background: rgba(0,20,70,0.98);
  box-shadow: 0 4px 30px rgba(217,4,41,0.3);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.nav-badge {
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 0 16px rgba(217,4,41,0.6);
}

.nav-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.1;
}
.nav-name span { color: var(--gold); display: block; font-size: 0.65rem; letter-spacing: 3px; font-weight: 400; }

.nav-links {
  display: flex; gap: 0.2rem; align-items: center;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all .2s;
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  transition: all .2s !important;
  box-shadow: 0 0 15px rgba(217,4,41,0.4);
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  box-shadow: 0 0 25px rgba(217,4,41,0.6) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: #fff; border-radius: 2px;
  transition: all .3s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 68px;
  background: var(--blue);
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* La imagen de fondo */
  background-image: url('../assets/img/hero/hero-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* Cambiado de fixed a scroll para mejor rendimiento en móvil */
  /* Asegura que la imagen cubra todo el área */
  width: 100%;
  height: 100%;
}


/* Capa de color azul semitransparente sobre la imagen */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(0,51,153,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(217,4,41,0.3) 0%, transparent 50%),
    linear-gradient(135deg, rgba(0,13,46,0.8) 0%, rgba(0,31,107,0.7) 40%, rgba(0,43,128,0.7) 70%, rgba(0,16,48,0.9) 100%);
}

.hero-flag-bg {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 60%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 60"><rect width="100" height="30" fill="%23001F6B" opacity="0.4"/><rect y="30" width="100" height="30" fill="%23D90429" opacity="0.4"/></svg>') no-repeat right center / cover;
  opacity: 0.18;
}

/**.hero-crowd-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='3' cy='3' r='1' fill='white' opacity='0.03'/%3E%3C/svg%3E") repeat;
}**/

.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text { padding: 2rem 0; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(217,4,41,0.2);
  border: 1px solid rgba(217,4,41,0.5);
  border-radius: 40px;
  padding: 6px 16px;
  color: rgba(255,255,255,0.9);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  animation: fadeInDown .7s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-tagline {
  font-family: 'Caveat', cursive;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
  animation: fadeInDown .7s .1s ease both;
}

.hero-slogan {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem);
  color: var(--white);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -2px;
  animation: fadeInDown .7s .2s ease both;
}

.hero-slogan .line-red {
  color: var(--red);
  -webkit-text-stroke: 2px var(--red-dark);
  text-shadow: 0 0 30px rgba(217,4,41,0.5);
}

.hero-ribbon {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  margin: 1rem 0;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  animation: fadeInLeft .7s .3s ease both;
}

.hero-checklist {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex; flex-direction: column; gap: 8px;
  animation: fadeInLeft .7s .4s ease both;
}

.hero-checklist li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.9);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.hero-checklist li::before {
  content: '';
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-candidate-name {
  margin: 1.2rem 0 0.3rem;
  animation: fadeInLeft .7s .5s ease both;
}

.hero-candidate-name .firstname {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--gold);
  display: block;
}

.hero-candidate-name .lastname {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 var(--blue), 4px 4px 0 rgba(0,0,0,0.3);
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}

.hero-title-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 20px;
  margin: 0.4rem 0;
  border-left: 4px solid var(--gold);
  animation: fadeInLeft .7s .6s ease both;
}

.hero-vote-num {
  display: flex; align-items: center; gap: 12px;
  margin: 1rem 0;
  animation: fadeInLeft .7s .65s ease both;
}

.hero-vote-num span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vote-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,215,0,0.5);
  border: 3px solid var(--gold);
  padding: 4px 16px;
  border-radius: 6px;
}

.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 1.5rem;
  animation: fadeInUp .7s .7s ease both;
}

.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s;
  position: relative; overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background .25s;
}

.btn:hover::after { background: rgba(255,255,255,0.1); }

.btn-primary {
  background: linear-gradient(135deg, var(--red), #ff1744);
  color: #fff;
  box-shadow: 0 6px 20px rgba(217,4,41,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(217,4,41,0.6); }

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: #fff; transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #e6c200);
  color: var(--blue);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,215,0,0.4); }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
  animation: fadeInUp 1s 1.5s ease both;
}

.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  width: 4px; height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { top: 6px; opacity: 1; }
  80% { top: 18px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}

/* ─── SECTIONS COMMON ─── */
section { position: relative; z-index: 1; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 5px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin: 8px auto 0;
  border-radius: 3px;
}

.section-header p {
  font-size: 1.05rem;
  color: #555;
  margin-top: 0.8rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  background: rgba(217,4,41,0.1);
  border: 1px solid rgba(217,4,41,0.3);
  color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ─── ABOUT ─── */
#about {
  padding: 100px 2rem;
  background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 20px 60px rgba(0,31,107,0.3);
}

.about-img-frame img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.about-flag-stripe {
  position: absolute;
  bottom: -15px; left: -15px; right: -15px;
  height: 12px;
  background: linear-gradient(90deg, var(--blue) 50%, var(--red) 50%);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about-quote {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  padding: 20px 24px;
  border-radius: 10px;
  margin-top: 30px;
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  line-height: 1.4;
  position: relative;
}

.about-quote::before {
  content: '"';
  font-size: 5rem;
  color: var(--red);
  position: absolute;
  top: -10px; left: 10px;
  line-height: 1;
  font-family: 'Barlow Condensed', sans-serif;
}

.about-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 1rem;
}

.about-text h2 .red { color: var(--red); }

.about-text p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 1.5rem;
}

.value-chip {
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--red);
  transition: all .2s;
}
.value-chip:hover { transform: translateY(-3px); background: var(--red); }

/* ─── PRIORITIES ─── */
#priorities {
  padding: 100px 2rem;
  background: linear-gradient(135deg, var(--blue) 0%, #002b80 100%);
  position: relative;
  overflow: hidden;
}

#priorities::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

#priorities .section-header h2 { color: #fff; }
#priorities .section-header p { color: rgba(255,255,255,0.7); }
#priorities .section-tag { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: var(--gold); }

.priorities-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.priority-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.priority-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: transform .3s;
}

.priority-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.1); border-color: rgba(255,215,0,0.3); }
.priority-card:hover::before { transform: scaleX(1); }

.priority-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(217,4,41,0.4);
  transition: transform .3s;
}
.priority-card:hover .priority-icon { transform: scale(1.1) rotate(-5deg); }

.priority-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.priority-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ─── PEOPLES VOICE ─── */
#voice {
  padding: 100px 2rem;
  background: var(--gray);
}

.voice-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,31,107,0.12);
  border-top: 6px solid var(--red);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex; flex-direction: column; gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e4f0;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  transition: border-color .2s;
  outline: none;
  background: #f8f9ff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,51,153,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.file-upload {
  border: 2px dashed #c0c8e0;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  background: #f0f4ff;
}
.file-upload:hover { border-color: var(--blue-light); background: #e8eeff; }
.file-upload p { font-size: 0.9rem; color: #666; margin-top: 8px; }
.file-upload .upload-icon { font-size: 2rem; }

.success-msg {
  display: none;
  background: linear-gradient(135deg, #00b894, #00cec9);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 20px;
}

/* ─── DONATION ─── */
#donation {
  padding: 100px 2rem;
  background: linear-gradient(180deg, #fff 0%, #f0f2ff 100%);
}

.donation-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.donation-progress {
  background: #f0f4ff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid #dce3f5;
}

.progress-labels {
  display: flex; justify-content: space-between; margin-bottom: 10px;
}
.progress-labels span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
}
.progress-labels .amount { color: var(--red); font-size: 1.3rem; }

.progress-bar {
  height: 16px;
  background: #dce3f5;
  border-radius: 8px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 8px;
  width: 0%;
  position: relative;
  transition: width 2s ease;
}

.progress-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.donation-amounts {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 24px;
}

.amount-btn {
  padding: 10px 24px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s;
}
.amount-btn:hover,
.amount-btn.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,31,107,0.3);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.payment-method {
  border: 2px solid #e0e4f0;
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  background: #fff;
}

.payment-method:hover,
.payment-method.active {
  border-color: var(--blue);
  background: #f0f4ff;
  box-shadow: 0 4px 12px rgba(0,31,107,0.15);
}

.payment-method .pm-icon { font-size: 1.8rem; margin-bottom: 4px; }
.payment-method span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; color: var(--blue); letter-spacing: 1px; display: block; }

.trust-badges {
  display: flex; gap: 16px; align-items: center;
  padding: 16px;
  background: #f8f9ff;
  border-radius: 10px;
  margin-top: 20px;
}
.trust-badges span {
  font-size: 0.8rem;
  color: #555;
  font-family: 'Barlow Condensed', sans-serif;
  display: flex; align-items: center; gap: 6px;
}
.trust-badges .icon { font-size: 1rem; }

/* ─── VOLUNTEERS ─── */
#volunteers {
  padding: 100px 2rem;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  position: relative;
  overflow: hidden;
}

#volunteers::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect x='45' y='0' width='10' height='100' fill='rgba(255,255,255,0.03)'/%3E%3Crect x='0' y='45' width='100' height='10' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
}

#volunteers .section-header h2 { color: #fff; }
#volunteers .section-header p { color: rgba(255,255,255,0.8); }
#volunteers .section-tag { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); color: #fff; }

.volunteers-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.skill-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
}

.skill-tag {
  padding: 6px 14px;
  border: 2px solid var(--red);
  border-radius: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--red);
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
}
.skill-tag:hover, .skill-tag.active { background: var(--red); color: #fff; }

/* ─── NEWS ─── */
#news {
  padding: 100px 2rem;
  background: #fff;
}

.news-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all .3s;
  border: 1px solid #eee;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,31,107,0.15); }

.news-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.news-card.featured .news-thumb { height: 260px; }

.news-date {
  position: absolute; top: 12px; left: 12px;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
}

.news-body { padding: 20px; }
.news-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.news-body p { font-size: 0.88rem; color: #666; line-height: 1.5; }
.news-body a {
  color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 10px;
}
.news-body a:hover { gap: 8px; }

/* ─── GALLERY ─── */
#gallery {
  padding: 100px 2rem;
  background: var(--blue);
}
#gallery .section-header h2 { color: #fff; }
#gallery .section-tag { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: var(--gold); }

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  transition: all .3s;
}
.gallery-item:hover { transform: scale(1.02); z-index: 2; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(217,4,41,0.7), rgba(0,31,107,0.7));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  font-size: 2rem;
  color: #fff;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  padding: 100px 2rem;
  background: var(--gray);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-bottom: 4px solid var(--red);
  transition: all .3s;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,31,107,0.12); }

.testimonial-card::before {
  content: '"';
  position: absolute; top: 12px; right: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  color: rgba(0,31,107,0.06);
  line-height: 1;
}

.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonial-role { font-size: 0.8rem; color: var(--red); }

.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 10px; }

/* ─── TRANSPARENCY ─── */
#transparency {
  padding: 100px 2rem;
  background: linear-gradient(135deg, var(--blue) 0%, #002b80 100%);
}
#transparency .section-header h2 { color: #fff; }
#transparency .section-tag { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: var(--gold); }

.transparency-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all .3s;
}
.stat-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.promises-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promise-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
}
.promise-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.promise-status {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.status-planned { background: rgba(255,215,0,0.2); color: var(--gold); }
.status-active { background: rgba(0,184,148,0.2); color: #00b894; }

.promise-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-top: 10px; }
.promise-progress {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), #ffc107);
}
.promise-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* ─── CONTACT ─── */
#contact {
  padding: 100px 2rem;
  background: #fff;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}

.contact-item-text strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--blue); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.contact-item-text span { font-size: 0.9rem; color: #666; }

.social-links {
  display: flex; gap: 12px;
  margin-top: 2rem;
}

.social-link {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: all .2s;
}
.social-link:hover { transform: translateY(-3px) scale(1.05); }
.social-fb { background: #1877f2; }
.social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-tt { background: #000; }
.social-yt { background: #ff0000; }
.social-wa { background: #25d366; }

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark);
  color: #fff;
  padding: 60px 2rem 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue) 50%, var(--red) 50%);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.footer-brand .slogan {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color .2s; }
footer ul a:hover { color: #fff; }

.newsletter-form {
  display: flex; gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--red); }

.newsletter-form button {
  padding: 10px 16px;
  background: var(--red);
  color: #fff;
  border: none; border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--red-dark); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom .vote-badge {
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 6px 14px;
  border-radius: 6px;
}

/* ─── FLOATING ELEMENTS ─── */
.floating-wa {
  position: fixed; bottom: 80px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 900;
  text-decoration: none;
  animation: floatBounce 3s ease-in-out infinite;
  transition: transform .2s;
}
.floating-wa:hover { transform: scale(1.1); }

.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--red);
  color: #fff;
  border: none; border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(217,4,41,0.4);
  z-index: 900;
  opacity: 0;
  transition: all .3s;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.show { opacity: 1; }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-2px); }

@keyframes floatBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── COUNTDOWN ─── */
.countdown-bar {
  background: var(--red);
  padding: 12px 2rem;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}

.countdown-label {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.countdown-units {
  display: flex; gap: 8px;
}

.cunit {
  background: rgba(0,0,0,0.25);
  color: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  text-align: center;
}
.cunit .num {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}
.cunit .lbl {
  font-size: 0.55rem;
  letter-spacing: 1px;
  opacity: 0.7;
  text-transform: uppercase;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(0,20,70,0.99);
    padding: 1rem;
    z-index: 999;
  }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-slogan { font-size: 4rem; }

  .about-grid { grid-template-columns: 1fr; }
  .priorities-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: repeat(3, 1fr); }
  .transparency-grid { grid-template-columns: repeat(2, 1fr); }
  .promises-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .volunteers-wrap, .voice-wrap { padding: 30px 20px; }
  .donation-amounts { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .priorities-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-vote-num { flex-wrap: wrap; }
  .transparency-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── PAYMENT INFO BOX ─── */
.payment-info-box {
  background: #f8faff;
  border: 1px solid #dce3f5;
  border-radius: 12px;
  padding: 20px;
  margin-top: 4px;
  min-height: 120px;
}

.payment-detail {
  display: none;
}

.payment-detail.active {
  display: block;
}

.payment-detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8ecf5;
}

.payment-detail-header svg {
  flex-shrink: 0;
}

.payment-detail-header strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #e0e4f0;
}

.payment-detail-row:last-of-type {
  border-bottom: none;
}

.detail-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: 0.5px;
}

.detail-value {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid #e0e4f0;
}

.payment-instruction {
  font-size: 0.8rem;
  color: #777;
  margin-top: 12px;
  font-style: italic;
  line-height: 1.4;
}

/* Mejora visual para los métodos de pago */
.payment-method {
  cursor: pointer;
}

.payment-method .pm-icon {
  color: var(--blue);
  transition: color 0.2s;
}

.payment-method.active .pm-icon {
  color: var(--red);
}


/* ─── DONATION COMING SOON ─── */
.btn-disabled {
  background: #8899bb !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 0.5 !important;
  pointer-events: none;
}

.btn-disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

.coming-soon-message {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #f0f4ff;
  border: 1px solid #d0d8f0;
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  color: var(--blue);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.coming-soon-message svg {
  flex-shrink: 0;
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1); 
  }
  50% { 
    opacity: 0.6; 
    transform: scale(1.1); 
  }
}


/* ─── DONATION METHOD TABS ─── */
.donation-method-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  background: #f0f4ff;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  border: 1px solid #dce3f5;
  border-bottom: none;
}

.donation-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: #f0f4ff;
  color: #8899bb;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.donation-tab:hover {
  color: var(--blue);
  background: #e4eaf8;
}

.donation-tab.active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 -3px 0 var(--red);
}

.donation-tab svg {
  flex-shrink: 0;
}

/* ─── DONATION PANELS ─── */
.donation-panel {
  display: none;
  background: #fff;
  border: 1px solid #dce3f5;
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.donation-panel.active {
  display: block;
}

/* ─── GOFUNDME CARD ─── */
.gofundme-card {
  background: #fff;
  overflow: hidden;
}

.gfm-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
  border-bottom: 1px solid #e8ecf5;
}

.gfm-logo {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fff, #ffe8e8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(217,4,41,0.15);
  flex-shrink: 0;
}

.gfm-title {
  flex: 1;
}

.gfm-platform {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}

.gfm-title h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--blue);
  margin: 0;
  line-height: 1.1;
}

.gfm-body {
  padding: 28px;
}

.gfm-body > p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.gfm-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.gfm-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f8faff;
  border-radius: 8px;
  border: 1px solid #eef1fa;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.gfm-highlight-item svg {
  flex-shrink: 0;
}

/* BOTÓN GOFUNDME */
.btn-gofundme {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #00b050, #009040);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,176,80,0.3);
  position: relative;
  overflow: hidden;
}

.btn-gofundme::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-gofundme:hover {
  background: linear-gradient(135deg, #009c44, #008036);
  box-shadow: 0 8px 30px rgba(0,176,80,0.45);
  transform: translateY(-2px);
}

.btn-gofundme:hover::before {
  left: 100%;
}

.gfm-note {
  text-align: center;
  font-size: 0.78rem;
  color: #999;
  margin-top: 16px;
  font-style: italic;
}

/* ─── ZELLE CARD ─── */
.zelle-card {
  background: #fff;
  overflow: hidden;
}

.zelle-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f5f0ff 0%, #fff 100%);
  border-bottom: 1px solid #e8ecf5;
}

.zelle-logo {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6c3bd4, #8b5cf6);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zelle-title {
  flex: 1;
}

.zelle-platform {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6c3bd4;
  display: block;
  margin-bottom: 4px;
}

.zelle-title h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--blue);
  margin: 0;
  line-height: 1.1;
}

.zelle-body {
  padding: 28px;
}

.zelle-body > p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.zelle-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.zelle-detail-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f8faff;
  border-radius: 10px;
  border: 1px solid #eef1fa;
}

.zelle-detail-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #eef1fa;
  flex-shrink: 0;
}

.zelle-detail-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.zelle-detail-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8899bb;
}

.zelle-detail-value {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  letter-spacing: 1px;
}

/* BOTÓN COPIAR */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #eef1fa;
  border: 1px solid #dce3f5;
  border-radius: 6px;
  color: var(--blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 6px;
}

.copy-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.copy-btn.copied {
  background: #00b894;
  color: #fff;
  border-color: #00b894;
}

/* PASOS ZELLE */
.zelle-steps {
  background: #f8faff;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
  border: 1px solid #eef1fa;
}

.zelle-steps h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.zelle-step-list {
  list-style: none;
  counter-reset: zelle-steps;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.zelle-step-list li {
  counter-increment: zelle-steps;
  position: relative;
  padding-left: 36px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.zelle-step-list li::before {
  content: counter(zelle-steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
}

.zelle-step-list li strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* BANCOS ZELLE */
.zelle-banks {
  background: #f8faff;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid #eef1fa;
}

.zelle-banks p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8899bb;
  margin-bottom: 10px;
}

.bank-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bank-tag {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #dce3f5;
  border-radius: 20px;
  font-size: 0.78rem;
  color: #555;
  font-weight: 500;
}

/* ─── TRUST BADGES ─── */
.trust-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: #f8f9ff;
  border-radius: 0 0 12px 12px;
  margin-top: 0;
  border: 1px solid #dce3f5;
  border-top: none;
  flex-wrap: wrap;
}

.trust-badges span {
  font-size: 0.8rem;
  color: #555;
  font-family: 'Barlow Condensed', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .gfm-highlights {
    grid-template-columns: 1fr;
  }
  
  .gfm-header,
  .zelle-header {
    padding: 18px;
  }
  
  .gfm-body,
  .zelle-body {
    padding: 18px;
  }
  
  .btn-gofundme {
    font-size: 0.95rem;
    padding: 16px 20px;
  }
  
  .donation-tab {
    font-size: 0.8rem;
    padding: 12px 10px;
    gap: 6px;
  }
  
  .zelle-detail-value {
    font-size: 0.95rem;
  }
  
  .trust-badges {
    gap: 10px;
    padding: 12px;
  }
}