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

:root {
  --rojo: #C0392B;
  --rojo-dark: #922B21;
  --rojo-light: #E74C3C;
  --blanco: #FFFFFF;
  --gris-claro: #F5F5F5;
  --gris: #9E9E9E;
  --gris-dark: #424242;
  --negro: #1A1A1A;
  --sombra: 0 4px 24px rgba(0,0,0,0.10);
  --sombra-card: 0 8px 32px rgba(192,57,43,0.10);
  --radio: 16px;
  --transicion: all 0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--negro);
  background: var(--blanco);
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: var(--transicion);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { width: 40px; height: 40px; background: var(--rojo); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.nav-logo-icon svg { width: 24px; height: 24px; fill: white; }
.nav-logo-text { font-size: 1.44rem; font-weight: 800; color: var(--rojo); letter-spacing: -0.5px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gris-dark); font-weight: 500; font-size: 0.9rem; transition: var(--transicion); }
.nav-links a:hover { color: var(--rojo); }
.nav-btn { background: var(--rojo); color: white !important; padding: 10px 22px; border-radius: 50px; font-weight: 600 !important; transition: var(--transicion) !important; }
.nav-btn:hover { background: var(--rojo-dark) !important; color: white !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,57,43,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--negro); border-radius: 2px; transition: var(--transicion); }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a0a09 0%, #2d0c0b 50%, #1a0a09 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1600&q=80');
  background-size: cover; background-position: center;
  opacity: 0.35;
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.7) 0%, rgba(26,10,9,0.85) 60%, rgba(26,10,9,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 5%;
  max-width: 800px;
  animation: fadeUp 1s ease both;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); color: white;
  padding: 6px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700;
  color: white; line-height: 1.15; margin-bottom: 1.2rem; letter-spacing: -1px;
}
.hero-title span { color: #FF6B6B; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--rojo); color: white; padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: var(--transicion);
  box-shadow: 0 4px 24px rgba(192,57,43,0.4);
}
.btn-primary:hover { background: var(--rojo-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(192,57,43,0.5); }
.btn-outline {
  background: transparent; color: white; padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5); transition: var(--transicion);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }
.hero-stats {
  position: absolute; bottom: 2.5rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 3rem; z-index: 2;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: white; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); letter-spacing: 1px; text-transform: uppercase; }

/* SECCIONES GENERALES */
section { padding: 90px 5%; }
.section-tag { display: inline-block; background: rgba(192,57,43,0.08); color: var(--rojo); padding: 5px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--negro); line-height: 1.2; margin-bottom: 1rem; }
.section-sub { color: var(--gris); font-size: 1.05rem; max-width: 560px; }
.section-header { margin-bottom: 3.5rem; }
.text-center { text-align: center; }
.section-header.text-center .section-sub { margin: 0 auto; }

/* QUIÉNES SOMOS */
#nosotros { background: var(--blanco); }
.nosotros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.nosotros-img { position: relative; }
.nosotros-img img { width: 100%; border-radius: var(--radio); object-fit: cover; height: 480px; box-shadow: var(--sombra); }
.nosotros-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--rojo); color: white; padding: 1.2rem 1.5rem; border-radius: var(--radio);
  text-align: center; box-shadow: 0 8px 24px rgba(192,57,43,0.35);
}
.nosotros-img-badge .num { font-size: 2rem; font-weight: 800; display: block; }
.nosotros-img-badge .lbl { font-size: 0.75rem; opacity: 0.9; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.value-item { display: flex; align-items: flex-start; gap: 0.8rem; padding: 1rem; background: var(--gris-claro); border-radius: 12px; transition: var(--transicion); }
.value-item:hover { background: rgba(192,57,43,0.06); }
.value-icon { width: 36px; height: 36px; background: var(--rojo); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.value-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--negro); }
.value-text p { font-size: 0.78rem; color: var(--gris); }

