/* ==========================================
   BELTRÍO – styles.css
   Dark Modern Folk-Rock Latino
========================================== */

/* ---- Variables ---- */
:root {
  --bg-dark:    #0d0d0f;
  --bg-mid:     #13131a;
  --bg-card:    #1a1a24;
  --accent:     #c8972b;
  --accent-2:   #e8b84b;
  --text-main:  #e8e6e0;
  --text-muted: #8a8780;
  --wa-green:   #25d366;
  --radius:     12px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --max-w:      1100px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ==========================================
   NAVBAR
========================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(13,13,15,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200,151,43,0.15);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.12em;
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--accent-2); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ==========================================
   HERO
========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(200,151,43,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200,151,43,0.05) 0%, transparent 50%),
    var(--bg-dark);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/grupo1.jpeg') center/cover no-repeat;
  opacity: 0.12;
  filter: saturate(0.3);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,0.5) 0%, rgba(13,13,15,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  animation: fadeUp 1s ease both;
}
.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 0 60px rgba(200,151,43,0.3);
  margin-bottom: 1.2rem;
}
.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll dots */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 2px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollBounce 1.5s ease infinite;
}
.hero-scroll-hint span:nth-child(2) { animation-delay: 0.15s; opacity: 0.7; }
.hero-scroll-hint span:nth-child(3) { animation-delay: 0.3s; opacity: 0.4; }

/* Social sidebar */
.hero-social {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 1.2s ease 0.3s both;
}
.hero-social-link {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,151,43,0.2);
  color: var(--text-muted);
  transition: all var(--transition);
  backdrop-filter: blur(6px);
}
.hero-social-link svg { width: 16px; height: 16px; }
.hero-social-link:hover {
  color: var(--accent);
  background: rgba(200,151,43,0.12);
  border-color: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 0 16px rgba(200,151,43,0.25);
}
.hero-social-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, rgba(200,151,43,0.4), transparent);
}

@media (max-width: 768px) {
  .hero-social {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 4.5rem;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 0.75rem;
    width: max-content;
  }
  .hero-social-line {
    display: none;
  }
}

/* ==========================================
   BUTTONS
========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #0d0d0f;
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,151,43,0.35);
}
.btn-outline {
  border: 1.5px solid rgba(200,151,43,0.5);
  color: var(--accent);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(200,151,43,0.08);
  transform: translateY(-2px);
}

/* ==========================================
   SECTIONS – layout
========================================== */
.section-dark { background: var(--bg-dark); }
.section-mid  { background: var(--bg-mid);  }

section { padding: 6rem 1.5rem; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}
.section-line {
  width: 48px; height: 2px;
  background: var(--accent);
  margin: 0 auto;
}
.section-desc {
  max-width: 500px;
  margin: 1.2rem auto 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================
   VIDEO
========================================== */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(200,151,43,0.2),
    0 24px 64px rgba(0,0,0,0.6),
    0 0 80px rgba(200,151,43,0.07);
  aspect-ratio: 16/9;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ==========================================
   GALLERY — Album Tabs
========================================== */
.album-tabs {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.album-tab {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid rgba(200,151,43,0.25);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}
.album-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,151,43,0.06);
}
.album-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d0d0f;
  box-shadow: 0 4px 16px rgba(200,151,43,0.35);
}

/* ==========================================
   GALLERY — Thumbnail Grid
========================================== */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 1 / 1;  /* thumbnails cuadrados uniformes */
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,151,43,0.3);
  z-index: 2;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,13,15,0.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0.6rem 0.7rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
}
.gallery-zoom-icon {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--accent);
  line-height: 1;
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-zoom-icon { transform: scale(1.2) rotate(10deg); }

/* Hidden / filtered items */
.gallery-item.hidden {
  display: none;
}

