/* =================================================================
   JULIO GUZMÁN — LANDING PAGE
   Paleta: azul marino con acentos en azul claro y dorado.
   Todas las variables y clases están aisladas bajo .jg-landing
   para no chocar con los estilos del resto del sitio.
================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..700&family=Inter:wght@400;500;600;700&family=Barlow+Semi+Condensed:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;600&display=swap');

:root {
  --jg-navy-deep:   #0B2541;
  --jg-navy:        #123A63;
  --jg-navy-mid:    #1E5688;
  --jg-blue-light:  #5FA8D3;
  --jg-blue-pale:   #DCEBF6;
  --jg-gold:        #D9A441;
  --jg-gold-dark:   #B9842A;
  --jg-cream:       #F6F4EE;
  --jg-white:       #FFFFFF;
  --jg-ink:         #0E2236;
  --jg-ink-muted:   #51697D;
  --jg-border:      rgba(15,42,67,0.10);
  --jg-shadow:      0 18px 40px -16px rgba(11,37,65,0.35);

  font-family: 'Inter', system-ui, sans-serif;
  color: var(--jg-ink);
  background: var(--jg-cream);
  overflow-x: hidden;
}

.jg-landing * { box-sizing: border-box; }

.jg-landing h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 8rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.9;
  color: #FFFFFF;
  margin: 0;
}

.jg-landing h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.0;
  color: #C8102E;
  margin: 0;
}

.jg-landing h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.jg-eyebrow {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.jg-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.jg-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.jg-reveal.jg-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .jg-reveal { opacity: 1; transform: none; transition: none; }
  .jg-landing * { animation: none !important; }
}

/* ---------- BOTONES ---------- */
.jg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.jg-btn:focus-visible { outline: 3px solid var(--jg-blue-light); outline-offset: 2px; }
.jg-btn-gold {
  background: linear-gradient(135deg, var(--jg-gold), var(--jg-gold-dark));
  color: var(--jg-navy-deep);
  box-shadow: 0 10px 24px -8px rgba(217,164,65,0.55);
}
.jg-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(217,164,65,0.65); }
.jg-btn-outline-light {
  background: transparent;
  color: var(--jg-white);
  border-color: rgba(255,255,255,0.55);
}
.jg-btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--jg-white); }
.jg-btn-navy {
  background: var(--jg-navy);
  color: var(--jg-white);
}
.jg-btn-navy:hover { background: var(--jg-navy-mid); transform: translateY(-2px); }
.jg-btn-outline-navy {
  background: transparent;
  color: var(--jg-navy);
  border-color: var(--jg-navy);
}
.jg-btn-outline-navy:hover { background: var(--jg-navy); color: var(--jg-white); }


/* =================================================================
   NAVBAR — Julio Guzmán (agrega esto al bloque <style> del header.php
   o al final de style.css, después de tus variables existentes)
================================================================= */

/* ── LOGO ─────────────────────────────────────────────────────── */
.re-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
}
.re-logo span {
  color: var(--jg-gold);
  font-style: normal;
  font-weight: 700;
}

/* ── NAV BASE ──────────────────────────────────────────────────── */
.re-nav {
  background: var(--jg-navy-deep);
  border-bottom: 3px solid var(--jg-gold);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Transparente sobre el hero */
.re-nav.transparent {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  /* transición en el estado base para que funcione en ambas direcciones */
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.re-nav.transparent.scrolled {
  background: var(--jg-navy-deep);
  border-bottom-color: var(--jg-gold);
  box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.5);
  /* sin transition aquí — ya está en el estado base */
}

/* ── LINKS ─────────────────────────────────────────────────────── */
.re-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.re-nav-links li { display: flex; align-items: center; }

.re-nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.re-nav-links a:hover {
  color: #fff;
  border-bottom-color: var(--jg-gold);
}
.re-nav-links a.active {
  color: var(--jg-gold);
  border-bottom-color: var(--jg-gold);
}

/* ── SEPARADOR ─────────────────────────────────────────────────── */
.re-nav-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 0.4rem;
}

/* ── BOTÓN DONAR ───────────────────────────────────────────────── */
.re-nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #C8102E;
  color: #fff !important;
  border: 2px solid #C8102E;
  border-radius: 4px;
  padding: 0.5rem 1.4rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.re-nav-cta:hover {
  background: transparent;
  color: #C8102E !important;
  transform: none;
  box-shadow: none;
}

/* ── LANG SWITCHER ─────────────────────────────────────────────── */
.re-lang-switcher { display: flex; gap: 4px; }

