
/* ==========================================
   ESTILOS DE 01_inicio.html
   ========================================== */

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

    :root {
      --ink: #1a1a18;
      --gold: #b8935a;
      --gold-lt: #d4af7a;
      --cream: #f7f3ee;
      --stone: #e8e2d9;
      --muted: #8a8074;
      --white: #ffffff;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Jost', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── HEADER ── */
    .site-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 30px 7vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 100;
    }

    .site-logo {
      font-family: var(--serif);
      font-size: 1.5rem;
      color: var(--white);
      text-decoration: none;
      font-weight: 400;
    }

    .site-logo em {
      color: var(--gold-lt);
      font-style: italic;
    }

    .site-nav {
      display: flex;
      gap: 25px;
      align-items: center;
    }

    .site-nav a {
      color: var(--white);
      text-decoration: none;
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.3s;
    }

    .site-nav a:hover {
      color: var(--gold-lt);
    }

    @media (max-width: 900px) {
      .site-header {
        flex-direction: column;
        gap: 20px;
      }

      .site-nav {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 620px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-photo {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #2c3e2d 0%, #1a2a1c 50%, #0d1a0e 100%);
      background-image: url('../img/hero_home.png');
      background-size: cover;
      background-position: center;
    }

    .hero-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 14, 10, 0.82) 0%, rgba(10, 14, 10, 0.3) 55%, rgba(10, 14, 10, 0.1) 100%);
    }

    /* Foto placeholder label - REMOVED */
    .hero-photo::before {
      display: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 0 7vw 7vh;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: var(--gold-lt);
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 0.9s 0.2s ease forwards;
    }

    .hero-eyebrow::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.08;
      letter-spacing: -0.01em;
      max-width: 760px;
      opacity: 0;
      animation: fadeUp 0.9s 0.4s ease forwards;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold-lt);
    }

    .hero-subtitle {
      margin-top: 22px;
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.65);
      max-width: 480px;
      opacity: 0;
      animation: fadeUp 0.9s 0.6s ease forwards;
    }

    .hero-cta {
      margin-top: 36px;
      display: inline-block;
      padding: 14px 38px;
      border: 1px solid var(--gold);
      color: var(--gold-lt);
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
      opacity: 0;
      animation: fadeUp 0.9s 0.8s ease forwards;
    }

    .hero-cta:hover {
      background: var(--gold);
      color: var(--ink);
    }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--ink);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid rgba(184, 147, 90, 0.3);
    }

    .stat {
      padding: 36px 40px;
      border-right: 1px solid rgba(184, 147, 90, 0.15);
      text-align: center;
      opacity: 0;
      animation: fadeUp 0.8s ease forwards;
    }

    .stat:nth-child(1) {
      animation-delay: 0.2s;
    }

    .stat:nth-child(2) {
      animation-delay: 0.35s;
    }

    .stat:nth-child(3) {
      animation-delay: 0.5s;
      border-right: none;
    }

    .stat-number {
      font-family: var(--serif);
      font-size: 2.6rem;
      font-weight: 300;
      color: var(--gold-lt);
      display: block;
      line-height: 1;
    }

    .stat-label {
      display: block;
      margin-top: 6px;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
    }

    /* ── SECTIONS ── */
    .section {
      padding: 100px 7vw;
    }

    .section-label {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }

    .section-label::after {
      content: '';
      flex: 1;
      max-width: 60px;
      height: 1px;
      background: var(--gold);
      opacity: 0.5;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: var(--ink);
      max-width: 620px;
    }

    .section-title em {
      font-style: italic;
      color: var(--gold);
    }

    /* ── ABOUT SPLIT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 100px 7vw;
      background: var(--white);
    }

    .about-text p {
      margin-top: 28px;
      font-size: 1.05rem;
      color: #4a4540;
      max-width: 520px;
    }

    .about-photo-block {
      position: relative;
    }

    .photo-frame {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, #2c3e2d 0%, #1a2a1c 100%);
      background-image: url('../img/about_foundation.png');
      background-size: cover;
      position: relative;
      overflow: hidden;
    }

    .photo-frame::before {
      display: none;
    }

    .photo-accent {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 120px;
      height: 120px;
      border: 1px solid var(--gold);
      opacity: 0.4;
      z-index: -1;
    }

    .photo-badge {
      position: absolute;
      bottom: 24px;
      left: -24px;
      background: var(--gold);
      color: var(--ink);
      padding: 16px 22px;
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.2;
      max-width: 180px;
    }

    /* ── PROGRAMS ── */
    .programs {
      background: var(--cream);
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 60px;
      background: var(--stone);
    }

    .program-card {
      background: var(--white);
      padding: 48px 36px;
      transition: transform 0.3s;
    }

    .program-card:hover {
      transform: translateY(-4px);
    }

    .program-icon {
      width: 40px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 28px;
    }

    .program-name {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--ink);
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .program-desc {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── QUOTE ── */
    .quote-section {
      background: var(--ink);
      padding: 100px 12vw;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .quote-section::before {
      content: '"';
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--serif);
      font-size: 24rem;
      color: rgba(184, 147, 90, 0.04);
      line-height: 1;
      pointer-events: none;
    }

    .quote-text {
      font-family: var(--serif);
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      font-weight: 300;
      font-style: italic;
      color: var(--white);
      line-height: 1.4;
      position: relative;
      z-index: 1;
    }

    .quote-source {
      margin-top: 32px;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      position: relative;
      z-index: 1;
    }

    /* ── RECOGNITION ── */
    .recognition-banner {
      background: var(--gold);
      padding: 28px 7vw;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .recognition-label {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ink);
      white-space: nowrap;
      opacity: 0.7;
    }

    .recognition-text {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--ink);
    }

    .recognition-divider {
      width: 1px;
      height: 30px;
      background: rgba(26, 26, 24, 0.2);
    }

    /* ── PHOTO GALLERY STRIP ── */
    .gallery-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      height: 320px;
      gap: 3px;
    }

    .gallery-cell {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
    }

    .gallery-cell:hover {
      transform: scale(1.05);
      z-index: 2;
    }

    .gallery-cell::before {
      display: none;
    }

    .gallery-cell:nth-child(1) {
      background-image: url('https://images.unsplash.com/photo-1513364776144-60967b0f800f?auto=format&fit=crop&q=80&w=800');
    }

    .gallery-cell:nth-child(2) {
      background-image: url('https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&q=80&w=800');
    }

    .gallery-cell:nth-child(3) {
      background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&q=80&w=800');
    }

    .gallery-cell:nth-child(4) {
      background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&q=80&w=800');
    }

    /* ── FOOTER ── */
    .site-footer {
      background: var(--ink);
      padding: 60px 7vw;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-copy {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--white);
    }

    .footer-socials {
      display: flex;
      gap: 16px;
    }

    .social-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      text-decoration: none;
      transition: background 0.3s, transform 0.3s, color 0.3s;
    }

    .social-icon:hover {
      background: var(--gold);
      color: var(--ink);
      transform: translateY(-4px);
    }

    .social-icon svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .programs-grid {
        grid-template-columns: 1fr;
      }

      .stats-bar {
        grid-template-columns: 1fr;
      }

      .stat {
        border-right: none;
        border-bottom: 1px solid rgba(184, 147, 90, 0.15);
      }

      .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
        height: 240px;
      }

      .recognition-banner {
        flex-direction: column;
        align-items: flex-start;
      }

      .recognition-divider {
        display: none;
      }
    }
