/* ============================================================
   ESTILOS – Campaña Sebas Garay
   Colores PPQ 2023: Azul #1A477E | Celeste #98D6F2 | Rojo #E41E32
   Para cambiar colores, editar las variables en :root
   ============================================================ */

/* FUENTES LOCALES */
@font-face {
  font-family: 'Gunterz';
  src: url('tipografias/Gunterz-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Tungsten';
  src: url('tipografias/Tungsten-Font/Tungsten-Font/WOFF2/Tungsten-Bold.woff2') format('woff2'),
       url('tipografias/Tungsten-Font/Tungsten-Font/OTF/Tungsten-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Tungsten';
  src: url('tipografias/Tungsten-Font/Tungsten-Font/WOFF2/Tungsten-Semibold.woff2') format('woff2'),
       url('tipografias/Tungsten-Font/Tungsten-Font/OTF/Tungsten-Semibold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Zalando Sans';
  src: url('tipografias/Zalando_Sans/ZalandoSans-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Zalando Sans';
  src: url('tipografias/Zalando_Sans/ZalandoSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900; font-style: italic; font-display: swap;
}

/* ============================================================
   VARIABLES DE COLOR — editar aquí para cambiar toda la paleta
   ============================================================ */
:root {
  --azul: #1A477E;        /* Color 1 PPQ — azul principal */
  --azul-oscuro: #0d2548; /* Azul oscuro — fondos profundos */
  --celeste: #98D6F2;     /* Color 3 PPQ — celeste, acentos */
  --rojo: #E41E32;        /* Color 2 PPQ — rojo, uso mínimo */
  --blanco: #ffffff;
  --gris: #6b7280;
  --negro: #061429;       /* Fondo más oscuro (navy profundo) */
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Zalando Sans', sans-serif;
  background: var(--negro);
  color: var(--blanco);
  overflow-x: hidden;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 4rem;
  background: rgba(6,20,41,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.nav-logo {
  font-family: 'Gunterz', 'Tungsten', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--celeste); text-decoration: none;
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo-img { height: 32px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; flex: 1; justify-content: center; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--celeste); }
.nav-cta {
  background: var(--rojo); color: white;
  padding: 0.6rem 1.6rem; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #c0001a; color: white; transform: translateY(-1px); }

.nav-sole-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 0.3rem 0.6rem; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.nav-sole-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.nav-sole-img { height: 40px; width: auto; display: block; }

.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 10px; border-radius: 10px; }
.hamburger span { display: block; width: 25px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

/* MOBILE MENU OVERLAY – elemento independiente fuera del stacking context de nav */
.nav-mobile {
  display: flex; position: fixed; inset: 0; z-index: 9999;
  background: var(--negro);
  flex-direction: column; align-items: center; justify-content: flex-start; gap: 2.5rem;
  padding: 5rem 2rem 3rem;
  overflow-y: auto;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: scale(1.04);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.nav-mobile.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: scale(1);
}

/* Hamburger → X cuando el menú está abierto */
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-mobile a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 1.6rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; transition: color 0.2s;
  text-align: center; width: 100%;
}
.nav-mobile a:hover { color: var(--celeste); }
.nav-mobile .nav-mobile-cta {
  background: var(--rojo); color: white;
  padding: 0.8rem 2.5rem; border-radius: 50px; font-size: 1.1rem; font-weight: 700;
  text-transform: none; letter-spacing: normal;
}
.nav-mobile .nav-mobile-cta:hover { background: #c0001a; color: white; }
.nav-mobile .nav-donde-voto {
  background: var(--celeste); color: var(--azul-oscuro);
  border: none; cursor: pointer;
  padding: 0.8rem 2.5rem; border-radius: 50px;
  font-size: 1.1rem; font-weight: 700; font-family: inherit;
  text-transform: none; letter-spacing: normal;
  transition: background 0.2s;
}
.nav-mobile .nav-donde-voto:hover { background: #7bc8e8; }
.btn-donde-link {
  display: block; text-align: center;
  background: var(--azul-oscuro); color: white;
  padding: 0.9rem 2rem; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: background 0.2s;
}
.btn-donde-link:hover { background: #122f58; }
.btn-donde-wa {
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: white;
  padding: 0.9rem 2rem; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: background 0.2s;
}
.btn-donde-wa:hover { background: #1ebe5b; }
.nav-mobile-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); font-size: 2.5rem; line-height: 1; padding: 0.5rem;
}
.nav-mobile-close:hover { color: white; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background: url('img/background-inicio.jpg') center/cover no-repeat;
  display: flex; align-items: flex-start; justify-content: center;
  position: relative; overflow: hidden;
  padding: 6rem 4rem 4rem;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(6, 20, 41, 0.20);
}
.hero-grid {
  max-width: 1050px; width: 100%;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 2rem; align-items: center; position: relative; z-index: 1;
}
.hero-img-wrap { position: relative; margin-left: -4rem; }
.hero-img-wrap::before {
  content: ''; position: absolute;
  inset: -8px; border-radius: 24px;
  background: var(--celeste);
  z-index: -1;
}
.hero-img-wrap img {
  width: 100%; border-radius: 20px;
  display: block; object-fit: cover;
  object-position: center 60%;
  aspect-ratio: 3/4;
  background: var(--azul-oscuro);
}
/* .hero-text-img removed */
.hero-img-placeholder {
  width: 100%; border-radius: 20px;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, var(--azul) 0%, var(--azul-oscuro) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 1rem; gap: 1rem;
}
.hero-img-placeholder svg { width: 60px; height: 60px; opacity: 0.3; }
.hero-tag {
  display: inline-block; background: rgba(6,20,41,0.30);
  color: var(--celeste); border: 1px solid rgba(152,214,242,0.55);
  padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero-name {
  font-family: 'Gunterz', 'Tungsten', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 0.95;
  letter-spacing: 0.03em;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 4px 28px rgba(0,0,0,0.35);
  margin-bottom: 1rem;
}
/* ============================================================
   HERO – cartel billboard + prisma 3D
   ============================================================ */
.hero-cartel {
  background: var(--rojo);
  border: 5px solid #0a0a0a;
  border-radius: 6px;
  box-shadow: 14px 14px 0 #0a0a0a, 22px 22px 50px rgba(0,0,0,0.7);
  margin-bottom: 2.5rem;
  margin-right: -4rem;
  padding-bottom: 0.8rem;
  transform: perspective(900px) rotateY(-8deg) rotateX(3deg);
  transform-origin: center center;
}
.hero-cartel-body { padding: 3rem 3.5rem 1.8rem; }
.hero-cartel-text {
  font-family: 'Gunterz', 'Tungsten', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin: 0;
}
.hero-prism-stage {
  display: flex;
  width: calc(100% - 5rem);
  height: 5.5rem;
  background: var(--azul-oscuro);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 2.5rem;
}
.hero-prism {
  display: flex;
  flex-direction: column;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
}
.prism-face {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  height: 5.5rem;
  font-family: 'Gunterz', 'Tungsten', sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  background: var(--azul-oscuro);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--azul); color: white;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: all 0.25s; display: inline-block;
}
.btn-primary:hover { background: var(--celeste); color: var(--azul-oscuro); transform: translateY(-2px); }
.btn-outline {
  background: var(--rojo); color: white;
  border: none;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { background: #c0001a; color: white; transform: translateY(-2px); }

/* ============================================================
   SECTIONS GENERALES
   ============================================================ */
section { padding: 7rem 4rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--celeste); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Gunterz', 'Tungsten', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700;
  line-height: 1.1; letter-spacing: 0.02em;
}
.section-title em { font-style: italic; color: var(--celeste); }

/* Secciones claras: label y em en azul para contraste sobre blanco */
#about .section-label, #propuestas .section-label { color: var(--azul); }
#about .section-title em, #propuestas .section-title em { color: var(--azul); }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--blanco); color: var(--negro); }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: start; margin-top: 3rem; }
.about-text p { font-size: 1.05rem; line-height: 1.8; color: #333; margin-bottom: 1.2rem; }
.about-aside { position: sticky; top: 6rem; }
.aside-box {
  background: var(--azul); color: white;
  border-radius: 20px; padding: 2.5rem; margin-bottom: 1.5rem;
}
.aside-box h3 { font-family: 'Gunterz', 'Tungsten', sans-serif; font-size: 1.5rem; margin-bottom: 1rem; color: var(--celeste); font-weight: 700; }
.aside-box p { font-size: 0.9rem; line-height: 1.7; opacity: 0.85; }
.more-btn {
  background: var(--celeste); color: var(--azul-oscuro);
  border: none; padding: 0.7rem 1.5rem; border-radius: 50px;
  font-weight: 700; cursor: pointer; font-size: 0.9rem;
  margin-top: 1rem; transition: background 0.2s;
  width: 100%; text-align: center;
}
.more-btn:hover { background: var(--blanco); color: var(--azul); }

/* ============================================================
   MODALES
   ============================================================ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.85); overflow-y: auto;
}
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; padding: 3rem 1rem; }
.modal-box {
  background: var(--blanco); color: var(--negro);
  border-radius: 24px; max-width: 750px; width: 100%;
  padding: 3rem; position: relative;
}
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: var(--gris);
}
.modal-box h2 { font-family: 'Gunterz', 'Tungsten', sans-serif; font-size: 2rem; margin-bottom: 1.5rem; font-weight: 700; }
.modal-box p { margin-bottom: 1rem; line-height: 1.8; font-size: 0.95rem; color: #333; }

/* ============================================================
   EQUIPO
   ============================================================ */
#equipo { background: var(--negro); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.team-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden; transition: transform 0.2s, border-color 0.2s;
}
.team-card:hover { transform: translateY(-4px); border-color: var(--celeste); }
.team-photo {
  aspect-ratio: 1; background: var(--azul);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-family: 'Tungsten', sans-serif; color: var(--celeste);
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-info { padding: 1.2rem; }
.team-info h4 { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; }
.team-info p { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ============================================================
   AVALES
   ============================================================ */
#avales { background: var(--celeste); }
#avales .section-label { color: var(--azul); opacity: 1; }
#avales .section-title { color: var(--azul-oscuro); }
#avales .section-title em { color: var(--azul); }

.aval-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 2.5rem 1rem;
  margin-top: 2.5rem;
}
.aval-card {
  background: none; border: none; border-radius: 0; padding: 0;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  text-align: center; transition: transform 0.2s;
}
.aval-card:hover { transform: scale(1.05); }
#avales .aval-card { background: none; border-color: transparent; }
#avales .aval-card:hover { border-color: transparent; }

.aval-avatar {
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--azul); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Tungsten', sans-serif; font-size: 2.5rem; color: var(--celeste);
  overflow: hidden;
}
.aval-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.aval-info {
  background: var(--azul-oscuro); border-radius: 50px;
  padding: 0.45rem 1rem; width: 100%; max-width: 160px;
  margin-top: -0.6rem;
}
.aval-info h5 { font-weight: 700; font-size: 0.82rem; color: white; text-transform: uppercase; letter-spacing: 0.02em; }
.aval-info p  { font-size: 0.6rem; color: rgba(255,255,255,0.6); line-height: 1.3; margin-top: 0.1rem; text-transform: uppercase; letter-spacing: 0.04em; }
#avales .aval-info h5 { color: white; }
#avales .aval-info p  { color: rgba(255,255,255,0.6); }

/* ============================================================
   ACTIVIDADES / CAROUSEL
   ============================================================ */
#actividades { background: var(--negro); overflow: hidden; }
.carousel-wrap { position: relative; overflow: hidden; margin-top: 3rem; border-radius: 20px; }
.carousel-track { display: flex; transition: transform 0.5s ease; }
.carousel-card {
  min-width: 320px; margin-right: 1.5rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden; cursor: default;
}
.carousel-img {
  height: 200px; background: linear-gradient(135deg, var(--azul), var(--azul-oscuro));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden;
}
.carousel-img img { width: 100%; height: 100%; object-fit: cover; }
.carousel-card h4 { padding: 1rem 1.2rem 0.5rem; font-weight: 600; font-size: 0.95rem; }
.carousel-card p { padding: 0 1.2rem 1.2rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.carousel-nav { display: flex; gap: 0.5rem; margin-top: 1.5rem; justify-content: center; }
.c-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: background 0.2s; }
.c-dot.active { background: var(--celeste); }

/* ============================================================
   VOLUNTARIOS (ex estadísticas)
   ============================================================ */
#estadisticas { background: var(--azul); }
.vol-teams-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.vol-team-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(152,214,242,0.2);
  border-radius: 16px; padding: 1.2rem;
}
.vol-team-name {
  font-family: 'Tungsten', sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.6rem); font-weight: 700;
  color: var(--celeste); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.vol-team-desc { color: rgba(255,255,255,0.75); line-height: 1.65; font-size: 0.95rem; }
.vol-counter-wrap {
  display: flex; flex-direction: column; align-items: center;
  margin-top: 2.5rem; gap: 1rem; width: 100%; max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.vol-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin-top: 2.5rem;
}
.btn-newsletter {
  background: transparent; color: var(--celeste);
  border: 2px solid var(--celeste);
  padding: 0.9rem 2rem; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s, color 0.2s; display: inline-block;
}
.btn-newsletter:hover { background: var(--celeste); color: var(--azul-oscuro); }
.vol-progress-header {
  display: flex; justify-content: space-between; width: 100%;
  color: rgba(255,255,255,0.75); font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.vol-progress-header span:first-child {
  font-family: 'Tungsten', sans-serif; font-size: 1.4rem;
  color: var(--celeste); letter-spacing: 0.04em;
}
.vol-progress-header span:first-child [data-metric] { font-size: inherit; }
.vol-progress-track {
  width: 100%; height: 12px;
  background: rgba(255,255,255,0.15); border-radius: 50px; overflow: hidden;
}
.vol-progress-fill {
  height: 100%; background: var(--celeste);
  border-radius: 50px; width: 0; transition: width 1.5s ease;
}
.donar-form iframe { border-radius: 12px; display: block; background: white; }
.donaciones-transparencia { margin-top: 3rem; }
.donaciones-transparencia h4 { color: white; font-family: 'Gunterz', 'Tungsten', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; }
.donaciones-tabla { color: rgba(255,255,255,0.7); font-size: 0.9rem; background: rgba(255,255,255,0.05); border-radius: 12px; padding: 2rem; text-align: center; }

/* ============================================================
   PROPUESTAS
   ============================================================ */
#propuestas { background: var(--blanco); color: var(--negro); }
.propuestas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.prop-card {
  background: white; border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--azul);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.prop-card h3 { font-family: 'Gunterz', 'Tungsten', sans-serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; margin-bottom: 1rem; color: var(--azul); line-height: 1; }
.prop-card p { font-size: 0.9rem; line-height: 1.7; color: #555; margin-bottom: 1.5rem; }
.prop-more {
  background: var(--azul); color: white;
  border: none; padding: 0.6rem 1.3rem; border-radius: 50px;
  font-weight: 600; cursor: pointer; font-size: 0.85rem; transition: background 0.2s;
}
.prop-more:hover { background: var(--azul-oscuro); }

/* ============================================================
   DONACIÓN
   ============================================================ */
#donar { background: var(--negro); }
.donar-inner {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-oscuro) 100%);
  border-radius: 28px; padding: 5rem; position: relative; overflow: hidden;
}
.donar-inner::after {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(152,214,242,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.donar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.donar-text .section-title { color: white; }
.donar-text p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-top: 1rem; line-height: 1.7; }
.donar-form { background: rgba(255,255,255,0.06); border-radius: 20px; padding: 2.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; opacity: 0.7; margin-bottom: 0.4rem; }
.form-group input, .form-group select {
  width: 100%; padding: 0.8rem 1rem; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08); color: white;
  font-size: 0.9rem; outline: none; transition: border-color 0.2s;
  font-family: 'Zalando Sans', sans-serif;
}
.form-group input:focus, .form-group select:focus { border-color: var(--celeste); }
.form-group select option { background: var(--azul-oscuro); }
.uso-fondos { margin-top: 1.5rem; }
.uso-item { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.6rem; font-size: 0.82rem; opacity: 0.75; }
.uso-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--celeste); flex-shrink: 0; }
.form-msg { background: rgba(152,214,242,0.12); border: 1px solid rgba(152,214,242,0.3); color: rgba(255,255,255,0.85); padding: 0.8rem 1rem; border-radius: 10px; font-size: 0.85rem; margin-bottom: 1rem; display: none; }

/* ============================================================
   CONTACTO
   ============================================================ */
#contacto { background: var(--negro); text-align: center; }
.quote {
  font-family: 'Gunterz', 'Tungsten', 'Zalando Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem); font-weight: 700;
  font-style: italic; color: var(--celeste); line-height: 1.3;
  max-width: 700px; margin: 0 auto 3rem;
}
.social-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.5rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--celeste); color: var(--celeste); }
.social-icon { width: 20px; height: 20px; }

/* ============================================================
   BOTÓN FLOTANTE
   ============================================================ */
.float-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
  background: var(--azul); color: white;
  padding: 0.9rem 1.8rem; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  box-shadow: 0 8px 32px rgba(26,71,126,0.5);
  transition: all 0.25s; display: flex; align-items: center; gap: 0.5rem;
  border: none; cursor: pointer;
}
.float-btn:hover { background: var(--celeste); color: var(--azul-oscuro); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(152,214,242,0.3); }
.float-btn .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--celeste);
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

/* ============================================================
   MODAL VOLUNTARIO
   ============================================================ */
#modal-voluntario .modal-box { max-width: 600px; }
#modal-voluntario .modal-box h2 { color: var(--azul); }
.vol-form .form-group label { color: #444; }
.vol-form .form-group input,
.vol-form .form-group select,
.vol-form .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: 12px;
  border: 1.5px solid #ddd; background: #fafafa; color: #111;
  font-size: 0.9rem; outline: none; transition: border-color 0.2s;
  font-family: 'Zalando Sans', sans-serif;
}
.vol-form .form-group input:focus,
.vol-form .form-group select:focus,
.vol-form .form-group textarea:focus { border-color: var(--azul); }
.vol-form .form-group textarea { resize: vertical; min-height: 80px; }
.vol-msg { background: #d6edf8; border: 1px solid var(--celeste); color: var(--azul); padding: 0.8rem 1rem; border-radius: 10px; font-size: 0.9rem; margin-bottom: 1rem; display: none; }
/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--azul); padding: 2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
footer .logo { font-family: 'Gunterz', sans-serif; font-size: 1.2rem; color: var(--celeste); font-weight: 700; }
footer p { font-size: 0.8rem; opacity: 0.6; }
footer a { color: var(--celeste); text-decoration: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; align-items: center; min-height: 64px; justify-content: space-between; }
  .nav-links, .nav-cta, .nav-sole-btn { display: none; }
  .hamburger { margin-left: auto; }
  section { padding: 4rem 1.5rem; }
  .hero-grid, .about-grid, .donar-grid { grid-template-columns: 1fr; gap: 3rem; }
  .propuestas-grid { grid-template-columns: 1fr; }
  #hero { padding: 6rem 1.5rem 3rem; overflow: clip; }
  .donar-inner { padding: 3rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  /* Hero mobile */
  .hero-img-wrap { margin-left: 0; }
  .hero-img-wrap img { aspect-ratio: 4/5; }
  .hero-cartel {
    margin-right: 0;
    transform: perspective(800px) rotateY(-4deg) rotateX(1.5deg);
    box-shadow: 6px 6px 0 #0a0a0a, 10px 10px 24px rgba(0,0,0,0.5);
  }
  .hero-cartel-body { padding: 1.5rem 1.2rem 1rem; }
  .hero-cartel-text { font-size: 0.95rem; line-height: 1.65; }
  .hero-prism-stage { height: 3.5rem; width: calc(100% - 2rem); margin: 0 1rem; }
  .prism-face { height: 3.5rem; font-size: 1rem; padding: 0 1rem; }
}
/* ============================================================
   ANIMACIONES
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ============================================================
   MODAL PROPUESTAS
   ============================================================ */
#modal-propuesta .modal-box { max-width: 700px; background: white; }
#modal-propuesta .modal-box h2 { color: var(--azul); }
#modal-propuesta .modal-box p, #modal-propuesta .modal-box li { color: #333; }
.prop-list { list-style: none; padding: 0; }
.prop-list li { padding: 0.6rem 0; border-bottom: 1px solid #eee; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 0.6rem; }
.prop-list li::before { content: '→'; color: var(--azul); font-weight: 700; flex-shrink: 0; }
.prop-tagline {
  background: var(--celeste); color: var(--azul-oscuro);
  padding: 1.2rem 1.5rem; border-radius: 10px;
  font-family: 'Gunterz', 'Tungsten', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  text-align: center; margin-top: 1.5rem;
}
.prop-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: 0.9rem; }
.prop-table th { background: var(--azul); color: white; padding: 0.8rem 1rem; text-align: left; font-weight: 700; }
.prop-table td { padding: 0.75rem 1rem; border-bottom: 1px solid #eee; color: #333; vertical-align: top; line-height: 1.6; }
.prop-table tr:last-child td { border-bottom: none; }
.prop-table tr:nth-child(even) td { background: #f8f9fa; }
.veredas-card {
  margin-top: 2rem;
  background: var(--azul); border-radius: 20px;
  padding: 2.5rem; text-align: center;
}
.veredas-card h3 {
  font-family: 'Gunterz', 'Tungsten', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700;
  color: var(--celeste); margin-bottom: 0.75rem;
}
.veredas-card p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 1.5rem; }
.veredas-card .prop-more { background: var(--celeste); color: var(--azul-oscuro); font-size: 0.95rem; padding: 0.7rem 1.8rem; }
.veredas-card .prop-more:hover { background: white; }

/* ============================================================
   NAV LOGO – subtítulo "concejal 2026"
   ============================================================ */
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-sub  { font-size: 0.6rem; font-weight: 400; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.1em; font-family: inherit; }

/* ============================================================
   NAV MOBILE – +Sole link
   ============================================================ */
.nav-mobile-sole { display: flex; align-items: center; justify-content: center; width: 100%; }
.nav-mobile-sole-img { height: 36px; width: auto; display: block; }


/* ============================================================
   SCROLL HINT — siempre visible ↓, desaparece al llegar a #contacto
   ============================================================ */
.scroll-hint {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 998; pointer-events: none;
  opacity: 0.7; transition: opacity 0.4s;
}
.scroll-hint.hidden { opacity: 0; }
.scroll-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--celeste);
  color: var(--celeste); font-size: 1.2rem;
  animation: bounce 1.4s ease-in-out infinite;
  background: rgba(6,20,41,0.6);
  backdrop-filter: blur(6px);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}
@media (max-width: 900px) {
  .vol-teams-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .scroll-hint { bottom: 5rem; } /* encima del floating btn en mobile */
  .cd-block { min-width: 60px; }
  .countdown-numbers { gap: 0.25rem; }
  .vol-actions { flex-direction: column; align-items: center; }
  .cd-progress-wrap { margin-top: 3.5rem; }
  .cd-walker { width: 70px; height: 70px; }
}
@media (max-width: 500px) {
  .vol-teams-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
#countdown { background: var(--blanco); padding: 3rem 0; text-align: center; }
.countdown-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.countdown-numbers { display: flex; align-items: center; gap: 0.5rem; }
.cd-block { display: flex; flex-direction: column; align-items: center; min-width: 80px; }
.cd-block span {
  font-family: 'Tungsten', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1; color: var(--azul);
}
.cd-block small { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--azul); opacity: 0.6; }
.cd-sep { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--azul-oscuro); font-weight: 700; line-height: 1; }
.countdown-label { font-size: 0.9rem; color: var(--azul); opacity: 0.75; }
.countdown-label strong { color: var(--azul-oscuro); opacity: 1; }
.cd-progress-wrap { width: 100%; max-width: 600px; margin-top: 7rem; }
.cd-track {
  position: relative; height: 6px;
  background: rgba(0,0,0,0.1); border-radius: 3px;
  overflow: visible;
}
.cd-fill { height: 100%; background: var(--azul); border-radius: 3px; transition: width 1s; position: relative; z-index: 2; }
.cd-walker {
  position: absolute; top: 50%;
  width: 130px; height: 130px;
  object-fit: contain; object-position: center center;
  transform: translate(-50%, -82%);
  transition: left 1s;
  z-index: 1;
}
.cd-track-labels {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between;
  font-size: 0.7rem; color: var(--azul-oscuro); opacity: 0.5; margin-top: 0.6rem;
}

/* ============================================================
   BANNERS PPQ — carousel ratio 4:5
   ============================================================ */
#banners-ppq { padding: 0; overflow: hidden; }
.banners-carousel-wrap { overflow: hidden; height: 260px; }
.banners-track {
  display: flex; transition: transform 0.5s ease; height: 100%;
}
.banner-photo {
  flex: 0 0 20%; height: 100%;
  object-fit: cover; object-position: center;
}
.banner-ph {
  background: var(--azul);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.18); font-size: 0.8rem;
  border-right: 2px solid rgba(0,0,0,0.25);
}
.banner-ph:last-child { border-right: none; }
@media (max-width: 768px) {
  .banners-carousel-wrap { height: 200px; }
  .banner-photo { flex: 0 0 50%; }
}

/* ============================================================
   NAV – +Sole en desktop
   ============================================================ */
.nav-sole {
  color: var(--celeste) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

/* ============================================================
   CAROUSEL – badge ? en tarjeta de bases
   ============================================================ */
.carousel-img { position: relative; }
.base-badge {
  position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--celeste); color: var(--negro);
  font-weight: 900; font-size: 0.85rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.2s;
}
.base-badge:hover { transform: scale(1.15); background: white; }