/* CASOS DE ÉXITO */
#casos { background: var(--gris-claro); }
.casos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.caso-card {
  background: white; border-radius: var(--radio); overflow: hidden;
  box-shadow: var(--sombra); transition: var(--transicion);
}
.caso-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-card); }
.caso-card img { width: 100%; height: 200px; object-fit: cover; }
.caso-card-body { padding: 1.4rem; }
.caso-tag { display: inline-block; background: rgba(192,57,43,0.1); color: var(--rojo); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 1px; }
.caso-card h3 { font-size: 1rem; font-weight: 700; color: var(--negro); margin-bottom: 0.4rem; }
.caso-card p { font-size: 0.85rem; color: var(--gris); margin-bottom: 0.8rem; line-height: 1.5; }
.caso-resultado { display: flex; align-items: center; gap: 0.5rem; background: rgba(192,57,43,0.06); padding: 0.5rem 0.8rem; border-radius: 8px; }
.caso-resultado span { font-size: 0.78rem; color: var(--rojo); font-weight: 600; }

/* APOYO DEL MES */
#apoyo {
  background: linear-gradient(135deg, #C0392B 0%, #922B21 100%);
  color: white; position: relative; overflow: hidden;
}
#apoyo::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
  background: rgba(255,255,255,0.04); border-radius: 50%;
}
.apoyo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.apoyo-badge { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); color: white; padding: 5px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem; }
.apoyo-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.apoyo-sub { opacity: 0.85; font-size: 1rem; margin-bottom: 1.5rem; }
.apoyo-progress { margin-bottom: 1.5rem; }
.apoyo-progress-label { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.apoyo-bar { background: rgba(255,255,255,0.2); border-radius: 50px; height: 10px; overflow: hidden; }
.apoyo-bar-fill { background: white; height: 100%; border-radius: 50px; width: 68%; transition: width 1.5s ease; }
.apoyo-btn {
  display: inline-block;
  background: white;
  color: var(--rojo);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transicion);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}
.apoyo-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.apoyo-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── Formulario de donación ──────────────────────────────────────── */
.donation-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.donation-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  padding: 4px 6px 4px 18px;
  transition: border-color 0.25s ease, background 0.25s ease;
  max-width: 340px;
}
.donation-input-wrap:focus-within {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.75);
}

.donation-currency {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-right: 4px;
  flex-shrink: 0;
}

.donation-moneda {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-left: 6px;
  flex-shrink: 0;
}

.donation-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: white;
  min-width: 0;
  padding: 8px 0;
}
.donation-input::placeholder { color: rgba(255,255,255,0.45); font-weight: 400; }
.donation-input::-webkit-inner-spin-button,
.donation-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.donation-input[type=number] { -moz-appearance: textfield; }

.donation-input.input-error {
  color: #FFD1CE;
}
.donation-input-wrap:has(.input-error) {
  border-color: rgba(255,160,140,0.8);
}

.donation-error {
  font-size: 0.82rem;
  color: #FFD1CE;
  font-weight: 500;
  margin: 0;
  padding-left: 4px;
  animation: fadeIn 0.2s ease;
}