/* ==========================================
   ESTILOS DE 02_resena_historica.html
   ========================================== */

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

  :root {
    --ink:     #1a1a18;
    --gold:    #b8935a;
    --gold-lt: #d4af7a;
    --cream:   #f7f3ee;
    --stone:   #e8e2d9;
    --muted:   #8a8074;
    --white:   #ffffff;
    --serif:   'Cormorant Garamond', Georgia, serif;
    --sans:    'Jost', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── HEADER ── */
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 7vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }

  .site-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
  }

  .site-logo em {
    color: var(--gold-lt);
    font-style: italic;
  }

  .site-nav {
    display: flex;
    gap: 25px;
    align-items: center;
  }

  .site-nav a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .site-nav a:hover {
    color: var(--gold-lt);
  }

  @media (max-width: 900px) {
    .site-header {
      flex-direction: column;
      gap: 20px;
    }
    .site-nav {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  /* ── PAGE HERO ── */
  .page-hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #1a2c1e 0%, #0d1a0e 60%, #1a1a18 100%);
    background-image: url('../img/history_archive.png');
    background-size: cover;
    background-position: center;
  }

  .page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,14,10,0.85) 40%, rgba(10,14,10,0.3) 100%);
  }

  .page-hero-bg::before {
    display: none;
  }

  .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 7vw;
  }

  .page-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.8s 0.2s ease forwards;
  }

  .page-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .page-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    max-width: 600px;
    opacity: 0;
    animation: fadeIn 0.8s 0.4s ease forwards;
  }

  .page-title em { font-style: italic; color: var(--gold-lt); }

  .page-subtitle {
    margin-top: 20px;
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 420px;
    opacity: 0;
    animation: fadeIn 0.8s 0.6s ease forwards;
  }

  /* ── INTRO TEXT ── */
  .intro-section {
    padding: 80px 7vw;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }

  .intro-left {
    position: sticky;
    top: 40px;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .section-label::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .section-title-sm {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
  }

  .section-title-sm em { font-style: italic; color: var(--gold); }

  .intro-body p {
    font-size: 1.05rem;
    color: #4a4540;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .intro-body p strong { color: var(--ink); font-weight: 500; }

  /* ── TIMELINE ── */
  .timeline-section {
    padding: 100px 7vw;
    background: var(--cream);
  }

  .timeline-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .timeline-header .section-label {
    justify-content: center;
  }

  .timeline-header .section-label::after { display: none; }

  .timeline-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--ink);
    margin-top: 12px;
  }

  .timeline-title em { font-style: italic; color: var(--gold); }

  .timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
  }

  /* Vertical line */
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--stone);
    transform: translateX(-50%);
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 120px;
    align-items: start;
  }

  .timeline-item > * {
    grid-row: 1;
  }

  .timeline-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; padding-right: 25px; }
  .timeline-item:nth-child(odd) .tl-empty   { grid-column: 3; }
  .timeline-item:nth-child(even) .tl-content { grid-column: 3; text-align: left; padding-left: 25px; }
  .timeline-item:nth-child(even) .tl-empty   { grid-column: 1; }

  .tl-dot {
    grid-column: 2;
    display: flex;
    align-items: center; /* Centra el punto verticalmente respecto a la altura del contenedor */
    justify-content: center;
    height: 2rem; /* Misma altura que el font-size del año para alineación perfecta */
    order: 2;
    position: relative;
    z-index: 2;
  }

  .tl-dot-inner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--cream);
    outline: 1px solid var(--gold);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(184, 147, 90, 0.1);
  }

  .tl-year {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin: 0 0 12px 0;
    display: block;
  }

  .tl-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink);
    margin: 8px 0 10px;
    line-height: 1.25;
  }

  .tl-text {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
  }

  .tl-content { padding-top: 0; }

  .tl-image {
    margin-top: 24px;
    display: inline-block;
    padding: 10px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--stone);
    border-radius: 2px;
    transition: transform 0.4s ease;
    max-width: 280px;
  }

  .tl-image img {
    display: block;
    width: 100%;
    height: auto;
    filter: sepia(0.2) contrast(1.1);
  }

  .timeline-item:nth-child(odd) .tl-image {
    transform: rotate(-2deg);
  }

  .timeline-item:nth-child(even) .tl-image {
    transform: rotate(2deg);
  }

  .tl-image:hover {
    transform: rotate(0) translateY(-5px);
    box-shadow: 0 20px 45px rgba(184, 147, 90, 0.15);
  }

  /* ── PHOTO ROW ── */
  .photo-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    height: 400px;
    gap: 3px;
    margin: 0;
  }

  .photo-row-cell {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: filter 0.5s ease;
  }

  .photo-row-cell:nth-child(1) { 
    background-image: url('https://images.unsplash.com/photo-1542810634-71277d95dcbb?auto=format&fit=crop&q=80&w=800'); 
  }
  .photo-row-cell:nth-child(2) { 
    background-image: url('https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?auto=format&fit=crop&q=80&w=800'); 
  }
  .photo-row-cell:nth-child(3) { 
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&q=80&w=800'); 
  }

  .photo-row-cell::before {
    display: none;
  }

  /* ── MILESTONE CALLOUT ── */
  .milestone {
    background: var(--ink);
    padding: 80px 7vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .milestone-text {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.35;
  }

  .milestone-text strong {
    font-style: normal;
    font-weight: 600;
    color: var(--gold-lt);
  }

  .milestone-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(184,147,90,0.2);
  }

  .ms-box {
    background: rgba(255,255,255,0.04);
    padding: 32px 28px;
    text-align: center;
  }

  .ms-number {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold-lt);
    display: block;
    line-height: 1;
  }

  .ms-label {
    display: block;
    margin-top: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
  }

  /* ── FOOTER ── */
  .site-footer {
    background: var(--ink);
    padding: 60px 7vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer-copy {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
  }

  .footer-socials {
    display: flex;
    gap: 16px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, color 0.3s;
  }

  .social-icon:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-4px);
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .intro-section { grid-template-columns: 1fr; gap: 32px; }
    .intro-left { position: static; }
    .timeline::before { left: 20px; }
    .timeline-item { grid-template-columns: 40px 1fr; }
    .timeline-item:nth-child(odd) .tl-content,
    .timeline-item:nth-child(even) .tl-content { grid-column: 2; text-align: left; padding: 0 0 0 20px; order: 2; }
    .timeline-item:nth-child(odd) .tl-empty,
    .timeline-item:nth-child(even) .tl-empty   { display: none; }
    .tl-dot { grid-column: 1; }
    .photo-row { grid-template-columns: 1fr; height: auto; }
    .photo-row-cell { height: 200px; }
    .milestone { grid-template-columns: 1fr; }
    .milestone-stats { grid-template-columns: 1fr 1fr; }
  }