/* ==========================================
   LIGHTBOX
========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-track {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 5rem 4rem;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightboxImg {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(200,151,43,0.15);
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.25s ease;
  user-select: none;
  -webkit-user-drag: none;
}
#lightboxImg.fading {
  opacity: 0;
  transform: scale(0.97);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all var(--transition);
  z-index: 10;
}
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-close:hover {
  background: rgba(200,151,43,0.2);
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all var(--transition);
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-nav:hover {
  background: rgba(200,151,43,0.18);
  border-color: var(--accent);
  color: var(--accent);
}
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}
.lightbox-album-name {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

/* ==========================================
   TRAYECTORIA (TIMELINE)
========================================= */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--accent), var(--accent-2), transparent);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 3rem;
  opacity: 0.85;
  transition: all var(--transition);
}
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.timeline-marker {
  position: absolute;
  top: 2rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bg-card); /* was mid */
  border: 4px solid var(--accent);
  box-shadow: 0 0 15px rgba(200,151,43,0.5);
  transition: all var(--transition);
  z-index: 2;
}
.timeline-item:nth-child(odd) .timeline-marker {
  right: -10px;
}
.timeline-item:nth-child(even) .timeline-marker {
  left: -10px;
}
.timeline-content {
  background: var(--bg-card);
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.timeline-content::before {
  content: '';
  position: absolute;
  top: 2rem;
  width: 0; height: 0;
  border-style: solid;
}
.timeline-item:nth-child(odd) .timeline-content::before {
  right: -14px;
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent var(--bg-card);
}
.timeline-item:nth-child(even) .timeline-content::before {
  left: -14px;
  border-width: 10px 14px 10px 0;
  border-color: transparent var(--bg-card) transparent transparent;
}
.timeline-item:hover {
  opacity: 1;
}
.timeline-item:hover .timeline-marker {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 25px rgba(200,151,43,0.8);
}
.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  border-color: rgba(200,151,43,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding: 1.5rem 0 1.5rem 3.5rem;
    text-align: left !important;
    left: 0 !important;
  }
  .timeline-marker {
    left: 10px !important;
    right: auto !important;
  }
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -14px;
    right: auto;
    border-width: 10px 14px 10px 0;
    border-color: transparent var(--bg-card) transparent transparent;
  }
}

/* ==========================================
   AGENDA
========================================== */
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 860px;
  margin: 0 auto;
}

.agenda-card {
  display: grid;
  grid-template-columns: auto 1px 1fr auto;
  gap: 0 2rem;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.8rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.agenda-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px 0 0 2px;
  opacity: 0;
  transition: opacity var(--transition);
}
.agenda-card:hover {
  border-color: rgba(200,151,43,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 0 transparent;
  transform: translateY(-3px);
}
.agenda-card:hover::before { opacity: 1; }

.agenda-card--past {
  opacity: 0.55;
}
.agenda-card--past:hover { opacity: 0.75; }

.agenda-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  text-align: center;
}
.agenda-day {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.agenda-month {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.agenda-year {
  font-size: 0.65rem;
  color: rgba(138,135,128,0.6);
  letter-spacing: 0.1em;
  margin-top: 1px;
}

.agenda-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(200,151,43,0.3), transparent);
}

.agenda-info {
  min-width: 0;
}
.agenda-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.agenda-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.agenda-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.agenda-meta-item svg {
  width: 14px; height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.agenda-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.agenda-status {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.agenda-status--upcoming {
  background: rgba(200,151,43,0.15);
  color: var(--accent-2);
  border: 1px solid rgba(200,151,43,0.3);
}
.agenda-status--past {
  display: none;
}

/* Agenda card with flyer thumbnail */
.agenda-card--flyer {
  grid-template-columns: auto auto 1px 1fr auto;
}
.agenda-flyer-thumb {
  position: relative;
  width: 72px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.agenda-flyer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.agenda-card--flyer:hover .agenda-flyer-thumb {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(200,151,43,0.3);
}
.agenda-card--flyer:hover .agenda-flyer-thumb img { transform: scale(1.08); }
.agenda-flyer-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(200,151,43,0.15) 100%);
  border: 1px solid rgba(200,151,43,0.2);
  border-radius: 8px;
  transition: all var(--transition);
}
.agenda-card--flyer:hover .agenda-flyer-glow {
  border-color: rgba(200,151,43,0.5);
  background: linear-gradient(180deg, transparent 40%, rgba(200,151,43,0.2) 100%);
}

/* ==========================================
   ABOUT
========================================== */
.about-section { overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text .section-label { margin-bottom: 0.6rem; }
.about-text .section-title { text-align: left; }
.about-text p {
  color: var(--text-muted);
  margin-top: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}
.about-deco {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deco-video-ring {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(200,151,43,0.35);
  box-shadow:
    0 0 40px rgba(200,151,43,0.12),
    0 0 80px rgba(200,151,43,0.06),
    inset 0 0 30px rgba(0,0,0,0.4);
  animation: rotateSlow 20s linear infinite;
  flex-shrink: 0;
}
.deco-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  filter: brightness(0.45);
}
.deco-video-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(13,13,15,0.25) 20%,
    rgba(13,13,15,0.75) 100%
  );
  pointer-events: none;
}

