/* events.css — Fer Ariza · LA FAM · EL GÉNESIS landings (rediseño editorial) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: #060404; color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: #FF5B01; color: #000; }

:root {
  --bg: #060404;
  --bg-2: #0e0b0a;
  --bg-3: #141010;
  --orange: #FF5B01;
  --orange-h: #ff7733;
  --orange-dim: rgba(255,91,1,0.08);
  --gold: #D4AF37;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --muted: rgba(255,255,255,0.55);
  --muted-2: rgba(255,255,255,0.28);
  --fd: 'Anton', sans-serif;
  --fh: 'Bebas Neue', sans-serif;
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Film grain overlay (global) */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 9999; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6,4,4,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
}
.logo img { height: 34px; width: auto; opacity: 0.95; }
.nav-back {
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav-back:hover { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--orange); color: #fff; border: none;
  border-radius: 8px; padding: 16px 30px;
  font-family: var(--fh); font-size: 1rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 32px rgba(255,91,1,0.32);
  min-height: 52px;
}
.btn:hover {
  background: var(--orange-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(255,91,1,0.42);
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-arrow { font-size: 1.15rem; line-height: 1; transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,91,1,0.42);
  color: var(--orange);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,91,1,0.08); color: #fff; }
.btn-whatsapp { background: #25D366; box-shadow: 0 6px 32px rgba(37,211,102,0.32); }
.btn-whatsapp:hover { background: #1da851; box-shadow: 0 12px 48px rgba(37,211,102,0.42); }
.btn-cta { font-size: 1.05rem; padding: 18px 34px; }
.btn-block { display: flex; width: 100%; }

.redirect-notice {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  margin-top: 12px; max-width: 460px;
  margin-left: auto; margin-right: auto;
}
.urgency {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,91,1,0.16);
  color: #ffb380; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.04em;
}
.urgency::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 10px var(--orange);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(.7)} }

/* ---------- HERO (poster protagonista) ---------- */
.hero {
  position: relative;
  padding: 64px 24px 40px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 70% 12%, rgba(255,91,1,0.22) 0%, transparent 60%),
    radial-gradient(50% 40% at 10% 90%, rgba(212,175,55,0.10) 0%, transparent 60%);
  pointer-events: none;
}
/* Giant watermark behind everything */
.hero-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--fd);
  font-size: clamp(8rem, 26vw, 24rem);
  line-height: 0.8; letter-spacing: -0.02em;
  color: rgba(255,255,255,0.025);
  white-space: nowrap; pointer-events: none;
  z-index: 0; text-transform: uppercase;
}
.hero-grid {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
}
.hero-content { max-width: 580px; }
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--orange);
}
.hero-artist {
  font-family: var(--fh);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 2px;
}
.hero-title {
  font-family: var(--fd);
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  text-transform: uppercase; line-height: 0.86;
  letter-spacing: -0.01em; margin-bottom: 18px;
  background: linear-gradient(180deg, #fff 0%, #ffd9bf 60%, var(--orange) 130%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-meta {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 26px;
}
.hero-meta-row {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--fh);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}
.hero-meta-row svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--orange); }

/* Poster frame */
.hero-poster {
  position: relative; z-index: 2;
  justify-self: center;
  width: 100%; max-width: 440px;
}
.hero-poster::before {
  content: ''; position: absolute; inset: -14% -10%;
  background: radial-gradient(closest-side, rgba(255,91,1,0.4), transparent 75%);
  filter: blur(8px); z-index: -1;
}
.hero-poster-inner {
  position: relative;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(212,175,55,0.45);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,91,1,0.18),
    0 10px 70px rgba(255,91,1,0.28);
  animation: floaty 6s ease-in-out infinite;
}
.hero-poster-inner img { width: 100%; height: auto; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-poster-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(6,4,4,0.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2); border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}

