/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --gray:      #363636;
  --orange:    #D9593C;
  --wine:      #803723;
  --terracota: #B75C3C;
  --cream:     #FAF7F4;
  --light:     #F3EDE7;
  --white:     #FFFFFF;
  --dark:      #1a0a04;
  --canela:    'Georgia', 'Times New Roman', serif;
  --poppins:   'Poppins', sans-serif;
  --max:       1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--poppins); color: var(--gray); background: var(--white); -webkit-font-smoothing: antialiased; }
img  { display: block; width: 100%; object-fit: cover; }
a    { text-decoration: none; color: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ─── Animations ─── */
.fade-up    { opacity: 0; transform: translateY(28px);  transition: opacity .7s ease, transform .7s ease; }
.fade-left  { opacity: 0; transform: translateX(-28px); transition: opacity .7s ease, transform .7s ease; }
.fade-right { opacity: 0; transform: translateX(28px);  transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--poppins); font-size: .79rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: 50px; border: none;
  cursor: pointer; transition: all .22s ease;
}
.btn-primary      { background: var(--orange); color: #fff; }
.btn-primary:hover{ background: var(--wine); }
.btn-outline      { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline:hover{ background: rgba(255,255,255,.1); border-color: #fff; }
.btn-dark         { background: var(--gray); color: #fff; }
.btn-dark:hover   { background: #111; }
.btn-light        { background: var(--white); color: var(--orange); }
.btn-light:hover  { background: var(--cream); }

/* ═══════════════════════════════════════
   HEADER — styles provided by header.css
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   STAGE 1 — HERO
═══════════════════════════════════════ */
.pg-about #hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.pg-about .hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, #5c2718 0%, #2a1008 45%, #1a0804 100%);
}
.pg-about .hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(217,89,60,.25), transparent),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(183,92,60,.15), transparent);
}
.pg-about .hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 52px, rgba(255,255,255,.013) 52px, rgba(255,255,255,.013) 53px);
}

/* LEFT — text column */
.pg-about .hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3.5rem) clamp(3rem, 5vw, 5rem) clamp(1.25rem, 6vw, 5rem);
}
.pg-about #hero .hero-breadcrumb {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 2rem;
}
.pg-about #hero .hero-breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.pg-about #hero .hero-breadcrumb a:hover { color: #fff; }
.pg-about #hero .hero-breadcrumb .sep,
.pg-about #hero .hero-breadcrumb .current { color: var(--terracota); opacity: 1; }
.pg-about #hero .hero-eyebrow {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem;
}
.pg-about #hero .hero-eyebrow::before { display: none; }
.pg-about #hero .hero-eyebrow span {
  font-size: .67rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--terracota);
}
.pg-about #hero .hero-title {
  font-family: var(--canela); font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: normal; font-style: italic; color: #ffffff !important;
  line-height: 1.06; margin-bottom: 1.4rem; letter-spacing: -.01em;
}
.pg-about #hero .hero-title strong { font-style: normal; font-weight: normal; color: var(--terracota); }
.pg-about #hero .hero-subtitle {
  font-size: clamp(.88rem, 1.5vw, 1.02rem); line-height: 1.78;
  color: rgba(255,255,255,.85); max-width: 430px; margin-bottom: 2.5rem;
}
.pg-about #hero .hero-breadcrumb,
.pg-about #hero .hero-breadcrumb a { color: rgba(255,255,255,.6); }
.pg-about #hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.pg-about #hero .btn-outline:hover { border-color: var(--terracota); color: var(--terracota); }

/* RIGHT — photo column */
.pg-about .hero-visual { position: relative; overflow: hidden; }
.pg-about .hero-visual-inner {
  width: 100%; height: 100%; min-height: 580px;
  background: #1a0804;
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
}
.pg-about .about-hero-photo {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.pg-about .hero-visual-inner::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25) 0%,
    transparent 35%,
    transparent 55%,
    rgba(0,0,0,.55) 100%
  );
}
.pg-about .hero-visual-caption { position: relative; z-index: 4; padding: 2rem 2.5rem; }
.pg-about .hero-visual-caption p {
  font-family: var(--canela); font-size: 1.1rem; font-style: italic;
  color: rgba(255,255,255,.72); line-height: 1.5; max-width: 280px; margin-bottom: .6rem;
}
.pg-about .hero-visual-caption span {
  font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--terracota); display: flex; align-items: center; gap: .5rem;
}
.pg-about .hero-visual-caption span::before { content: ''; width: 18px; height: 1px; background: var(--terracota); }