.lang-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: 3px;
  padding: 0.2rem 0.55rem;
  cursor: pointer;
  transition: all 0.15s;
}
.lang-btn.active {
  background: var(--jg-gold);
  color: var(--jg-navy-deep);
  border-color: var(--jg-gold);
  font-weight: 900;
}
.lang-btn:hover:not(.active) {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── HAMBURGER ─────────────────────────────────────────────────── */
.re-hamburger {
  display: none;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 0.3rem 0.55rem;
  font-size: 1.4rem;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.re-hamburger:hover {
  border-color: var(--jg-gold);
  color: var(--jg-gold);
}
@media (max-width: 900px) {
  .re-hamburger { display: flex; }
  .re-nav-links { display: none; }
}

/* ── SIDEBAR MÓVIL ─────────────────────────────────────────────── */
.re-mobile-nav {
  position: fixed;
  top: 0; right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--jg-navy-deep);
  border-left: 3px solid var(--jg-gold);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.re-mobile-nav.show { right: 0; }

.re-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1099;
}
.re-sidebar-overlay.show { display: block; }

.re-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.re-mobile-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
}
.re-mobile-logo span { color: var(--jg-gold); font-style: normal; }

.re-mobile-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.15s;
}
.re-mobile-close:hover { color: #fff; }

.re-mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.re-mobile-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.6rem;
  border-left: 3px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.re-mobile-links a:hover,
.re-mobile-links a.active {
  color: var(--jg-gold);
  border-left-color: var(--jg-gold);
  background: rgba(217,164,65,0.06);
}
.re-mobile-links i { font-size: 1.1rem; opacity: 0.7; }

.re-mobile-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.re-mobile-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #C8102E;
  color: #fff;
  border: 2px solid #C8102E;
  border-radius: 4px;
  text-align: center;
  padding: 0.8rem;
  text-decoration: none;
  display: block;
  transition: background 0.15s, color 0.15s;
}
.re-mobile-cta:hover {
  background: transparent;
  color: #C8102E;
}

.re-mobile-lang {
  display: flex;
  gap: 8px;
}
.re-mobile-lang .lang-btn {
  flex: 1;
  font-size: 0.85rem;
  padding: 0.4rem;
  text-align: center;
}

/* ── FOCO ACCESIBLE ────────────────────────────────────────────── */
.re-nav-links a:focus-visible,
.re-nav-cta:focus-visible,
.lang-btn:focus-visible,
.re-mobile-links a:focus-visible,
.re-mobile-cta:focus-visible {
  outline: 2px solid var(--jg-gold);
  outline-offset: 3px;
  border-radius: 2px;
}



/* =================================================================
   HERO
================================================================= */
.jg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(95,168,211,0.30), transparent 55%),
    linear-gradient(160deg, var(--jg-navy-deep) 0%, var(--jg-navy) 55%, var(--jg-navy-mid) 100%);
  overflow: hidden;
  padding: 85px 0 90px;
}

.jg-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 64px);
  pointer-events: none;
}

.jg-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}

.jg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--jg-blue-pale);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}
.jg-hero-badge i { color: var(--jg-gold); }

.jg-hero-title {
  color: var(--jg-white);
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  font-weight: 600;
}
.jg-hero-title .jg-accent {
  display: block;
  color: var(--jg-gold);
  font-style: italic;
  font-weight: 500;
}

.jg-hero-office {
  margin-top: 1.1rem;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--jg-blue-pale);
  font-size: 1.05rem;
}

.jg-hero-sub {
  margin-top: 1.6rem;
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
}

.jg-hero-btns {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.jg-hero-stats {
  margin-top: 3.2rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.jg-hero-stat-n {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--jg-gold);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}

.jg-hero-stat-l {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.3rem;
}
.jg-hero-photo-wrap {
  position: relative;
  justify-self: center;
}
.jg-hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 500px; /* antes 400px */
  aspect-ratio: 5/5; /* antes 4/5 — ahora más ancho que alto */
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--jg-navy-mid), var(--jg-navy-deep));
  box-shadow: var(--jg-shadow);
  border: 1px solid rgba(255,255,255,0.15);
}

.jg-hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* ancla la cabeza arriba, recorta por abajo */
  display: block;
}
.jg-hero-photo-frame .jg-photo-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 4rem;
}
.jg-hero-photo-ribbon {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--jg-gold);
  color: var(--jg-navy-deep);
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.35);
}