/* Countdown */
.countdown-headline {
  font-size: 0.85rem; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  margin: 4px 0 14px; font-style: italic;
}
.countdown {
  display: flex; gap: 10px; margin-bottom: 24px;
  flex-wrap: wrap;
}
.cd-unit {
  background: linear-gradient(180deg, rgba(255,91,1,0.18) 0%, rgba(0,0,0,0.45) 100%);
  border: 1px solid rgba(255,91,1,0.35);
  border-radius: 12px; padding: 12px 16px;
  min-width: 72px; text-align: center;
  box-shadow: 0 8px 32px rgba(255,91,1,0.16);
}
.cd-num {
  display: block; font-family: var(--fd);
  font-size: clamp(1.7rem, 4.5vw, 2.4rem); line-height: 1;
  color: #fff; font-variant-numeric: tabular-nums;
}
.cd-lbl {
  display: block; margin-top: 6px;
  font-size: 0.58rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.countdown.is-done .cd-unit { border-color: rgba(255,255,255,0.18); }

@media (max-width: 860px) {
  .hero { padding-top: 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .hero-content { max-width: 560px; margin: 0 auto; order: 2; }
  .hero-poster { order: 1; max-width: 340px; }
  .hero-eyebrow { justify-content: center; }
  .hero-meta-row { justify-content: center; }
  .countdown { justify-content: center; }
  .hero .btn-cta { width: 100%; }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative; z-index: 2;
  background: var(--orange); color: #060404;
  overflow: hidden; padding: 13px 0;
  border-top: 1px solid rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(0,0,0,0.25);
}
.marquee-track {
  display: inline-flex; white-space: nowrap;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.marquee span {
  font-family: var(--fd);
  font-size: 1.05rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0 22px;
  display: inline-flex; align-items: center; gap: 22px;
}
.marquee span::after { content: '★'; color: rgba(6,4,4,0.55); font-size: 0.8rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---------- Sections ---------- */
section { padding: 76px 0; position: relative; }
.section-eyebrow {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.section-title {
  font-family: var(--fd);
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-transform: uppercase; line-height: 0.95;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--muted); font-size: 0.98rem;
  max-width: 580px; margin-bottom: 28px;
}
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Intro split (El encuentro) ---------- */
.intro-section { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center;
}
.intro-photo {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
  aspect-ratio: 4/5;
}
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.intro-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,4,4,0.55) 100%);
}
.intro-text p { color: rgba(255,255,255,0.78); font-size: 1.02rem; margin-bottom: 16px; }
.intro-text p strong { color: #fff; }
.intro-quote {
  margin-top: 22px; padding-left: 18px;
  border-left: 3px solid var(--orange);
  font-family: var(--fh); font-size: 1.3rem;
  letter-spacing: 0.04em; color: var(--gold);
  text-transform: uppercase;
}
@media (max-width: 820px) {
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-photo { aspect-ratio: 16/11; }
}

/* ---------- Experience bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px; padding: 26px 22px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,91,1,0.4);
  background: var(--bg-3);
}
.bento-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,91,1,0.12); color: var(--orange);
  margin-bottom: 16px;
}
.bento-icon svg { width: 24px; height: 24px; }
.bento-card h3 {
  font-family: var(--fh); font-size: 1.25rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 8px;
}
.bento-card p { color: var(--muted); font-size: 0.9rem; }
.bento-card.is-feature {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255,91,1,0.16), var(--bg-2));
  border-color: rgba(255,91,1,0.4);
}
@media (max-width: 880px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.is-feature { grid-column: span 2; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card.is-feature { grid-column: span 1; }
}

/* ---------- Tickets ---------- */
.tickets-section { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticket-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-bottom: 26px; align-items: stretch;
}
.ticket-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 18px; padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.ticket-card:hover { transform: translateY(-4px); border-color: rgba(255,91,1,0.45); }
.ticket-card.is-popular {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(255,91,1,0.12), var(--bg) 55%);
  box-shadow: 0 20px 60px rgba(255,91,1,0.18);
}
.ticket-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #060404;
  font-family: var(--fh); font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.ticket-zone {
  font-family: var(--fh); font-size: 1.5rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 6px;
}
.ticket-price {
  font-family: var(--fd); font-size: 2.4rem; line-height: 1;
  color: var(--orange); margin-bottom: 4px;
}
.ticket-price small { font-size: 0.9rem; color: var(--muted); display: block; font-family: 'Manrope', sans-serif; letter-spacing: 0.02em; margin-top: 6px; }
.ticket-features {
  list-style: none; margin: 20px 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.ticket-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: rgba(255,255,255,0.78);
}
.ticket-features li svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.ticket-card .btn { margin-top: auto; }
.pulep-note {
  text-align: center; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted-2); margin-top: 18px;
}
@media (max-width: 820px) {
  .ticket-cards { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* Single price block (cuando no hay desglose de zonas) */
.price-solo {
  max-width: 520px; margin: 0 auto; text-align: center;
  background: linear-gradient(180deg, rgba(255,91,1,0.14), var(--bg) 60%);
  border: 1px solid var(--orange);
  border-radius: 20px; padding: 40px 32px;
  box-shadow: 0 24px 70px rgba(255,91,1,0.18);
}
.price-solo .price-from {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.price-solo .price-big {
  font-family: var(--fd);
  font-size: clamp(3rem, 9vw, 4.6rem); line-height: 1;
  color: var(--orange); margin-bottom: 6px;
}
.price-solo .price-big small { font-family: 'Manrope', sans-serif; font-size: 1rem; color: var(--muted); letter-spacing: 0.04em; margin-left: 8px; }
.price-solo .price-note { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin: 4px auto 24px; max-width: 360px; }
.price-solo .btn { width: 100%; }

/* ---------- Venue ---------- */
.venue-section { background: var(--bg); }
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.venue-address { color: rgba(255,255,255,0.72); font-size: 0.98rem; margin-bottom: 22px; }
.venue-map {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--bg-2);
}
.venue-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) invert(0.92) hue-rotate(180deg); }
@media (max-width: 720px) { .venue-grid { grid-template-columns: 1fr; } }