/* Scroll cue */
.pg-about .hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
.pg-about .hero-scroll span { font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.pg-about .hero-scroll-arrow { width: 24px; height: 24px; border-right: 1.5px solid rgba(255,255,255,.3); border-bottom: 1.5px solid rgba(255,255,255,.3); transform: rotate(45deg); margin-top: -6px; }

/* Responsive */
@media (max-width: 860px) {
  .pg-about #hero { grid-template-columns: 1fr; }
  .pg-about .hero-visual { display: none; }
  .pg-about .hero-content { padding: 8rem 2rem 6rem; }
}

/* ═══════════════════════════════════════
   STAGE 2 — FUNDADORAS
═══════════════════════════════════════ */
#fundadoras {
  background: var(--cream); padding: clamp(5rem, 9vw, 9rem) 0; overflow: hidden;
}

/* Header (centered) */
.fundadoras-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.fundadoras-header .eyebrow { display: inline-block; font-size: .67rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--terracota); margin-bottom: 1rem; }
.fundadoras-header h2 { font-family: var(--canela); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: normal; color: var(--gray); line-height: 1.15; margin-bottom: 1.25rem; }
.fundadoras-header h2 em { font-style: italic; color: var(--terracota); }
.fundadoras-header p { font-size: .95rem; line-height: 1.85; color: var(--gray); opacity: .7; }

/* 5-card grid */
.founders-photos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.founder-card {
  border-radius: 4px; overflow: hidden; position: relative;
  transition: transform .28s, box-shadow .28s;
  cursor: pointer; background: none; border: none; padding: 0; text-align: left;
}
.founder-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(54,54,54,.14); }
.founder-card:hover .founder-click-hint { opacity: 1; }