/* ==========================================
   ESTILOS DE 03_transparencia_alianzas.html
   ========================================== */

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

  :root {
    --ink:     #1a1a18;
    --gold:    #b8935a;
    --gold-lt: #d4af7a;
    --cream:   #f7f3ee;
    --stone:   #e8e2d9;
    --muted:   #8a8074;
    --white:   #ffffff;
    --serif:   'Cormorant Garamond', Georgia, serif;
    --sans:    'Jost', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── HEADER ── */
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 7vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }

  .site-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
  }

  .site-logo em {
    color: var(--gold-lt);
    font-style: italic;
  }

  .site-nav {
    display: flex;
    gap: 25px;
    align-items: center;
  }

  .site-nav a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .site-nav a:hover {
    color: var(--gold-lt);
  }

  @media (max-width: 900px) {
    .site-header {
      flex-direction: column;
      gap: 20px;
    }
    .site-nav {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  /* ── PAGE HERO ── */
  .page-hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #1a1a18 0%, #0d1a0e 60%, #1a2c1e 100%);
    background-image: url('../img/transparency_hero.png');
    background-size: cover;
    background-position: center;
  }

  .page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,14,10,0.9) 30%, rgba(10,14,10,0.2) 100%);
  }

  .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 7vw;
  }

  .page-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 0.8s 0.2s ease forwards;
  }

  .page-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .page-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    max-width: 650px;
    opacity: 0;
    animation: fadeIn 0.8s 0.4s ease forwards;
  }

  .page-title em { font-style: italic; color: var(--gold-lt); }

  .page-subtitle {
    margin-top: 22px;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeIn 0.8s 0.6s ease forwards;
  }

  /* ── PILLARS BAND ── */
  .pillars-band {
    background: var(--gold);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: rgba(26,26,24,0.15);
  }

  .pillar {
    background: var(--gold);
    padding: 36px 40px;
    text-align: center;
  }

  .pillar-num {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
    display: block;
    opacity: 0.4;
  }

  .pillar-name {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
  }

  /* ── SECTIONS ── */
  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .section-label::after {
    content: '';
    flex: 1;
    max-width: 50px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  /* ── LEGAL FRAMEWORK ── */
  .legal-section {
    background: var(--white);
    padding: 100px 7vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .legal-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
  }

  .legal-title em { font-style: italic; color: var(--gold); }

  .legal-body p {
    font-size: 1rem;
    color: #4a4540;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .legal-body p strong { color: var(--ink); font-weight: 500; }

  /* ── DONATION CTA ── */
  .donation-section {
    background: linear-gradient(135deg, #1a2c1e 0%, #0d1a0e 100%);
    padding: 80px 7vw;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
  }

  .donation-text {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.35;
  }

  .donation-text strong {
    font-style: normal;
    font-weight: 600;
    color: var(--gold-lt);
  }

  .donation-info {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(184,147,90,0.3);
    padding: 32px 36px;
    min-width: 260px;
  }

  .donation-info-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }

  .donation-info-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
  }

  .donation-info-text strong { color: var(--white); font-weight: 500; }

  /* ── ALLIANCES ── */
  .alliances-section {
    background: var(--cream);
    padding: 100px 7vw;
  }

  .alliances-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }

  .alliances-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
  }

  .alliances-title em { font-style: italic; color: var(--gold); }

  .alliances-intro {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
  }

  .alliances-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--stone);
  }

  .alliance-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    transition: transform 0.3s;
  }

  .alliance-card:hover { transform: translateY(-3px); }

  .alliance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 36px;
    width: 32px;
    height: 2px;
    background: var(--gold);
  }

  .alliance-type {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-top: 18px;
    margin-bottom: 10px;
  }

  .alliance-name {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .alliance-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── SPONSORSHIP / APADRINAMIENTO ── */
  .sponsorship-section {
    background: var(--ink);
    padding: 100px 7vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .sp-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .sp-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .sp-title em { font-style: italic; color: var(--gold-lt); }

  .sp-body {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
  }

  .sp-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(184,147,90,0.15);
  }

  .sp-item {
    background: rgba(255,255,255,0.03);
    padding: 28px 24px;
    text-align: center;
  }

  .sp-item-icon {
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 14px;
  }

  .sp-item-name {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  /* ── FOOTER ── */
  .site-footer {
    background: var(--ink);
    padding: 60px 7vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer-copy {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
  }

  .footer-socials {
    display: flex;
    gap: 16px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, color 0.3s;
  }

  .social-icon:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-4px);
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .page-hero { grid-template-columns: 1fr; }
    .hero-right { height: 260px; }
    .pillars-band { grid-template-columns: 1fr; }
    .legal-section { grid-template-columns: 1fr; gap: 36px; }
    .donation-section { grid-template-columns: 1fr; }
    .alliances-header { grid-template-columns: 1fr; }
    .alliances-grid { grid-template-columns: 1fr; }
    .sponsorship-section { grid-template-columns: 1fr; }
    .sp-items { grid-template-columns: 1fr 1fr; }
  }
/* ==========================================
   ESTILOS DE 04_mision.html
   ========================================== */

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

  :root {
    --ink:     #1a1a18;
    --gold:    #b8935a;
    --gold-lt: #d4af7a;
    --cream:   #f7f3ee;
    --stone:   #e8e2d9;
    --muted:   #8a8074;
    --white:   #ffffff;
    --serif:   'Cormorant Garamond', Georgia, serif;
    --sans:    'Jost', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── HEADER ── */
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 7vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }

  .site-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
  }

  .site-logo em {
    color: var(--gold-lt);
    font-style: italic;
  }

  .site-nav {
    display: flex;
    gap: 25px;
    align-items: center;
  }

  .site-nav a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .site-nav a:hover {
    color: var(--gold-lt);
  }

  @media (max-width: 900px) {
    .site-header {
      flex-direction: column;
      gap: 20px;
    }
    .site-nav {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  /* ── FULL SCREEN HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a2c1e 0%, #0d1a10 50%, #0a0d0a 100%);
    background-image: url('../img/mission_impact.png');
    background-size: cover;
    background-position: center;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(10,14,10,0.55) 0%, rgba(10,14,10,0.88) 100%);
  }

  .hero-bg::before {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 7vw;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.9s 0.2s ease forwards;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
  }

  .hero-mission {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.9s 0.4s ease forwards;
  }

  .hero-mission em {
    font-style: italic;
    color: var(--gold-lt);
  }

  .hero-mission strong {
    font-weight: 600;
    font-style: normal;
  }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.9s 1s ease forwards;
  }

  .scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  }

  /* ── MISSION STATEMENT ── */
  .mission-statement {
    background: var(--white);
    padding: 100px 7vw;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    align-items: start;
  }

  .ms-side {
    position: sticky;
    top: 40px;
  }

  .ms-numeral {
    font-family: var(--serif);
    font-size: 8rem;
    font-weight: 300;
    color: var(--stone);
    line-height: 1;
    display: block;
  }

  .ms-word {
    display: block;
    margin-top: -10px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .ms-body {
    padding-top: 12px;
  }

  .ms-headline {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 32px;
  }

  .ms-headline em { font-style: italic; color: var(--gold); }

  .ms-body p {
    font-size: 1.05rem;
    color: #4a4540;
    line-height: 1.85;
    margin-bottom: 18px;
    max-width: 620px;
  }

  .ms-body p strong { color: var(--ink); font-weight: 500; }

  /* ── POPULATION SERVED ── */
  .population-section {
    background: var(--cream);
    padding: 100px 7vw;
  }

  .pop-header {
    margin-bottom: 60px;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .section-label::after {
    content: '';
    flex: 1;
    max-width: 50px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .pop-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    max-width: 560px;
  }

  .pop-title em { font-style: italic; color: var(--gold); }

  .population-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--stone);
    margin-top: 0;
  }

  .pop-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
  }

  .pop-card:hover { transform: translateY(-4px); }

  .pop-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }

  .pop-card:hover::before { transform: scaleX(1); }

  .pop-card-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 24px;
  }

  .pop-card-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .pop-card-text {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── PHOTO INTERLUDE ── */
  .photo-interlude {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: 440px;
    gap: 3px;
  }

  .photo-main {
    background-image: url('../img/hero_home.png');
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .photo-main::before {
    display: none;
  }

  .photo-aside {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
  }

  .photo-sm {
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .photo-sm:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1529390079861-591de354faf5?auto=format&fit=crop&q=80&w=600'); }
  .photo-sm:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&q=80&w=600'); }

  .photo-sm::before {
    display: none;
  }

  /* ── PRINCIPLES ── */
  .principles-section {
    background: var(--ink);
    padding: 100px 7vw;
  }

  .principles-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }

  .pr-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
  }

  .pr-title em { font-style: italic; color: var(--gold-lt); }

  .pr-intro {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
  }

  .principles-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(184,147,90,0.15);
  }

  .principle-item {
    background: rgba(255,255,255,0.03);
    padding: 40px 36px;
    transition: background 0.3s;
  }

  .principle-item:hover { background: rgba(255,255,255,0.07); }

  .principle-number {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(184,147,90,0.25);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
  }

  .principle-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .principle-text {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.65;
  }

  /* ── FAMILY FOCUS ── */
  .family-section {
    background: var(--gold);
    padding: 80px 7vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .family-text {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.4;
  }

  .family-text strong { font-style: normal; font-weight: 600; }

  .family-caption {
    font-size: 0.85rem;
    color: var(--ink);
    opacity: 0.6;
    line-height: 1.7;
    max-width: 380px;
  }

  /* ── FOOTER ── */
  .site-footer {
    background: var(--ink);
    padding: 60px 7vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer-copy {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
  }

  .footer-socials {
    display: flex;
    gap: 16px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, color 0.3s;
  }

  .social-icon:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-4px);
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .mission-statement { grid-template-columns: 1fr; gap: 24px; }
    .ms-numeral { font-size: 5rem; }
    .population-grid { grid-template-columns: 1fr; }
    .photo-interlude { grid-template-columns: 1fr; height: auto; }
    .photo-main { height: 260px; }
    .photo-aside { grid-template-rows: auto; grid-template-columns: 1fr 1fr; gap: 3px; }
    .photo-sm { height: 160px; }
    .principles-header { grid-template-columns: 1fr; }
    .principles-list { grid-template-columns: 1fr; }
    .family-section { grid-template-columns: 1fr; }
  }