@media (max-width: 980px) {
  .jg-hero-badge { display: none;}
  .jg-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .jg-hero-sub { margin-left: auto; margin-right: auto; }
  .jg-hero-btns, .jg-hero-stats { justify-content: center; }
  .jg-hero-photo-wrap { order: -1; margin-bottom: 1rem; }
  .jg-hero-photo-ribbon { left: 50%; transform: translateX(-50%); bottom: -16px; }
  .jg-hero-stat{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

/* =================================================================
   BARRA DE AVISO (transparencia de campaña)
================================================================= */
.jg-notice {
  background: var(--jg-blue-pale);
  border-bottom: 1px solid var(--jg-border);
  padding: 0.65rem 0;
}
.jg-notice p {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--jg-navy);
}

/* =================================================================
   BIOGRAFÍA
================================================================= */
.jg-bio {
  padding: 60px 0;
  background: var(--jg-cream);
}
.jg-bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.jg-bio-photo-wrap { position: relative; }
.jg-bio-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--jg-navy), var(--jg-navy-mid));
  box-shadow: var(--jg-shadow);
}
.jg-bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jg-bio-photo .jg-photo-fallback {
  position: absolute; inset:0; display:flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,0.25); font-size: 4rem;
}
.jg-bio-stats {
  display: flex;
  margin-top: 1.4rem;
  border: 1px solid var(--jg-border);
  border-radius: 14px;
  background: var(--jg-white);
  overflow: hidden;
}
.jg-bio-stat { flex: 1; padding: 1.2rem 0.8rem; text-align: center; }
.jg-bio-stat:first-child { border-right: 1px solid var(--jg-border); }
.jg-bio-stat-n { font-family:'Fraunces', serif; font-size: 1.7rem; color: var(--jg-navy); font-weight: 600; display:block; }
.jg-bio-stat-l { font-family:'Barlow Semi Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; color: var(--jg-ink-muted); }

.jg-section-tag {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--jg-gold-dark);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  display: block;
}
.jg-bio-name {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  color: var(--jg-navy-deep);
}
.jg-bio-role {
  margin-top: 0.5rem;
  font-family: 'Barlow Semi Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--jg-blue-light-text, var(--jg-navy-mid));
  font-weight: 600;
}
.jg-bio-divider {
  width: 64px; height: 4px; border-radius: 4px;
  background: var(--jg-gold);
  margin: 1.4rem 0 1.6rem;
}
.jg-bio-text { color: var(--jg-ink-muted); line-height: 1.75; font-size: 1.05rem; margin-bottom: 1.1rem; }

.jg-bio-cta { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .jg-bio-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   TRAYECTORIA (timeline) — elemento distintivo
================================================================= */
.jg-journey {
  background: var(--jg-navy-deep);
  padding: 100px 0 70px;
  position: relative;
}
.jg-journey-head { text-align: center; margin-bottom: 56px; }
.jg-journey .jg-section-tag { color: var(--jg-gold); }
.jg-journey h2 { color: var(--jg-white); font-size: clamp(1.9rem, 3vw, 2.6rem); }

.jg-journey-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 230px;
  gap: 28px;
  overflow-x: auto;
  padding: 10px 4px 30px;
  scroll-snap-type: x proximity;
}
.jg-journey-track::-webkit-scrollbar { height: 6px; }
.jg-journey-track::-webkit-scrollbar-thumb { background: var(--jg-navy-mid); border-radius: 6px; }

.jg-journey-stop {
  scroll-snap-align: start;
  position: relative;
  padding-top: 28px;
}
.jg-journey-stop::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--jg-gold), var(--jg-blue-light));
  border-radius: 3px;
}
.jg-journey-stop::after {
  content: '';
  position: absolute;
  top: -5px; left: 0;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--jg-gold);
  box-shadow: 0 0 0 4px var(--jg-navy-deep);
}
.jg-journey-tag {
  font-family: 'Barlow Semi Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--jg-blue-light);
  font-weight: 700;
}
.jg-journey-title {
  color: var(--jg-white);
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  margin: 0.4rem 0 0.5rem;
  line-height: 1.25;
}
.jg-journey-text {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}
/* ── ITEM "VER MÁS" ─────────────────────────────────────────── */
/* El contenedor padre necesita position relative */
.jg-journey .jg-container {
  position: relative;
}

.jg-journey-more {
  position: absolute;
  right: 10px;
  bottom: -15px; /* antes 70px */
  transition: opacity 0.4s ease;
  z-index: 10;
}
.jg-journey-more::before,
.jg-journey-more::after { display: none; }

.jg-journey-more-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.jg-journey-more-inner:hover { opacity: 1; }

.jg-journey-more-arrow {
  width: 48px; height: 48px;
  border: 1.5px solid var(--jg-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jg-gold);
  font-size: 1.2rem;
  animation: jg-nudge 1.6s ease-in-out infinite;
  background: rgba(11,37,65,0.6);
  backdrop-filter: blur(4px);
}

.jg-journey-more-label {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--jg-gold);
  white-space: nowrap;
}