/* ==========================================
   CONTACT
========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,151,43,0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(200,151,43,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.contact-card:hover::before { opacity: 1; }
.contact-card--wa:hover { border-color: rgba(37,211,102,0.4); }
.contact-card--wa:hover::before {
  background: linear-gradient(135deg, rgba(37,211,102,0.06), transparent);
}
.contact-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(200,151,43,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background var(--transition), color var(--transition);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-card--wa .contact-icon {
  background: rgba(37,211,102,0.1);
  color: var(--wa-green);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-value {
  font-size: 0.95rem;
  color: var(--text-main);
  word-break: break-all;
}
.contact-arrow {
  margin-left: auto;
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}
.contact-card:hover .contact-arrow { transform: translateX(4px); color: var(--accent); }
.contact-card--wa:hover .contact-arrow { color: var(--wa-green); }

/* ==========================================
   FOOTER
========================================== */
.footer {
  background: #09090b;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 1.5rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.12em;
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Visit counter */
.visit-counter {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.visit-counter svg {
  width: 14px; height: 14px;
  color: var(--accent);
}
#visitCount {
  font-weight: 700;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}
.visit-label {
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

/* ==========================================
   ANIMATIONS
========================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.4; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes lineGrow {
  from { transform: scaleY(0.4); opacity: 0.3; }
  to   { transform: scaleY(1); opacity: 1; }
}
@keyframes galleryFadeIn {
  from { opacity: 0; transform: scale(0.93) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 900px) {
  .gallery-masonry { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.2rem; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(13,13,15,0.97);
    backdrop-filter: blur(16px);
    padding: 1rem 0 2rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
    border-bottom: 1px solid rgba(200,151,43,0.15);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { text-align: center; }
  .nav-links a { display: block; padding: 1rem 2rem; font-size: 1rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-deco { height: 190px; }
  .deco-video-ring { width: 160px; height: 160px; }

  /* Gallery mobile */
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
  .gallery-item { border-radius: 6px; }

  /* Gallery overlay always visible on mobile */
  .gallery-overlay { opacity: 1; background: linear-gradient(0deg, rgba(13,13,15,0.65) 0%, transparent 55%); }

  /* Lightbox mobile */
  .lightbox-track { padding: 4rem 0.8rem 3.5rem; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
  .lightbox-img-wrap { max-width: 96vw; }
  #lightboxImg { max-height: 80vh; }

  /* Agenda mobile */
  .agenda-card {
    grid-template-columns: auto 1px 1fr;
    grid-template-rows: auto auto;
    gap: 0 1.2rem;
    padding: 1.4rem 1.2rem;
  }
  .agenda-status {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
    margin-top: 0.75rem;
  }
  .agenda-divider { height: 48px; }
  .agenda-day { font-size: 1.9rem; }
  .agenda-title { font-size: 1rem; }

  /* Agenda card with flyer – mobile */
  .agenda-card--flyer {
    grid-template-columns: auto auto 1px 1fr;
    grid-template-rows: auto auto;
  }
  .agenda-card--flyer .agenda-status {
    grid-column: 4;
    grid-row: 2;
  }
  .agenda-flyer-thumb {
    width: 58px;
    height: 82px;
  }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }

  .album-tab {
    font-size: 0.72rem;
    padding: 0.45rem 1rem;
  }
}

/* ==========================================
   BACK TO TOP
========================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13,13,15,0.85);
  border: 1.5px solid rgba(200,151,43,0.5);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 12px rgba(200,151,43,0.1);
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: rgba(200,151,43,0.15);
  border-color: var(--accent);
  box-shadow: 0 6px 28px rgba(0,0,0,0.5), 0 0 20px rgba(200,151,43,0.25);
  transform: translateY(-3px) scale(1.08);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 42px;
    height: 42px;
  }
  .back-to-top svg { width: 18px; height: 18px; }
}