/* ==========================================
   ESTILOS DE 05_vision.html
   ========================================== */

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

  :root {
    --ink:     #1a1a18;
    --gold:    #b8935a;
    --gold-lt: #d4af7a;
    --cream:   #f7f3ee;
    --stone:   #e8e2d9;
    --muted:   #8a8074;
    --white:   #ffffff;
    --serif:   'Cormorant Garamond', Georgia, serif;
    --sans:    'Jost', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── HEADER ── */
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 7vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }

  .site-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
  }

  .site-logo em {
    color: var(--gold-lt);
    font-style: italic;
  }

  .site-nav {
    display: flex;
    gap: 25px;
    align-items: center;
  }

  .site-nav a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .site-nav a:hover {
    color: var(--gold-lt);
  }

  @media (max-width: 900px) {
    .site-header {
      flex-direction: column;
      gap: 20px;
    }
    .site-nav {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  /* ── MANIFESTO HERO ── */
  .manifesto-hero {
    background: var(--ink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 7vw;
    position: relative;
    overflow: hidden;
  }

  /* Decorative large text */
  .manifesto-hero::before {
    content: '2050';
    position: absolute;
    right: -2vw;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--serif);
    font-size: 28vw;
    font-weight: 300;
    color: rgba(184,147,90,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s 0.2s ease forwards;
  }

  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .vision-statement {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.01em;
    max-width: 820px;
    opacity: 0;
    animation: fadeUp 0.9s 0.4s ease forwards;
  }

  .vision-statement em {
    font-style: italic;
    color: var(--gold-lt);
  }

  .vision-statement strong {
    font-weight: 600;
  }

  .hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 48px 0;
    opacity: 0;
    animation: fadeUp 0.9s 0.6s ease forwards;
  }

  .hero-body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.9s 0.8s ease forwards;
  }

  /* ── FULL WIDTH PHOTO ── */
  .full-photo {
    height: 520px;
    background: linear-gradient(135deg, #2c3e2d 0%, #1a2a1c 100%);
    background-image: url('../img/vision_future.png');
    background-size: cover;
    background-position: center top;
    position: relative;
    overflow: hidden;
  }

  .full-photo::before {
    display: none;
  }

  .full-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--cream), transparent);
  }

  /* ── VISION DETAILS ── */
  .vision-body {
    background: var(--cream);
    padding: 100px 7vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .vision-left {
    position: sticky;
    top: 40px;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .section-label::after {
    content: '';
    flex: 1;
    max-width: 50px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .vision-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
  }

  .vision-title em { font-style: italic; color: var(--gold); }

  .vision-right p {
    font-size: 1.05rem;
    color: #4a4540;
    line-height: 1.85;
    margin-bottom: 22px;
  }

  .vision-right p strong { color: var(--ink); font-weight: 500; }

  /* ── PROFILE ASPIRATION ── */
  .profile-section {
    background: var(--white);
    padding: 100px 7vw;
  }

  .profile-header {
    text-align: center;
    margin-bottom: 72px;
  }

  .profile-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--ink);
    margin-top: 16px;
  }

  .profile-title em { font-style: italic; color: var(--gold); }

  .profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--stone);
  }

  .profile-card {
    background: var(--white);
    padding: 44px 28px;
    text-align: center;
    transition: background 0.3s;
  }

  .profile-card:hover { background: var(--cream); }

  .profile-glyph {
    width: 48px;
    height: 48px;
    border: 1px solid var(--stone);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .profile-glyph::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--gold);
  }

  .profile-attr {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .profile-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
  }

  /* ── GEOGRAPHICAL VISION ── */
  .geo-section {
    background: var(--ink);
    padding: 100px 7vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .geo-text {}

  .geo-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
  }

  .geo-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 28px;
  }

  .geo-title em { font-style: italic; color: var(--gold-lt); }

  .geo-body {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    max-width: 480px;
  }

  .geo-scope {
    display: grid;
    gap: 2px;
    background: rgba(184,147,90,0.15);
  }

  .scope-item {
    background: rgba(255,255,255,0.03);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: center;
    transition: background 0.3s;
  }

  .scope-item:hover { background: rgba(255,255,255,0.06); }

  .scope-num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: rgba(184,147,90,0.4);
    line-height: 1;
  }

  .scope-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
  }

  .scope-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
  }

  /* ── PHOTO 2 ── */
  .photo-pair {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    height: 400px;
    gap: 3px;
  }

  .photo-pair-cell {
    background: linear-gradient(135deg, #2c3e2d, #1a2a1c);
    position: relative;
  }

  .photo-pair-cell:nth-child(2) { background: linear-gradient(135deg, #3a2c1a, #2a1c0a); }

  .photo-pair-cell::before {
    content: '[ FOTO AQUÍ ]';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.12);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* ── CLOSING STATEMENT ── */
  .closing {
    background: var(--gold);
    padding: 100px 7vw;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .closing::before {
    content: 'BHE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif);
    font-size: 22vw;
    font-weight: 300;
    color: rgba(26,26,24,0.04);
    line-height: 1;
    pointer-events: none;
  }

  .closing-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.15;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }

  .closing-title em {
    font-style: italic;
    display: block;
  }

  .closing-sub {
    margin-top: 28px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.5;
    position: relative;
    z-index: 1;
  }

  /* ── GENERATION PROMISE ── */
  .promise-section {
    background: var(--cream);
    padding: 100px 7vw;
  }

  .promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--stone);
    margin-top: 60px;
  }

  .promise-card {
    background: var(--white);
    padding: 48px 36px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
  }

  .promise-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
  }

  .promise-tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
  }

  .promise-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.2;
  }

  .promise-text {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
  }

  .promise-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
  }

  .promise-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.15;
  }

  .promise-title em { font-style: italic; color: var(--gold); }

  .promise-intro {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.75;
  }

  /* ── FOOTER ── */
  .site-footer {
    background: var(--ink);
    padding: 60px 7vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer-copy {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
  }

  .footer-socials {
    display: flex;
    gap: 16px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, color 0.3s;
  }

  .social-icon:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-4px);
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  /* ── SCROLL TO TOP ── */
  .scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s, background 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }

  .scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .scroll-to-top:hover {
    background: var(--white);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 147, 90, 0.4);
  }

  .scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .manifesto-hero::before { display: none; }
    .vision-body { grid-template-columns: 1fr; gap: 36px; }
    .vision-left { position: static; }
    .profile-grid { grid-template-columns: 1fr 1fr; }
    .geo-section { grid-template-columns: 1fr; }
    .photo-pair { grid-template-columns: 1fr; height: auto; }
    .photo-pair-cell { height: 220px; }
    .promise-header-row { grid-template-columns: 1fr; gap: 24px; }
    .promise-grid { grid-template-columns: 1fr; }
  }
