:root {
  --navy: #141a52;
  --navy-deep: #0c1038;
  --navy-soft: #2a338a;
  --blue-light: #e9ecf7;
  --blue-tint: #f5f6fb;
  --white: #ffffff;
  --ink: #1b1d2b;
  --muted: #5b5f75;
  --line: rgba(20, 26, 82, 0.12);
  --radius: 16px;
  --shadow: 0 24px 60px rgba(20, 26, 82, 0.18);
  --font-display: "Archivo", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; margin: 0 0 .5em; letter-spacing: -.01em; }
.icon { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .75rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-shield { width: 40px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { white-space: nowrap; font-family: var(--font-display); font-weight: 900; font-size: 1.05rem; color: var(--navy); text-transform: uppercase; letter-spacing: .02em; }
.brand-sub { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }
.site-nav { display: flex; align-items: center; gap: 1.25rem; font-weight: 500; font-size: .92rem; }
.site-nav a { text-decoration: none; color: var(--navy); opacity: .8; white-space: nowrap; }
.site-nav a:hover { opacity: 1; }
.nav-ig {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .9rem; border-radius: 999px;
  background: var(--navy); color: var(--white) !important; opacity: 1 !important;
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center;
  max-width: 1150px; margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4.5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(20, 26, 82, .035) 60px 120px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 90%);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .85rem; border-radius: 999px;
  background: var(--blue-light); color: var(--navy);
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--navy-soft);
  box-shadow: 0 0 0 0 rgba(42, 51, 138, .5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42, 51, 138, .5); }
  70% { box-shadow: 0 0 0 10px rgba(42, 51, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(42, 51, 138, 0); }
}
.hero-since {
  margin: 0 0 .5rem; font-weight: 600; font-size: .9rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--navy-soft);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--navy); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.hero-art { display: flex; justify-content: center; }
.hero-shield {
  width: min(100%, 300px); height: auto;
  filter: drop-shadow(0 24px 40px rgba(20, 26, 82, .28));
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: 999px;
  font-weight: 600; text-decoration: none; font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 10px 24px rgba(20, 26, 82, .28); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-ghost { color: var(--navy); background: transparent; border: 1.5px solid rgba(20, 26, 82, .25); }
.btn-outline { color: var(--navy); border: 1.5px solid var(--navy); background: transparent; }
.btn-light { background: var(--white); color: var(--navy); }
.btn-ghost-light { color: var(--white); border: 1.5px solid rgba(255, 255, 255, .5); }

/* Stats */
.stats { background: var(--navy); color: var(--white); }
.stats-inner {
  max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 1.75rem clamp(1rem, 4vw, 3rem);
}
.stat { text-align: center; padding: .5rem 1rem; border-left: 1px solid rgba(255, 255, 255, .15); }
.stat:first-child { border-left: 0; }
.stat strong { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1; }
.stat span { font-size: .85rem; opacity: .8; }

/* Sections */
.section { padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 3rem); }
.section-inner { max-width: 1150px; margin: 0 auto; }
.section-inner.narrow { max-width: 760px; }
.section-inner.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.section-alt { background: var(--blue-tint); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, .8); }
.kicker {
  margin: 0 0 .5rem; font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--navy-soft);
}
.kicker-light { color: rgba(255, 255, 255, .7); }
.section h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); color: var(--navy); font-weight: 900; }
.section p { color: var(--muted); font-size: 1.05rem; }
.section-lead { max-width: 40rem; }
.section .btn { margin-top: .75rem; }

/* Activities */
.activities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.community-note {
  margin: 1.75rem 0 0; padding: 1rem 1.25rem; border-radius: 12px;
  background: var(--blue-light); font-size: .95rem !important; color: var(--navy) !important;
}
.activity {
  position: relative; overflow: hidden;
  padding: 1.4rem 1.3rem; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--line);
  transition: transform .15s ease, box-shadow .15s ease;
}
.activity::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg, var(--navy), var(--navy-soft));
}
.activity:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(20, 26, 82, .12); }
.activity-icon {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-light); font-size: 1.5rem;
}
.activity h3 { font-size: 1.1rem; margin: .8rem 0 .3rem; color: var(--navy); font-weight: 700; }
.activity p { font-size: .92rem; margin: 0; }
.activity strong { color: var(--navy); font-weight: 600; }

/* Teatro */
.event-list {
  list-style: none; margin: 0; padding: 1.5rem; border-radius: var(--radius);
  background: var(--blue-tint); border: 1px solid var(--line);
  display: grid; gap: .75rem;
}
.event-list li {
  display: flex; align-items: center; gap: .8rem;
  padding: .85rem 1rem; border-radius: 12px; background: var(--white);
  font-weight: 500; color: var(--navy);
}
.event-list li span { font-size: 1.3rem; }

/* Contact */
.address-list { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .5rem; }
.address-list li {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1rem; border-radius: 12px; background: rgba(255, 255, 255, .08);
  color: var(--white); font-size: 1rem;
}
.address-list strong { font-weight: 600; }
.contact-shield { width: min(100%, 200px); height: auto; justify-self: center; opacity: .95; }

/* Footer */
.site-footer {
  background: var(--navy-deep); color: rgba(255, 255, 255, .85);
  padding: 2.5rem clamp(1rem, 4vw, 3rem);
  border-top: 4px solid var(--white);
}
.footer-inner { max-width: 1150px; margin: 0 auto; text-align: center; }
.footer-inner p { margin: .35rem 0; }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white); }
.footer-build {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem; border-radius: 999px;
  background: rgba(255, 255, 255, .08); font-size: .9rem;
}
.footer-build .dot { background: var(--white); box-shadow: none; animation: none; }
.footer-build strong { color: var(--white); }
.footer-copy { font-size: .8rem; color: rgba(255, 255, 255, .5); margin-top: 1rem !important; }

/* Responsive */
@media (max-width: 960px) {
  .activities { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 1rem; }
  .stat:nth-child(3) { border-left: 0; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-art { order: -1; }
  .hero-shield { width: min(60%, 220px); }
  .lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .section-inner.split { grid-template-columns: 1fr; }
  .contact-shield { display: none; }
}
@media (max-width: 640px) {
  .site-nav a:not(.nav-ig) { display: none; }
  .brand-sub { display: none; }
  .activities { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .dot { animation: none; }
  .btn:hover, .activity:hover { transform: none; }
}