.founder-photo {
  aspect-ratio: 3/4; position: relative;
  background: linear-gradient(155deg, #5c2818, #2a1008);
}
.founder-photo.p2 { background: linear-gradient(155deg, var(--orange), var(--wine)); }
.founder-photo.p3 { background: linear-gradient(155deg, var(--terracota), #3a1a0c); }
.founder-photo.p4 { background: linear-gradient(155deg, var(--gray), #5a2416); }
.founder-photo.p5 { background: linear-gradient(155deg, #7a3820, #3a1a0c); }
.founder-photo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(255,255,255,.06), transparent);
}
.portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; z-index: 1; }
.founder-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.founder-placeholder svg { width: 60px; opacity: .15; }

/* "+" hint icon on hover */
.founder-click-hint {
  position: absolute; top: .75rem; right: .75rem; z-index: 3;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; opacity: 0; transition: opacity .25s;
}

.founder-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(to top, rgba(26,8,4,.88) 0%, transparent 100%);
  padding: 2rem 1rem .9rem;
}
.founder-name { font-family: var(--canela); font-size: .95rem; color: #fff; font-weight: normal; margin-bottom: .2rem; }
.founder-role { font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--terracota); }

/* ═══════════════════════════════════════
   MEMBER BIO MODAL
═══════════════════════════════════════ */
.member-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(26,8,4,.72); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; animation: modalFadeIn .25s ease;
}
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
.member-modal {
  background: var(--white); border-radius: 8px; overflow: hidden;
  max-width: 580px; width: 100%; max-height: 82vh;
  position: relative; display: flex; flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  animation: modalSlideUp .28s ease;
}
@keyframes modalSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.member-modal-close {
  position: absolute; top: .75rem; right: .75rem; z-index: 10;
  width: 30px; height: 30px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(54,54,54,.09); color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.member-modal-close:hover { background: rgba(54,54,54,.18); }
.member-modal-inner { display: grid; grid-template-columns: 160px 1fr; flex: 1; min-height: 0; align-items: start; }
.member-modal-photo {
  position: relative; aspect-ratio: 3/4; width: 160px; flex-shrink: 0;
  background: linear-gradient(155deg, #5c2818, #2a1008);
}
.member-modal-photo.p2 { background: linear-gradient(155deg, var(--orange), var(--wine)); }
.member-modal-photo.p3 { background: linear-gradient(155deg, var(--terracota), #3a1a0c); }
.member-modal-photo.p4 { background: linear-gradient(155deg, var(--gray), #5a2416); }
.member-modal-photo.p5 { background: linear-gradient(155deg, #7a3820, #3a1a0c); }
.member-modal-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.member-modal-body {
  padding: 1.5rem 1.75rem 1.5rem 1.25rem;
  display: flex; flex-direction: column; justify-content: flex-start;
  overflow-y: auto; min-height: 0;
}
.member-modal-role { font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--terracota); margin-bottom: .4rem; }
.member-modal-name { font-family: var(--canela); font-size: 1.45rem; font-weight: normal; color: var(--gray); line-height: 1.15; margin-bottom: .9rem; }
.member-modal-bio { font-size: .78rem; line-height: 1.72; color: var(--gray); opacity: .75; }

/* ═══════════════════════════════════════
   STAGE 3 — PILARES
═══════════════════════════════════════ */
#pilares { background: var(--cream); padding: clamp(5rem, 9vw, 9rem) 0; position: relative; overflow: hidden; }
.pilares-header { text-align: center; margin-bottom: 3rem; }
.pilares-header .eyebrow { display: inline-block; font-size: .67rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--terracota); margin-bottom: 1rem; }
.pilares-header h2 { font-family: var(--canela); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: normal; color: var(--gray); line-height: 1.12; margin-bottom: 1rem; }
.pilares-header p { font-size: .88rem; line-height: 1.8; color: var(--gray); opacity: .6; max-width: 600px; margin: 0 auto; }

.pilares-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem; margin-bottom: 3rem; }
.pilar-item {
  background: var(--white); border-radius: 8px;
  padding: 2rem 1.5rem 1.75rem;
  display: flex; flex-direction: column; align-items: flex-start;
  border-top: 3px solid var(--terracota);
  box-shadow: 0 2px 16px rgba(54,54,54,.06);
  transition: transform .26s, box-shadow .26s;
  position: relative; overflow: hidden;
}
.pilar-item:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(54,54,54,.11); }
.pilar-item:nth-child(2) { border-top-color: var(--orange); }
.pilar-item:nth-child(3) { border-top-color: #c06840; }
.pilar-item:nth-child(4) { border-top-color: var(--wine); }
.pilar-item:nth-child(5) { border-top-color: #8a6040; }

.pilar-num {
  font-family: var(--canela); font-size: 3.2rem; font-weight: normal; line-height: 1;
  color: var(--terracota); opacity: .18; margin-bottom: .6rem;
  display: block; letter-spacing: -.02em;
}
.pilar-item:nth-child(2) .pilar-num { color: var(--orange); }
.pilar-item:nth-child(3) .pilar-num { color: #c06840; }
.pilar-item:nth-child(4) .pilar-num { color: var(--wine); }
.pilar-item:nth-child(5) .pilar-num { color: #8a6040; }

.pilar-icon-svg {
  width: 40px; height: 40px; border-radius: 8px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(183,92,60,.08); color: var(--terracota);
}
.pilar-item:nth-child(2) .pilar-icon-svg { background: rgba(217,89,60,.08); color: var(--orange); }
.pilar-item:nth-child(3) .pilar-icon-svg { background: rgba(192,104,64,.08); color: #c06840; }
.pilar-item:nth-child(4) .pilar-icon-svg { background: rgba(128,55,35,.08); color: var(--wine); }
.pilar-item:nth-child(5) .pilar-icon-svg { background: rgba(138,96,64,.08); color: #8a6040; }

.pilar-item h3 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); margin-bottom: .6rem; }
.pilar-item p  { font-size: .8rem; line-height: 1.72; color: var(--gray); opacity: .62; }

.pilares-cta { text-align: center; }

/* ═══════════════════════════════════════
   STAGE 4 — IMPACTO
═══════════════════════════════════════ */
#impacto { background: var(--white); padding: clamp(5rem, 9vw, 9rem) 0; overflow: hidden; }
.impacto-header { text-align: center; margin-bottom: 4rem; }
.impacto-header .eyebrow { display: inline-block; font-size: .67rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--terracota); margin-bottom: 1rem; }
.impacto-header h2 { font-family: var(--canela); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: normal; color: var(--gray); line-height: 1.12; margin-bottom: .9rem; }
.impacto-header p { font-size: .95rem; line-height: 1.78; color: var(--gray); opacity: .65; max-width: 560px; margin: 0 auto; }

.impacto-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 3rem; }
.stat-card {
  border-radius: 4px; padding: 2.5rem 1.75rem;
  display: flex; flex-direction: column; align-items: flex-start;
  border-top: 3px solid var(--orange);
  background: var(--cream);
  transition: transform .25s, box-shadow .25s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(54,54,54,.08); }
.stat-card:nth-child(2) { border-top-color: var(--terracota); }
.stat-card:nth-child(3) { border-top-color: var(--wine); }
.stat-card:nth-child(4) { border-top-color: var(--gray); }

.stat-num {
  font-family: var(--canela); font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: normal; color: var(--orange); line-height: 1; margin-bottom: .6rem;
}
.stat-card:nth-child(2) .stat-num { color: var(--terracota); }
.stat-card:nth-child(3) .stat-num { color: var(--wine); }
.stat-card:nth-child(4) .stat-num { color: var(--gray); }
.stat-label { font-size: .86rem; line-height: 1.6; color: var(--gray); opacity: .68; }
.stat-label strong { color: var(--gray); opacity: 1; font-weight: 600; }

/* Timeline strip */
.impacto-timeline { display: flex; align-items: flex-start; gap: 0; position: relative; padding: 2rem 0; }
.impacto-timeline::before { content: ''; position: absolute; top: 2.6rem; left: 0; right: 0; height: 2px; background: rgba(54,54,54,.1); }
.timeline-item { flex: 1; position: relative; padding-right: 1.5rem; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--orange); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--orange); margin-bottom: 1.25rem; position: relative; z-index: 1; }
.timeline-item:nth-child(2) .timeline-dot { background: var(--terracota); box-shadow: 0 0 0 2px var(--terracota); }
.timeline-item:nth-child(3) .timeline-dot { background: var(--wine); box-shadow: 0 0 0 2px var(--wine); }
.timeline-year { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: .35rem; }
.timeline-item:nth-child(2) .timeline-year { color: var(--terracota); }
.timeline-item:nth-child(3) .timeline-year { color: var(--wine); }
.timeline-text { font-size: .82rem; line-height: 1.65; color: var(--gray); opacity: .68; }


/* ═══════════════════════════════════════
   STAGE 4B — ANNOUNCEMENTS
════════════════════════════════════════ */
.pg-about #announcements { background: var(--cream); padding: clamp(4rem, 7vw, 7rem) 0; overflow: hidden; }
.pg-about .ann-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.pg-about .ann-text { display: flex; flex-direction: column; gap: .9rem; }
.pg-about .ann-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--gray); line-height: 1.2; }
.pg-about .ann-lead { font-size: .97rem; line-height: 1.8; color: var(--gray); font-weight: 500; }
.pg-about .ann-body { font-size: .88rem; line-height: 1.8; color: var(--gray); opacity: .68; }
.pg-about .ann-tagline { font-size: .95rem; font-weight: 700; color: var(--orange); margin-top: .4rem; letter-spacing: .01em; }
.pg-about .ann-badges { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
.pg-about .ann-badge-card {
  background: #fff; border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(54,54,54,.08);
  display: flex; align-items: center; justify-content: center;
  width: 100%; transition: transform .25s ease, box-shadow .25s ease;
}
.pg-about .ann-badge-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(54,54,54,.13); }
.pg-about .ann-badge-card img { width: 100% !important; max-width: 260px !important; height: auto !important; object-fit: contain !important; border-radius: 8px; }

/* ═══════════════════════════════════════
   STAGE 5 — HISTORIAS DE ÉXITO / CARRUSEL
═══════════════════════════════════════ */
#historias { background: var(--cream); padding: clamp(5rem, 9vw, 9rem) 0; overflow: hidden; }
.historias-header { text-align: center; margin-bottom: 3.5rem; }
.historias-header .eyebrow { display: inline-block; font-size: .67rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--terracota); margin-bottom: 1rem; }
.historias-header h1 { font-family: var(--canela); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: normal; color: var(--gray); line-height: 1.1; margin-bottom: .5rem; }
.historias-header h2 { font-family: var(--canela); font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: normal; font-style: italic; color: var(--terracota); }

.carousel-wrap { position: relative; }
.carousel-track {
  display: flex; gap: 1.5rem; overflow: hidden;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.story-slide {
  flex: 0 0 calc(33.333% - 1rem); min-width: 0;
  background: var(--white); border-radius: 6px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(54,54,54,.06);
  transition: transform .25s, box-shadow .25s;
}
.story-slide:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(54,54,54,.1); }

.story-photo {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
}
.story-photo-bg { width: 100%; height: 100%; transition: transform .45s; }
.story-slide:hover .story-photo-bg { transform: scale(1.04); }
.story-photo-bg.sp1 { background: linear-gradient(135deg, #5c2818, var(--wine)); }
.story-photo-bg.sp2 { background: linear-gradient(135deg, var(--orange), #8a3822); }
.story-photo-bg.sp3 { background: linear-gradient(135deg, var(--terracota), #3a1a0c); }
.story-photo-bg.sp4 { background: linear-gradient(135deg, var(--gray), #5a2416); }
.story-photo-bg.sp5 { background: linear-gradient(135deg, #6a2e1a, var(--orange)); }

.story-body { padding: 1.75rem 1.75rem 2rem; }
.story-name { font-family: var(--canela); font-size: 1.15rem; font-weight: normal; color: var(--gray); margin-bottom: .25rem; }
.story-role { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: .9rem; }
.story-desc { font-size: .84rem; line-height: 1.72; color: var(--gray); opacity: .65; }

/* Carousel controls */
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
.carousel-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(54,54,54,.2);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gray); transition: all .2s;
}
.carousel-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.carousel-dots { display: flex; gap: .45rem; }
.carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(54,54,54,.2); border: none; cursor: pointer; padding: 0;
  transition: background .2s, width .3s;
}
.carousel-dot.active { background: var(--orange); width: 20px; border-radius: 4px; }

/* ═══════════════════════════════════════
   STAGE 6 — TESTIMONIOS (MASONRY)
═══════════════════════════════════════ */
#testimonios { background: var(--dark); padding: clamp(5rem, 9vw, 9rem) 0; overflow: hidden; position: relative; }
#testimonios::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 100%, rgba(217,89,60,.14), transparent);
}
.testimonios-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.testimonios-header h1 { font-family: var(--canela); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: normal; color: var(--white); line-height: 1.15; max-width: 600px; margin: 0 auto; }
.testimonios-header .eyebrow { display: inline-block; font-size: .67rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--terracota); margin-bottom: 1rem; }

/* Masonry-style columns */
.testimonios-masonry {
  columns: 3; column-gap: 1.25rem;
  position: relative; z-index: 1;
}
.testimonio-bubble {
  break-inside: avoid; margin-bottom: 1.25rem;
  border-radius: 4px; padding: 1.75rem 1.75rem 1.5rem;
  transition: transform .22s;
}
.testimonio-bubble:hover { transform: translateY(-3px); }

.tb-orange { background: var(--orange); }
.tb-dark   { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.tb-terra  { background: var(--terracota); }
.tb-wine   { background: var(--wine); }
.tb-cream  { background: rgba(250,247,244,.06); border: 1px solid rgba(255,255,255,.06); }

.testimonio-bubble blockquote {
  font-family: var(--canela); font-style: italic;
  line-height: 1.55; margin-bottom: 1.25rem;
  font-size: clamp(.88rem, 1.5vw, 1rem);
  color: rgba(255,255,255,.88);
}
.tb-dark blockquote, .tb-cream blockquote { color: rgba(255,255,255,.72); }

.testimonio-author { display: flex; align-items: center; gap: .7rem; }
.ta-avatar { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; }
.tb-orange .ta-avatar { background: rgba(255,255,255,.25); }
.tb-dark   .ta-avatar { background: rgba(217,89,60,.3); }
.tb-terra  .ta-avatar { background: rgba(255,255,255,.25); }
.tb-wine   .ta-avatar { background: rgba(255,255,255,.25); }
.tb-cream  .ta-avatar { background: rgba(217,89,60,.2); }
.ta-name { font-size: .78rem; font-weight: 700; color: #fff; margin-bottom: .12rem; }
.ta-role { font-size: .65rem; letter-spacing: .06em; color: rgba(255,255,255,.5); }
.tb-dark .ta-name, .tb-cream .ta-name { color: rgba(255,255,255,.85); }

/* ═══════════════════════════════════════
   STAGE 7 — INVOLÚCRATE
═══════════════════════════════════════ */
#involucrate { background: var(--cream); padding: clamp(5rem, 9vw, 9rem) 0; overflow: hidden; }
.involucrate-header { text-align: center; margin-bottom: 3.5rem; }
.involucrate-header h1 { font-family: var(--canela); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: normal; color: var(--gray); line-height: 1.1; margin-bottom: .6rem; }
.involucrate-header h2 { font-family: var(--canela); font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: normal; font-style: italic; color: var(--terracota); }

.involucrate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.invol-card {
  border-radius: 6px; overflow: hidden; background: var(--white);
  box-shadow: 0 2px 16px rgba(54,54,54,.06);
  display: flex; flex-direction: column;
  transition: transform .28s, box-shadow .28s;
}
.invol-card:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(54,54,54,.11); }

.invol-photo {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
}
.invol-photo-bg {
  width: 100%; height: 100%;
  transition: transform .45s;
}
.invol-card:hover .invol-photo-bg { transform: scale(1.04); }
.invol-photo-bg.vol {
  background: url('/images/about/volunteers.jpg') center/cover no-repeat,
              linear-gradient(135deg, var(--terracota) 0%, #3a1a0c 100%);
}
.invol-photo-bg.don {
  background: url('/images/about/donors.jpeg') center/cover no-repeat,
              linear-gradient(135deg, var(--orange) 0%, var(--wine) 100%);
}
.invol-photo-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 60% 35%, rgba(255,255,255,.07), transparent);
}

.invol-photo-number {
  position: absolute; bottom: 1rem; right: 1.5rem;
  font-family: var(--canela); font-size: 5rem; font-style: italic;
  color: rgba(255,255,255,.1); line-height: 1; pointer-events: none;
}

.invol-body { padding: 2.25rem 2.25rem 2.5rem; flex: 1; display: flex; flex-direction: column; }
.invol-badge {
  display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .85rem;
}
.invol-card:nth-child(2) .invol-badge { color: var(--wine); }
.invol-body h3 { font-family: var(--canela); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: normal; color: var(--gray); margin-bottom: .9rem; line-height: 1.2; }
.invol-body p { font-size: .88rem; line-height: 1.78; color: var(--gray); opacity: .65; margin-bottom: 1.75rem; flex: 1; }
.invol-link {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--white); background: var(--orange);
  padding: .75rem 1.6rem; border-radius: 50px;
  transition: background .22s, transform .15s;
}
.invol-link:hover { background: var(--wine); transform: translateY(-1px); }
.invol-card:nth-child(2) .invol-link { background: var(--wine); }
.invol-card:nth-child(2) .invol-link:hover { background: #5a2515; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer { background: #1a0a04; color: var(--white); padding: clamp(3rem, 6vw, 5rem) 0 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .footer-logo { font-family: var(--canela); font-size: 1.35rem; color: var(--white); line-height: 1.2; margin-bottom: .8rem; }
.footer-brand .footer-logo em { display: block; font-family: var(--poppins); font-style: normal; font-size: .58rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--terracota); margin-top: 4px; }
.footer-tagline { font-size: .82rem; line-height: 1.72; color: rgba(255,255,255,.42); max-width: 220px; margin-bottom: 1.75rem; }
.footer-social { display: flex; gap: .55rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: .72rem; color: rgba(255,255,255,.55); font-weight: 600; transition: background .2s; }
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { font-size: .82rem; color: rgba(255,255,255,.52); transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.26); }
.footer-mission { font-family: var(--canela); font-size: .72rem; font-style: italic; color: rgba(255,255,255,.2); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .pilares-grid { grid-template-columns: repeat(3, 1fr); }
  .impacto-stats  { grid-template-columns: 1fr 1fr; }
  .testimonios-masonry { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .founders-photos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .founders-photos { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .story-slide { flex: 0 0 calc(80% - 1rem); }
  .involucrate-grid { grid-template-columns: 1fr; }
  .impacto-timeline { flex-direction: column; }
  .impacto-timeline::before { display: none; }
  .member-modal-inner { grid-template-columns: 130px 1fr; }
  .pg-about .ann-grid { grid-template-columns: 1fr; }
  .pg-about .ann-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .pg-about .ann-badge-card { max-width: 220px; }
}
@media (max-width: 560px) {
  .pilares-grid   { grid-template-columns: 1fr; }
  .impacto-stats  { grid-template-columns: 1fr; }
  .testimonios-masonry { columns: 1; }
  .founders-photos { grid-template-columns: repeat(2, 1fr); }
  .story-slide { flex: 0 0 calc(90% - 1rem); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .member-modal-overlay { padding: 1rem; }
  .member-modal-body { padding: 1.5rem; }
}