/* ==========================================
   PREMIUM UX/UI ENHANCEMENTS (GLOBAL)
   ========================================== */

/* 1. Custom Selection (Resaltado de texto) */
::selection {
  background: var(--gold);
  color: var(--ink);
}

/* 2. Custom Scrollbar (Barra de desplazamiento premium) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-lt);
}

/* 3. Enhanced Nav Hover (Línea animada bajo los links) */
.site-nav a {
  position: relative;
  padding-bottom: 4px;
}
.site-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: var(--gold-lt);
  transition: width 0.3s ease, left 0.3s ease;
}
.site-nav a:hover::after {
  width: 100%;
  left: 0;
}

/* 4. Smooth Button Interactions */
a[class*="-cta"], .btn {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease !important;
}
a[class*="-cta"]::before, .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
a[class*="-cta"]:hover::before, .btn:hover::before {
  left: 0;
}
a[class*="-cta"]:hover {
  color: var(--ink) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 8px 24px rgba(184, 147, 90, 0.2) !important;
  transform: translateY(-3px) !important;
}

/* 5. Elegant Card Hover Effects (Programas, Servicios) */
.program-card, .pillar-card {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease !important;
  border: 1px solid transparent;
}
.program-card:hover, .pillar-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(26, 26, 24, 0.08) !important;
  border-color: rgba(184, 147, 90, 0.3) !important;
  background: #ffffff !important;
}

/* 6. Gallery / Photo Hover Effects (Zoom suave) */
.gallery-cell, .photo-row-cell, .photo-frame {
  overflow: hidden;
  transition: transform 0.5s ease;
}
.gallery-cell::after, .photo-row-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.gallery-cell:hover::after, .photo-row-cell:hover::after {
  opacity: 1;
}

/* 7. Timeline Enhancements */
.timeline-item {
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.timeline-item:hover .tl-dot-inner {
  transform: scale(1.4);
  background: var(--ink);
  border-color: var(--gold);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.timeline-item:hover .tl-content {
  transform: translateX(4px);
  transition: transform 0.4s ease;
}
.timeline-item:nth-child(odd):hover .tl-content {
  transform: translateX(-4px);
}

/* 8. Text Refinements */
p {
  color: #3a3632;
}
.section-title, .page-title, .timeline-title {
  text-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* 9. Social Icons Pop */
.social-icon {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.social-icon:hover {
  box-shadow: 0 8px 24px rgba(184, 147, 90, 0.4);
}

