:root {
  --verde-oscuro: #254E34;
  --verde-medio: #3A7A51;
  --verde-claro: #6FBF84;
  --verde-claro-hover: #58af6f;
  --verde-suave: #EEF7EE;
  --beige: #F5F5DC;
  --tierra: #8D6E63;
  --blanco: #FFFFFF;
  --gris-suave: #F7F7F4;
  --texto: #1A2A1A;
  --texto-suave: #4A5A4A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body.menu-open { overflow: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--texto);
  background: var(--blanco);
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, .serif { font-family: 'Fraunces', serif; }

a:focus-visible,
button:focus-visible,
.hamburger:focus-visible {
  outline: 3px solid #A5D6A7;
  outline-offset: 3px;
}

section[id] { scroll-margin-top: 6.5rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  background: var(--blanco);
  color: var(--verde-oscuro);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(27,94,32,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--blanco); text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--verde-claro);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nav-logo-text { font-family: 'Fraunces', serif; font-size: 0.95rem; line-height: 1.2; font-weight: 600; }
.nav-logo-sub { font-size: 0.68rem; opacity: 0.7; font-family: 'DM Sans', sans-serif; font-weight: 300; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.88rem; font-weight: 400; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--verde-claro); }
.nav-cta {
  background: var(--verde-claro); color: var(--blanco) !important;
  padding: 0.45rem 1.2rem; border-radius: 6px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--verde-claro-hover) !important; color: var(--blanco) !important; }

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--verde-oscuro);
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 70% 30%, rgba(76,175,80,0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(58,122,81,0.18) 0%, transparent 50%),
    linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-oscuro) 40%, var(--verde-medio) 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 40px 40px;
}
/*
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 8rem 5% 6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
*/
.hero-content {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: 0 auto;

  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;

  background: #fff;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.hero-logo {
  width: 180px; 
  max-width: 45%; 
  height: auto; 
  display: block; 
  margin-bottom: 1.2rem;
}

.hero-image{
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(76,175,80,0.15); border: 1px solid rgba(76,175,80,0.3);
  color: #A5D6A7; padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.hero-tag::before { content: '●'; color: var(--verde-claro); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
/*
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--blanco);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
*/
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--texto);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
/*
.hero h1 em {
  font-style: italic; color: #A5D6A7;
}
*/
.hero h1 em {
  font-style: italic;
  color: var(--verde-medio);
}
/*
.hero h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
*/
.hero h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--texto-suave);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
/*
.hero-desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; margin-bottom: 2.5rem;
  border-left: 2px solid rgba(76,175,80,0.4);
  padding-left: 1rem;
}
*/
.hero-desc {
  font-size: 0.95rem;
  color: var(--texto-suave);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  border-left: 2px solid rgba(76,175,80,0.4);
  padding-left: 1rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-primary {
  background: var(--verde-claro); color: var(--blanco);
  box-shadow: 0 4px 20px rgba(76,175,80,0.35);
}
.btn-primary:hover {
  background: var(--verde-claro-hover);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(76,175,80,0.5);
}
/*
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
}
*/
.btn-secondary {
  background: #f5f5f5;
  color: var(--texto);
  border: 1px solid #ddd;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px) scale(1.02);
}
.btn-pdf-tag {
  font-size: 0.72rem; opacity: 0.7; font-weight: 300;
}
/*
.hero-microcopy {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 0.5rem;
  font-style: italic;
}
*/
.hero-microcopy {
  font-size: 0.78rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-style: italic;
}
.hero-microcopy::before { content: '↳'; }

.hero-right {
  display: flex; align-items: center; justify-content: center;
}
.hero-visual {
  width: 100%; max-width: 420px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 2rem;
  backdrop-filter: blur(10px);
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-stat {
  background: rgba(255,255,255,0.05);
  border-radius: 12px; padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--verde-claro); line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.hero-stat.wide {
  grid-column: 1/-1;
  background: rgba(76,175,80,0.1);
  border-color: rgba(76,175,80,0.2);
  display: flex; align-items: center; gap: 1rem;
}
.hero-stat.wide .hero-stat-num { font-size: 1.5rem; }
.hero-badge {
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 8px; padding: 0.4rem 0.8rem;
  font-size: 0.7rem; color: #A5D6A7;
  font-weight: 500;
}

/* ---- SECTION GENERIC ---- */
section { padding: 6rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--verde-claro); font-weight: 600;
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--verde-claro); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15; font-weight: 700;
  margin-bottom: 1.5rem;
}

/* ---- QUÉ ES ---- */
#que-es { background: var(--gris-suave); }
.que-es-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.que-es-text p {
  font-size: 1.02rem; line-height: 1.85;
  color: var(--texto-suave); margin-bottom: 1.2rem;
}
.que-es-icons {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  margin-top: 2rem;
}
.icon-chip {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--blanco); border: 1px solid #E0E7E0;
  border-radius: 100px; padding: 0.45rem 1rem;
  font-size: 0.8rem; color: var(--verde-medio); font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.2s;
}
.icon-chip:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(46,125,50,0.12); }