@keyframes jg-nudge {
  0%, 100% { transform: translateX(0);    opacity: 0.7; }
  50%       { transform: translateX(8px); opacity: 1;   }
}
/* =================================================================
   PRIORIDADES
================================================================= */
.jg-platform {
  padding: 60px 0;
  background: var(--jg-white);
}
.jg-platform-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.jg-platform-head h2 { color: var(--jg-navy-deep); font-size: clamp(2rem, 3.2vw, 2.7rem); }
.jg-platform-head p { margin-top: 1rem; color: var(--jg-ink-muted); font-size: 1.05rem; }

.jg-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.jg-platform-card {
  border: 1px solid var(--jg-border);
  border-radius: 16px;
  padding: 2rem;
  background: var(--jg-cream);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.jg-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--jg-shadow);
  border-color: var(--jg-blue-light);
}
.jg-platform-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--jg-navy);
  color: var(--jg-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.jg-platform-card h3 { color: var(--jg-navy-deep); font-size: 1.25rem; margin-bottom: 0.6rem; }
.jg-platform-card p { color: var(--jg-ink-muted); font-size: 0.97rem; line-height: 1.6; margin: 0; }

@media (max-width: 760px) {
  .jg-platform-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   DONAR + SÚMATE
================================================================= */
.jg-action {
  padding: 60px 0;
  background: linear-gradient(160deg, var(--jg-navy) 0%, var(--jg-navy-deep) 100%);
}
.jg-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.jg-action-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 2.6rem;
}
.jg-action-card h3 {
  color: var(--jg-white);
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}
.jg-action-card > p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.jg-amounts {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}
.jg-amount {
  flex: 1 1 auto;
  min-width: 64px;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--jg-white);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.jg-amount:hover, .jg-amount:focus-visible { background: var(--jg-gold); color: var(--jg-navy-deep); border-color: var(--jg-gold); }

.jg-form { display: flex; flex-direction: column; gap: 0.85rem; }
.jg-form-row { display: flex; gap: 0.85rem; }
.jg-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07);
  color: var(--jg-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.jg-form input::placeholder { color: rgba(255,255,255,0.45); }
.jg-form input:focus-visible { outline: 2px solid var(--jg-gold); }
.jg-form-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 0.3rem; }

@media (max-width: 900px) {
  .jg-action-grid { grid-template-columns: 1fr; }
  .jg-form-row { flex-direction: column; }
}

/* =================================================================
   CTA FINAL
================================================================= */
.jg-final {
  padding: 90px 0;
  background: var(--jg-cream);
  text-align: center;
}
.jg-final h2 { color: var(--jg-navy-deep); font-size: clamp(2rem, 3.4vw, 2.8rem); }
.jg-final h2 em { color: var(--jg-gold-dark); font-style: italic; }
.jg-final p { margin: 1rem auto 2rem; max-width: 560px; color: var(--jg-ink-muted); font-size: 1.05rem; }
.jg-final-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =================================================================
   AVISO LEGAL / SOCIAL
================================================================= */
.jg-legal {
  background: var(--jg-navy-deep);
  padding: 28px 0;
  text-align: center;
}
.jg-legal p { margin: 0; color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.6; }
.jg-legal .jg-social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 0.9rem; }
.jg-legal .jg-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  color: var(--jg-white);
  text-decoration: none;
  transition: background 0.15s ease;
}
.jg-legal .jg-social a:hover { background: var(--jg-gold); color: var(--jg-navy-deep); }

/* =================================================================
   FOOTER — Julio Guzmán
================================================================= */
.jg-footer {
  background: var(--jg-navy-deep);
  border-top: 3px solid var(--jg-gold);
  padding: 64px 0 0;
}

/* ── TOP ───────────────────────────────────────────────────────── */
.jg-footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── MARCA ─────────────────────────────────────────────────────── */
.jg-footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.85rem;
}
.jg-footer-logo span { color: var(--jg-gold); }

.jg-footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
  margin: 0 0 1.4rem;
}

.jg-footer-social {
  display: flex;
  gap: 0.6rem;
}
.jg-footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.jg-footer-social a:hover {
  background: var(--jg-gold);
  color: var(--jg-navy-deep);
  border-color: var(--jg-gold);
}

/* ── COLUMNAS ──────────────────────────────────────────────────── */
.jg-footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--jg-gold);
  margin: 0 0 1rem;
}
.jg-footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.jg-footer-col ul a {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.jg-footer-col ul a:hover { color: #fff; }

/* ── AVISO LEGAL ───────────────────────────────────────────────── */
.jg-footer-legal {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.jg-footer-legal p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.jg-footer-legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}
.jg-footer-legal a:hover { color: var(--jg-gold); }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .jg-footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .jg-footer-desc { max-width: 100%; }
  .jg-footer-legal { text-align: center; }
}