/* ── Mensaje de resultado Stripe ─────────────────────────────────── */
.stripe-mensaje {
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeIn 0.4s ease;
  max-width: 400px;
}
.stripe-exito {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
}
.stripe-error {
  background: rgba(255,100,80,0.2);
  border: 1.5px solid rgba(255,150,130,0.5);
  color: #FFD1CE;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.apoyo-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.apoyo-imgs img { width: 100%; border-radius: 12px; object-fit: cover; }
.apoyo-imgs img:first-child { height: 280px; grid-column: 1 / -1; }
.apoyo-imgs img:not(:first-child) { height: 150px; }

/* GALERÍA */
#galeria { background: var(--blanco); }
.galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 1rem; }
.galeria-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; }
.galeria-item img, .galeria-item iframe { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.galeria-item:hover img { transform: scale(1.05); }
.galeria-item.large { grid-column: span 2; }
.galeria-item.large img { height: 320px; }
.galeria-overlay { position: absolute; inset: 0; background: rgba(192,57,43,0); display: flex; align-items: center; justify-content: center; transition: var(--transicion); }
.galeria-item:hover .galeria-overlay { background: rgba(192,57,43,0.3); }
.galeria-overlay svg { opacity: 0; fill: white; width: 40px; height: 40px; transition: var(--transicion); }
.galeria-item:hover .galeria-overlay svg { opacity: 1; }
.video-wrapper { position: relative; overflow: hidden; border-radius: 12px; }
.video-wrapper iframe { width: 100%; height: 200px; border: none; border-radius: 12px; }

/* DONACIONES */
#donaciones { background: var(--gris-claro); }
.donaciones-inner { max-width: 900px; margin: 0 auto; }
.donaciones-card {
  background: white; border-radius: 24px; overflow: hidden;
  box-shadow: 0 16px 64px rgba(192,57,43,0.12);
}
.donaciones-header {
  background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-dark) 100%);
  padding: 2.5rem; text-align: center; color: white;
}
.donaciones-header h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 0.5rem; }
.donaciones-header p { opacity: 0.85; }
.donaciones-body { padding: 2.5rem; }
.trust-badges { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; background: rgba(192,57,43,0.06); padding: 8px 16px; border-radius: 50px; }
.trust-badge svg { width: 18px; height: 18px; fill: var(--rojo); }
.trust-badge span { font-size: 0.8rem; font-weight: 600; color: var(--rojo); }
.banco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.banco-item { background: var(--gris-claro); border-radius: 12px; padding: 1.2rem; border-left: 4px solid var(--rojo); }
.banco-item label { font-size: 0.72rem; font-weight: 700; color: var(--gris); text-transform: uppercase; letter-spacing: 1px; }
.banco-item .banco-value { font-size: 1rem; font-weight: 700; color: var(--negro); margin-top: 0.2rem; }
.donaciones-btn {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-dark) 100%);
  color: white; padding: 16px; border-radius: 12px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: var(--transicion); box-shadow: 0 4px 24px rgba(192,57,43,0.3);
}
.donaciones-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(192,57,43,0.45); }
.donaciones-nota { text-align: center; font-size: 0.8rem; color: var(--gris); margin-top: 1rem; }