.que-es-visual {
  position: relative;
}
.que-es-card {
  background: var(--blanco);
  border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(27,94,32,0.1);
  border: 1px solid rgba(76,175,80,0.15);
}
.que-es-card-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.que-es-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--verde-suave);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.que-es-card-title { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; }
.que-es-card-sub { font-size: 0.82rem; color: var(--texto-suave); }
.que-es-progress { margin-top: 1.5rem; }
.progress-item { margin-bottom: 1rem; }
.progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; color: var(--texto-suave); margin-bottom: 0.4rem;
}
.progress-bar {
  height: 6px; background: #E8F5E9; border-radius: 100px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--verde-claro), var(--verde-claro));
  border-radius: 100px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* ---- CÓMO FUNCIONA ---- */
#como-funciona { background: var(--blanco); }
.pasos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.paso-card {
  background: var(--gris-suave);
  border-radius: 16px; padding: 2rem;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
  cursor: default;
}
.paso-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--verde-claro), var(--verde-claro));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.paso-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27,94,32,0.12);
  border-color: rgba(76,175,80,0.2);
  background: var(--blanco);
}
.paso-card:hover::before { transform: scaleX(1); }
.paso-num {
  font-family: 'Fraunces', serif; font-size: 3.5rem;
  color: rgba(76,175,80,0.15); line-height: 1;
  font-weight: 700; margin-bottom: 0.5rem;
}
.paso-icon { font-size: 2rem; margin-bottom: 1rem; }
.paso-title { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.8rem; }
.paso-desc { font-size: 0.9rem; color: var(--texto-suave); line-height: 1.7; }

/* ---- ALERTAS ---- */
#alertas {
  background: linear-gradient(180deg, var(--verde-medio) 0%, var(--verde-oscuro) 100%);
  color: var(--blanco);
}
#alertas .section-title { color: var(--blanco); }
.alertas-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.alerta-featured {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 20px; padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.alerta-featured::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(76,175,80,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.alerta-featured:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.alerta-num-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(76,175,80,0.2); border: 1px solid rgba(76,175,80,0.4);
  color: #A5D6A7; padding: 0.3rem 0.9rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.alerta-num-badge.latest::before { content: '🔥 '; }
.alerta-featured-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 1rem; color: var(--blanco);
}
.alerta-featured-desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 600px; margin-bottom: 1.8rem;
}
.alerta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.alerta-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 1.6rem;
  transition: all 0.3s;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.alerta-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(76,175,80,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.alerta-card-title {
  font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600;
  color: var(--blanco); line-height: 1.3;
}
.alerta-card-desc { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; flex: 1; }

.btn-alerta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--verde-claro); color: var(--blanco);
  padding: 0.7rem 1.4rem; border-radius: 8px;
  font-size: 0.87rem; font-weight: 500; font-family: 'DM Sans', sans-serif;
  border: none; cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none; align-self: flex-start;
}
.btn-alerta:hover {
  background: var(--verde-claro-hover);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(76,175,80,0.4);
}
.btn-alerta .pdf-size {
  font-size: 0.72rem; opacity: 0.75; font-weight: 300;
  border-left: 1px solid rgba(255,255,255,0.3); padding-left: 0.5rem;
}
.btn-alerta-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}
.btn-alerta-ghost:hover {
  background: rgba(255,255,255,0.15);
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: skeleton-anim 1.5s infinite;
  border-radius: 4px;
}
@keyframes skeleton-anim { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.alertas-footer { text-align: center; margin-top: 3rem; }

/* ---- HALLAZGOS ---- */
#hallazgos { background: var(--beige); }
.hallazgos-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.hallazgo-item {
  background: var(--blanco);
  border-radius: 14px; padding: 1.6rem;
  display: flex; gap: 1rem; align-items: flex-start;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.hallazgo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,94,32,0.1);
  border-color: rgba(76,175,80,0.2);
}
.hallazgo-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--verde-suave);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.hallazgo-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.35rem; }
.hallazgo-desc { font-size: 0.83rem; color: var(--texto-suave); line-height: 1.6; }

