/* ── REVEAL ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ── CARD BASE ───────────────────────────────────────────── */
.card { background: var(--s1); border: 1px solid var(--border); transition: border-color .25s, box-shadow .25s; }
.card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(0,0,0,.06); }

/* ── TEASER CARDS ────────────────────────────────────────── */
.teaser-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 3px; }
.teaser-card { background: var(--s1); padding: 40px 32px; text-decoration: none; color: var(--text); display: flex; flex-direction: column; border: 1px solid var(--border); border-top: 3px solid transparent; transition: border-color .25s, box-shadow .25s, transform .25s; }
.teaser-card:hover { border-top-color: var(--red); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.teaser-card-icon { font-size: 1.8rem; margin-bottom: 20px; }
.teaser-card-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.5rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px; }
.teaser-card-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; flex: 1; }
.teaser-card-link { margin-top: 24px; font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 6px; }
.teaser-card:hover .teaser-card-link-arrow { transform: translateX(4px); }
.teaser-card-link-arrow { transition: transform .2s; }

/* ── HERO ────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 55% 45%; padding-top: var(--nav-h); background: linear-gradient(to right, rgba(255,255,255,.88) 30%, rgba(255,255,255,.35) 55%, rgba(255,255,255,.0) 70%), url('../assets/fotos/tecnica-linea-de-tiro-palermoE.webp') 58% 40% / cover no-repeat}
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px 80px 5vw; z-index: 2; }
.hero-eyebrow { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ""; display: block; width: 24px; height: 2px; background: var(--red); }
.hero-title { font-family: "Oswald", sans-serif; font-weight: 700; font-size: clamp(4.5rem, 10vw, 9rem); text-transform: uppercase; line-height: 0.88; color: var(--black); margin-bottom: 12px; }
.hero-title .et { color: var(--red); margin-left: -3px; }
.hero-tagline { font-family: "Oswald", sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(26, 26, 26, 0.753); margin-bottom: 28px; }
.hero-sub { font-size: 1.2rem; line-height: 1.75; color: rgba(26,26,26,.55); max-width: 420px; margin-bottom: 40px; }
.hero-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 44px; }
.chip { font-family: "Montserrat", sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 12px; border: 1px solid rgba(26,26,26,.15); color: rgba(26,26,26,.45); }
.chip.c-red    { background: var(--red);    color: #fff;         border-color: var(--red); }
.chip.c-blue   { background: var(--blue);   color: #000;         border-color: var(--blue); }
.chip.c-black  { background: var(--black);  color: #fff;         border-color: var(--black); }
.chip.c-white  { background: var(--white);  color: #000;         border-color: var(--black); }
.chip.c-gold   { background: var(--gold);   color: var(--black); border-color: var(--gold); }
.chip.c-cobalt { background: var(--cobalt); color: var(--white); border-color: var(--cobalt); }
.chip.c-green  { background: var(--green);  color: var(--white); border-color: var(--green); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.hero-right::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(242,226,5,.09) 1.5px, transparent 1.5px); background-size: 20px 20px; }
.hero-diana { position: absolute; right: -6vw; top: 50%; transform: translateY(-50%); width: min(88vh, 88vw); height: min(88vh, 88vw); opacity: 0.59; animation: spin 90s linear infinite; pointer-events: none; }

.hero-diana2 { position: relative; right: -50vw; top: -30vh; transform: translateY(-90%); width: min(88vh, 88vw); height: min(88vh, 88vw); opacity: 0.1; animation: spin 90s linear infinite; pointer-events: none; z-index: 0;




}
@keyframes spin {
  from {transform: translateY(-50%) rotate(0deg);}
  to {transform: translateY(-50%) rotate(360deg);}
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: var(--black); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 28px 5vw; border-right: 1px solid rgba(255,255,255,.06); }
.stat-item:last-child { border-right: none; }
.stat-n { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 3rem; color: var(--gold); line-height: 1; }
.stat-l { font-family: "Montserrat", sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,.493); margin-top: 4px; }

/* ── HOME INTRO ──────────────────────────────────────────── */
.home-intro { background: var(--s1); }
.home-intro-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; }
.intro-img-wrap { position: relative; }
.intro-photo { width: 100%; aspect-ratio: 4/5; background: var(--light-gray); display: flex; align-items: center; justify-content: center; font-size: 6rem; opacity: 0.85; position: relative; overflow: hidden; }
.intro-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.95; }
/* ── INSTAGRAM SKELETON + EMBED ──────────────────────────── */
.ig-skeleton { width: 100%; min-width: 328px; max-width: 400px; border: 1px solid var(--border); border-radius: 3px; overflow: hidden; line-height: 0; }
.ig-sk-thumb { width: 100%; height: auto; display: block; }
.ig-embed-frame { width: 100%; min-width: 328px; max-width: 400px; border: 1px solid #ddd; border-radius: 3px; display: block; }
.ig-attribution { font-size: .75rem; color: var(--muted); margin-top: 8px; display: flex; align-items: center; gap: 5px; }
.home-stat-row { display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.home-stat-n { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 2.8rem; color: var(--gold); line-height: 1; }
.home-stat-l { font-family: "Montserrat", sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* ── HOME TEASERS ────────────────────────────────────────── */
.home-teasers { background: var(--bg); }
.home-teasers-inner { max-width: 1200px; margin: 0 auto; }

/* ── HOME NIVELES ────────────────────────────────────────── */
.home-niveles { background: var(--black); position: relative; width: 100%; overflow: hidden;}
.home-niveles-inner { max-width: 1200px; margin: 0 auto; }
.niveles-diana {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem 1rem 1 rem;

}
.niveles-sub { font-size: 1.2rem; line-height: 1.75; color: rgba(255,255,255,.4); max-width: 500px; margin-bottom: 48px; }
.niveles-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 3px; }
.nv { padding: 28px 16px; display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden; border-top: 4px solid transparent; }
.nv-blanca  { background: var(--white);  border: 1px solid #ddd; border-top: 4px solid #ccc; }
.nv-negra   { background: #2a2a2a;       border-top-color: #1a1a1a; }
.nv-azul    { background: #e3f4fb;       border-top-color: #59b5d9; }
.nv-roja    { background: #fdeaea;       border-top-color: #d93636; }
.nv-dorada  { background: #fef9e0;       border-top-color: #f2c438; }
.nv-senior  { background: linear-gradient(135deg, #fdeaea 0%, #fef9e0 100%); border-top-color: #f2e205; }
.nv-dot { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.nv-name { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; color: var(--black); margin-bottom: 4px; }
.nv-dist { font-size: 0.9rem; color: var(--black); line-height: 1.5; }
.niv-dist { font-size: 0.9rem; color: rgba(255,255,255,.3); line-height: 1.5; }
.nv-negra .nv-name, .nv-negra .nv-dist { color: rgba(255,255,255,0.8); }

/* ── HOME SEDES ──────────────────────────────────────────── */
.home-sedes { background: var(--s2); }
.home-sedes-inner { max-width: 1200px; margin: 0 auto; }
.sedes-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 40px; }
.sede-mini { background: var(--s1); padding: 40px 36px; border-top: 4px solid var(--red); transition: box-shadow 0.2s, transform 0.2s; }
.sede-mini:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.sede-mini-num  { font-family: "Oswald", sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.sede-mini-name { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 1.8rem; text-transform: uppercase; color: var(--black); line-height: 1; margin-bottom: 4px; }
.sede-mini-addr { font-family: "Montserrat", sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.sede-mini-hrs { font-size: 0.9rem; color: var(--muted); line-height: 1.85; }
.sede-mini-hrs strong { color: var(--black); font-weight: 600; }
.sede-mini-hrs .kids { display: inline-block; margin-top: 8px; font-family: "Montserrat", sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); border: 1px solid rgba(217,54,54,.3); padding: 3px 8px; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band { background: var(--gold); padding: 64px 5vw; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band-title { font-family: "Oswald", sans-serif; font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; color: var(--black); line-height: 1; margin-bottom: 6px; }
.cta-band-sub { font-size: 1.2rem; color: rgba(26,26,26,.55); }

/* ── CARRUSEL ────────────────────────────────────────────── */
.carousel-wrap { width: 100%; height: 800px; overflow: hidden; background: var(--black); position: relative; }
.carousel-track { display: flex; height: 100%; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); justify-content: center; border: 2px solid var(--green);}
.carousel-slide { height: 100%; position: relative; flex-shrink: 0; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,.55) 0%, transparent 50%); pointer-events: none; }
.slide-label { position: absolute; bottom: 32px; left: 40px; font-family: "Montserrat", sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.slide-label span { color: var(--gold); margin-right: 8px; }
.carousel-dots { position: absolute; bottom: 24px; right: 40px; display: flex; gap: 8px; align-items: center; }
.carousel-dot { width: 24px; height: 3px; background: rgba(255,255,255,.25); cursor: pointer; transition: background .3s, width .3s; }
.carousel-dot.active { background: var(--red); width: 40px; }
.carousel-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 20px; pointer-events: none; }
.carousel-arrow { width: 44px; height: 44px; background: rgba(26,26,26,.6); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: all; transition: background .2s, border-color .2s; }
.carousel-arrow:hover { background: var(--red); border-color: var(--red); }

/* ── REVIEWS ─────────────────────────────────────────────── */
.home-reviews { background: var(--black); padding: 96px 5vw; }
.rev-inner { max-width: 1200px; margin: 0 auto; }
.rev-tag { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.rev-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); flex-shrink: 0; }
.rev-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(2.2rem, 4.5vw, 3.5rem); text-transform: uppercase; color: var(--white); margin-bottom: 14px; line-height: 1; }
.rev-title span { color: var(--gold); }
.rev-subtitle { font-size: 1.2rem; color: rgba(255,255,255,.65); margin-bottom: 48px; line-height: 1.75; max-width: 520px; }
.rev-sede-tabs { display: flex; gap: 3px; margin-bottom: 32px; }
.rev-tab { font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 10px 20px; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.65); background: transparent; cursor: pointer; transition: all .2s; }
.rev-tab.active { background: var(--red); border-color: var(--red); color: #fff; }
.rev-tab:hover:not(.active) { border-color: rgba(255,255,255,.5); color: rgba(255,255,255,.85); }
.rev-summary { display: flex; align-items: center; gap: 40px; margin-bottom: 40px; padding: 28px 32px; border: 1px solid rgba(255,255,255,.07); flex-wrap: wrap; }
.rev-score-big { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 4.5rem; line-height: 1; color: var(--gold); }
.rev-stars { display: flex; gap: 4px; margin: 6px 0; }
.rev-count { font-size: .8rem; color: rgba(255,255,255,.6); font-family: 'Montserrat', sans-serif; letter-spacing: .1em; }
.rev-bars { flex: 1; min-width: 200px; }
.rev-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rev-bar-label { font-family: 'Montserrat', sans-serif; font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.6); width: 14px; text-align: right; }
.rev-bar-track { flex: 1; height: 4px; background: rgba(255,255,255,.08); }
.rev-bar-fill { height: 100%; background: var(--gold); transition: width .6s ease; }
.rev-bar-pct { font-family: 'Montserrat', sans-serif; font-size: .62rem; color: rgba(255,255,255,.6); width: 36px; }
.rev-gmaps-btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 10px 20px; background: transparent; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.7); text-decoration: none; transition: all .2s; cursor: pointer; white-space: nowrap; }
.rev-gmaps-btn:hover { border-color: var(--gold); color: var(--gold); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.rev-card { background: rgba(255,255,255,.03); padding: 28px 24px; border: 1px solid rgba(255,255,255,.06); border-top: 3px solid transparent; transition: border-top-color .2s, background .2s; }
.rev-card:hover { border-top-color: var(--red); background: rgba(255,255,255,.05); }
.rev-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rev-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1rem; background: var(--red); color: #fff; flex-shrink: 0; }
.rev-avatar.gold { background: var(--gold); color: var(--black); }
.rev-avatar.blue { background: var(--blue); color: #fff; }
.rev-name { font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 2px; }
.rev-date { font-family: 'Montserrat', sans-serif; font-size: .62rem; color: rgba(255,255,255,.6); letter-spacing: .06em; }
.rev-card-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.rev-text { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.75; }
.rev-sede-badge { display: inline-block; margin-top: 16px; font-family: 'Montserrat', sans-serif; font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 3px 8px; border: 1px solid rgba(232,101,101,.5); color: #e86565; }
.rev-cta-row { display: flex; gap: 12px; align-items: center; margin-top: 40px; flex-wrap: wrap; }
.rev-cta-note { font-family: 'Montserrat', sans-serif; font-size: .65rem; color: rgba(255,255,255,.5); letter-spacing: .1em; }
.sede-hidden { display: none; }

/* ── TIMELINE ────────────────────────────────────────────── */
.etca-timeline { display: flex; align-items: center; gap: 0; padding: 20px 0 16px; font-family: 'Montserrat', sans-serif; width: 100%; margin-bottom: 1rem; }
.tl-node { display: flex; flex-direction: column; align-items: flex-start; flex-shrink: 0; }
.tl-node-mid { align-items: center; }
.tl-node-end { align-items: flex-end; }
.tl-year { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1; margin-bottom: 6px; }
.tl-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(26,26,26,.4); }
.tl-line { height: 2px; flex: 1; margin-bottom: 22px; align-self: flex-end; }

/* ── HISTORIA ────────────────────────────────────────────── */
.historia { background: var(--s1); }
.historia-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto; }
.historia-img-stack { position: sticky; top: calc(var(--nav-h) + 32px); }
.historia-img-main { width: 100%; aspect-ratio: 3/4; background: var(--light-gray); position: relative; overflow: hidden; }
.historia-img-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.historia-img-main::after { content: '🏹'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 6rem; opacity: .15; }
.historia-img-accent { position: absolute; bottom: 200px; right: -20px; width: 36%; aspect-ratio: 1; background: var(--red); display: flex; align-items: center; justify-content: center; }
.historia-img-year { font-family: 'Oswald', sans-serif; font-size: 4.5rem; font-weight: 700; color: #fff; line-height: 1; letter-spacing: .02em; text-align: center; }
.historia-img-year span { display: block; font-size: .75rem; letter-spacing: .2em; font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; }
.historia-body { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }
.historia-body strong { color: var(--text); font-weight: 600; }

/* ── VALORES ─────────────────────────────────────────────── */
.valores { background: var(--bg); }
.valores-inner { max-width: 1200px; margin: 0 auto; }
.valores-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.valores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.valor-item { padding: 36px 28px; background: var(--s1); border: 1px solid var(--border); border-top: 3px solid transparent; transition: border-color .25s, box-shadow .25s, transform .25s; }
.valor-item:hover { border-top-color: var(--red); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.valor-num { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; color: rgba(217,54,54,.15); line-height: 1; margin-bottom: 10px; }
.valor-title { font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; color: var(--text); }
.valor-desc { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* ── BENEFICIOS ──────────────────────────────────────────── */
.beneficios { background: var(--s1); }
.beneficios-inner { max-width: 1200px; margin: 0 auto; }
.beneficios-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; margin-top: 48px; }
.beneficio-card { padding: 32px 28px; background: var(--bg); border: 1px solid var(--border); display: flex; gap: 20px; align-items: flex-start; transition: background .2s, box-shadow .2s, transform .2s; }
.beneficio-card:hover { background: var(--s1); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.beneficio-icon { font-size: 1.8rem; flex-shrink: 0; }
.beneficio-title { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; letter-spacing: .04em; color: var(--text); }
.beneficio-text { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── PARA QUIÉN ──────────────────────────────────────────── */
.para-quien { background: var(--bg); }
.para-quien-inner { max-width: 1200px; margin: 0 auto; }
.pq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.pq-card { background: var(--s1); padding: 36px 28px; border: 1px solid var(--border); border-top: 4px solid transparent; position: relative; overflow: hidden; }
.pq-card.gold { border-top-color: var(--gold); }
.pq-card.red  { border-top-color: var(--red); }
.pq-card.blue { border-top-color: var(--blue); }
.pq-title { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; color: var(--text); }
.pq-age { font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.pq-card.gold .pq-age { color: var(--amber); }
.pq-card.blue .pq-age { color: var(--blue); }
.pq-desc { font-size: 1rem; color: var(--muted); line-height: 1.75; }
.pq-list { list-style: none; margin-top: 16px; }
.pq-list li { font-size: 1rem; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; }
.pq-list li::before { content: '→'; color: var(--red); flex-shrink: 0; }

/* ── GALERÍA ─────────────────────────────────────────────── */
.galeria { background: var(--s1); }
.galeria-inner { max-width: 1200px; margin: 0 auto; }
.galeria-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 3px; margin-top: 40px; }
.galeria-item { overflow: hidden; background: var(--s2); aspect-ratio: 4/3; position: relative; }
.galeria-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.95) saturate(1.05); transition: filter .4s, transform .4s; }
.galeria-item:hover img { filter: brightness(1) saturate(1.15); transform: scale(1.04); }
.galeria-item-ph { width: 100%; height: 100%; min-height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: .35; }

/* ── CTA BLOCK ───────────────────────────────────────────── */
.cta-block { background: linear-gradient(135deg, var(--gold), var(--amber));  padding: 24px 5vw; text-align: center; position: relative; overflow: hidden; }

.cta-block::after { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(26,26,26,0.25)" stroke-width="2" fill="none"/></svg>') repeat; opacity: 0.3; pointer-events: none; }
.cta-block > * { position: relative; }
.cta-block .section-tag { justify-content: center; }
.cta-block .section-title { color: var(--black); margin-bottom: 16px; }
.cta-block .section-lead { color: var(--text); margin: 0 auto 36px; text-align: center; }
.cta-block-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