/* REDES SOCIALES */
#redes { background: var(--negro); padding: 70px 5%; }
.redes-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.redes-inner .section-title { color: white; }
.redes-inner .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto 3rem; }
.redes-grid { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.red-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 2.5rem; border-radius: 20px; text-decoration: none;
  transition: var(--transicion); color: white; min-width: 140px;
}
.red-card:hover { transform: translateY(-6px); border-color: var(--rojo); background: rgba(192,57,43,0.15); }
.red-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.red-icon svg { width: 28px; height: 28px; fill: white; }
.red-fb .red-icon { background: #1877F2; }
.red-ig .red-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.red-tt .red-icon { background: #000000; }
.red-yt .red-icon { background: #FF0000; }
.red-name { font-weight: 700; font-size: 0.9rem; }
.red-handle { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* CONTACTO */
#contacto { background: var(--blanco); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contacto-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--negro); }
.contacto-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contacto-icon { width: 44px; height: 44px; background: rgba(192,57,43,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contacto-icon svg { width: 22px; height: 22px; fill: var(--rojo); }
.contacto-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--negro); margin-bottom: 0.2rem; }
.contacto-item p, .contacto-item a { font-size: 0.9rem; color: var(--gris); text-decoration: none; }
.contacto-item a:hover { color: var(--rojo); }
.mapa { margin-top: 1.5rem; border-radius: 16px; overflow: hidden; height: 220px; }
.mapa iframe { width: 100%; height: 100%; border: none; }
.contacto-form { background: var(--gris-claro); padding: 2rem; border-radius: 20px; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--negro); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid #E0E0E0; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--negro);
  background: white; transition: var(--transicion); outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--rojo); }
.form-group textarea { height: 120px; resize: vertical; }
.form-btn {
  width: 100%; background: var(--rojo); color: white; padding: 14px;
  border: none; border-radius: 10px; font-size: 0.95rem; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer; transition: var(--transicion);
}
.form-btn:hover { background: var(--rojo-dark); transform: translateY(-1px); }

/* FOOTER */
footer { background: #111111; color: white; padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 1rem; max-width: 280px; line-height: 1.7; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; }
.footer-logo-icon { width: 36px; height: 36px; background: var(--rojo); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-logo-icon svg { width: 20px; height: 20px; fill: white; }
.footer-logo-text { font-size: 1.1rem; font-weight: 800; color: white; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: var(--transicion); }
.footer-col ul li a:hover { color: var(--rojo-light); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: var(--transicion); }
.footer-social a:hover { background: var(--rojo); }
.footer-social svg { width: 16px; height: 16px; fill: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.82rem; transition: var(--transicion); }
.footer-bottom a:hover { color: var(--rojo-light); }

/* ANIMACIONES */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .casos-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: white; padding: 1.5rem 5%; box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  
  #hero { flex-direction: column; padding-top: 120px; padding-bottom: 60px; justify-content: center; height: auto; }
  .hero-stats { position: relative; bottom: auto; margin-top: 3rem; gap: 1.5rem; width: 100%; }
  .hero-btns { flex-direction: column; align-items: center; width: 100%; gap: 1rem; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; }

  .nosotros-grid { grid-template-columns: 1fr; }
  .nosotros-img-badge { right: 0; }
  .valores-grid { grid-template-columns: 1fr; }
  .apoyo-grid { grid-template-columns: 1fr; }
  .apoyo-imgs img:first-child { height: 200px; }
  .casos-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-item.large { grid-column: span 2; }
  .banco-grid { grid-template-columns: 1fr; }
  .contacto-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  section { padding: 60px 5%; }
}
@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-item.large { grid-column: span 1; }
  .redes-grid { gap: 1rem; }
  .red-card { min-width: 120px; padding: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
  border-radius: 12px;
  animation: zoomIn 0.4s ease;
}

#lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 15px 0;
  height: 150px;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--rojo-light);
  text-decoration: none;
  cursor: pointer;
}

@keyframes zoomIn {
  from {transform:scale(0.8); opacity: 0;}
  to {transform:scale(1); opacity: 1;}
}

@media only screen and (max-width: 700px){
  .lightbox-content {
    width: 95%;
  }
}

/* FUTURAS CAMPAÑAS (VIDEOS YT) */
#futuras-campanas {
  background: var(--blanco);
  padding: 90px 5%;
}
.campanas-intro {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.campanas-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(192,57,43,0.07);
  border: 1.5px solid rgba(192,57,43,0.18);
  padding: 12px 24px;
  border-radius: 50px;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rojo);
}
.campanas-alert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--rojo);
  animation: pulse 1.5s infinite;
}
.campanas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.video-card {
  background: var(--gris-claro);
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: var(--transicion);
  display: flex;
  flex-direction: column;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-card);
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.video-category {
  display: inline-block;
  align-self: flex-start;
  background: rgba(192,57,43,0.08);
  color: var(--rojo);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.video-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.video-info p {
  font-size: 0.85rem;
  color: var(--gris-dark);
  margin-bottom: 1.2rem;
  line-height: 1.5;
  flex: 1;
}
.btn-vote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rojo);
  color: white;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transicion);
}
.btn-vote:hover {
  background: var(--rojo-dark);
}
.btn-vote svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

/* ==========================================================================
   STRIPE STATUS BANNERS
   ========================================================================== */
.stripe-mensaje {
  padding: 1.2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  animation: slideInUp 0.4s ease-out;
  border-left: 5px solid;
}

.stripe-exito {
  background-color: rgba(34, 197, 94, 0.08);
  border-color: #22c55e;
  color: #15803d;
}

.stripe-error {
  background-color: rgba(239, 68, 68, 0.08);
  border-color: #ef4444;
  color: #b91c1c;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