/* ---- PROPUESTA ---- */
#propuesta {
  background: linear-gradient(135deg, var(--verde-suave) 0%, #DFF3DF 100%);
}
.propuesta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.propuesta-text .section-title { color: var(--verde-oscuro); }
.propuesta-lead {
  font-size: 1.1rem; color: var(--verde-medio);
  line-height: 1.7; font-style: italic;
  border-left: 3px solid var(--verde-claro);
  padding-left: 1.2rem; margin-bottom: 2rem;
}
.propuesta-list { list-style: none; margin-bottom: 2rem; }
.propuesta-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.8rem 0; border-bottom: 1px solid rgba(27,94,32,0.1);
  font-size: 0.92rem; color: var(--texto-suave); line-height: 1.5;
}
.propuesta-list li::before {
  content: '✓';
  color: var(--verde-claro); font-weight: 700; font-size: 0.9rem;
  width: 20px; flex-shrink: 0; margin-top: 1px;
}
.propuesta-visual {
  background: var(--blanco);
  border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(27,94,32,0.12);
}
.propuesta-visual-title {
  font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600;
  margin-bottom: 1.5rem; color: var(--verde-oscuro);
}
.propuesta-diagram {
  display: flex; flex-direction: column; gap: 0; align-items: center;
}
.diag-node {
  background: var(--verde-suave); border: 2px solid var(--verde-claro);
  border-radius: 10px; padding: 0.7rem 1.5rem;
  text-align: center; font-size: 0.82rem; font-weight: 600;
  color: var(--verde-oscuro); width: 100%;
}
.diag-node.center { background: var(--verde-oscuro); color: var(--blanco); border-color: var(--verde-oscuro); }
.diag-arrow { color: var(--verde-claro); font-size: 1.2rem; margin: 0.3rem 0; }
.diag-row { display: flex; gap: 1rem; width: 100%; }
.diag-row .diag-node { flex: 1; font-size: 0.75rem; }

/* ---- FOOTER ---- */
footer {
  background: #0A1F0C;
  color: rgba(255,255,255,0.75);
  padding: 5rem 5% 2.5rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: 'Fraunces', serif; font-size: 1.15rem;
  color: var(--blanco); margin-bottom: 0.5rem; font-weight: 600;
}
.footer-brand-desc { font-size: 0.83rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-col-title {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--verde-claro); font-weight: 600; margin-bottom: 1.2rem;
}
.footer-list { list-style: none; }
.footer-list li { font-size: 0.83rem; color: rgba(255,255,255,0.55); margin-bottom: 0.55rem; }
.footer-list a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-list a:hover { color: var(--verde-claro); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-text { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.eu-badge {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.5rem 1rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
}
.eu-stars { color: #FFD700; letter-spacing: -0.1em; }

/* ---- DIVIDER ORNAMENT ---- */
.divider-leaf {
  text-align: center; color: var(--verde-claro); opacity: 0.3;
  font-size: 1.2rem; margin: 0 auto 3rem;
  display: flex; justify-content: center; gap: 0.5rem;
  align-items: center;
}
.divider-leaf::before, .divider-leaf::after {
  content: ''; display: block; height: 1px; width: 80px;
  background: currentColor;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  /* .hero-content { grid-template-columns: 1fr; gap: 3rem; } */
    .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 7%
  }

  /* .hero-right { display: none; } */

    .hero-right {
    display: flex;
    order: -1;
    }

    .hero-image {
    max-width: 320px;
  }
  .que-es-grid { grid-template-columns: 1fr; }
  .pasos-grid { grid-template-columns: 1fr; }
  .propuesta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hallazgos-grid { grid-template-columns: 1fr; }
  .alerta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  nav {
    padding: 0.95rem 5%;
  }
  nav .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 5%;
    right: 5%;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem;
    background: rgba(13,59,19,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  }
  nav.menu-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255,255,255,0.08);
    color: var(--blanco);
  }
  .nav-links .nav-cta {
    text-align: center;
    padding: 0.85rem 1rem;
  }
}

/* ---- HAMBURGER (mobile) ---- */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px;
  background: transparent;
  border: 0;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blanco); border-radius: 2px; transition: all 0.3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) { .hamburger { display: flex; } }

/* ---- LOADING OVERLAY ---- */
.loading-toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--verde-oscuro); color: var(--blanco);
  padding: 0.9rem 1.5rem; border-radius: 10px;
  font-size: 0.87rem; font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  display: flex; align-items: center; gap: 0.5rem;
}
.loading-toast.show { transform: translateY(0); opacity: 1; }

/* ---- PDF MODAL ---- */
.pdf-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 22, 9, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9998;
}
.pdf-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pdf-modal-dialog {
  width: min(1100px, 100%);
  height: min(88vh, 900px);
  background: var(--blanco);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}
.pdf-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--verde-oscuro);
  color: var(--blanco);
}
.pdf-modal-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.pdf-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.pdf-modal-link,
.pdf-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--blanco);
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}
.pdf-modal-close {
  border: 0;
  background: rgba(255,255,255,0.14);
}
.pdf-modal-body {
  flex: 1;
  background: #DDE5DC;
}
.pdf-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--blanco);
}
@media (max-width: 768px) {
  .pdf-modal {
    padding: 0.75rem;
  }
  .pdf-modal-dialog {
    height: min(92vh, 100%);
    border-radius: 16px;
  }
  .pdf-modal-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ---- FLOATING CTA ---- */
.floating-cta {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(60px);
  background: var(--verde-oscuro);
  border: 1px solid rgba(76,175,80,0.3);
  color: var(--blanco); padding: 0.7rem 1.8rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.5rem; cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3); z-index: 50;
  text-decoration: none;
  opacity: 0; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.floating-cta.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.floating-cta:hover { background: var(--verde-medio); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