/* ---------- Stat band (prueba social) ---------- */
.proof-section { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-band {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-bottom: 34px;
}
.stat {
  text-align: center; padding: 24px 18px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 16px;
}
.stat-num {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1;
  color: var(--orange); margin-bottom: 8px;
}
.stat-lbl { font-size: 0.86rem; color: var(--muted); }
.proof-media {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: 18px 30px; justify-content: center;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.proof-media-item {
  font-size: 0.72rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600;
}
@media (max-width: 640px) { .stat-band { grid-template-columns: 1fr; max-width: 360px; margin-left:auto; margin-right:auto; } }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; }
.faq-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 22px; transition: border-color 0.2s, background 0.2s;
}
.faq-item[open] { border-color: rgba(255,91,1,0.42); background: rgba(255,91,1,0.06); }
.faq-q {
  cursor: pointer; font-weight: 600; font-size: 0.98rem;
  display: flex; justify-content: space-between; gap: 18px; list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; color: var(--orange); font-size: 1.4rem; line-height: 1; transition: transform 0.2s; }
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a { margin-top: 12px; color: rgba(255,255,255,0.75); font-size: 0.94rem; line-height: 1.65; }

/* ---------- WhatsApp ---------- */
.whatsapp-section { padding: 56px 0; }
.whatsapp-card {
  display: flex; align-items: center; gap: 22px;
  background: linear-gradient(135deg, rgba(37,211,102,0.12) 0%, rgba(6,4,4,0.4) 100%);
  border: 1px solid rgba(37,211,102,0.35);
  padding: 26px 28px; border-radius: 18px;
}
.whatsapp-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,211,102,0.14); border-radius: 50%;
}
.whatsapp-icon svg { width: 28px; height: 28px; }
.whatsapp-text { flex: 1; min-width: 0; }
.whatsapp-text h3 { font-family: var(--fh); font-size: 1.1rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.whatsapp-text p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }
@media (max-width: 720px) { .whatsapp-card { flex-direction: column; align-items: flex-start; } .whatsapp-card .btn { width: 100%; } }

/* ---------- Other city ---------- */
.other-city-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(255,91,1,0.1) 0%, rgba(6,4,4,0.5) 80%);
  border-top: 1px solid rgba(255,91,1,0.22);
  border-bottom: 1px solid rgba(255,91,1,0.22);
}
.other-city-section .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(6,4,4,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-2);
  padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-info { min-width: 0; }
.sticky-cta-info strong {
  display: block; font-family: var(--fh);
  font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.sticky-cta-info span { font-size: 0.74rem; color: var(--muted); }
.sticky-cta .btn { padding: 13px 22px; min-height: 46px; white-space: nowrap; }
@media (min-width: 861px) {
  .sticky-cta-info span.long { display: inline; }
}
@media (max-width: 420px) {
  .sticky-cta-info span { display: none; }
}

/* ---------- Footer ---------- */
.footer { padding: 56px 24px 110px; border-top: 1px solid var(--line); text-align: center; }
.footer-socials { display: flex; justify-content: center; gap: 14px; margin-bottom: 24px; }
.footer-socials a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.footer-socials a:hover { color: var(--orange); border-color: var(--orange); background: var(--orange-dim); transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-email { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-whatsapp { display: inline-block; margin-bottom: 18px; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: #25D366; }
.footer-whatsapp:hover { color: #1da851; }
.footer-copy { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.footer-pulep { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-top: 8px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
  .hero-poster-inner { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
