/*
Theme Name: Don Gato
Theme URI: https://dongatobar.com.ar
Author: Don Gato Bar
Author URI: https://dongatobar.com.ar
Description: Theme oficial de Don Gato Bar — Cultura en vivo, música barrial, y las mejores noches de Palermo.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dongato-theme
Tags: bar, music, live, dark, custom-menu, custom-logo, featured-images, full-width-template
*/

/* ═══════════════════════════════════════════
   CSS VARIABLES & RESET
   ═══════════════════════════════════════════ */
:root {
  --black: #0a0a0a;
  --black-light: #111111;
  --black-card: #161616;
  --white: #f0ece4;
  --white-dim: #a8a49c;
  --red: #e63926;
  --red-glow: #ff4533;
  --orange: #ff6b35;
  --grain-opacity: 0.04;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
.font-display { font-family: 'Bebas Neue', sans-serif; }
.font-mono { font-family: 'Space Mono', monospace; }

/* ═══════════════════════════════════════════
   MARQUEE TICKER
   ═══════════════════════════════════════════ */
.ticker {
  background: var(--red);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker-track {
  display: inline-flex;
  animation: tickerScroll 20s linear infinite;
}
.ticker-track span {
  padding: 0 3rem;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(240,236,228,0.06);
  transition: transform 0.4s ease;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

a.custom-logo-link img
 {
    width: 220px;
    height: auto;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* WordPress nav menu reset */
.nav-links .menu-item a {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-links .menu-item a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links .menu-item a:hover { color: var(--white); }
.nav-links .menu-item a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  background: var(--red);
  color: var(--black);
  padding: 0.6rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--red-glow);
  box-shadow: 0 0 30px rgba(230,57,38,0.4);
  color: var(--black);
}

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--red); }
.nav-mobile .nav-cta {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════
   HERO — STORIES GALLERY
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(230,57,38,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem;
}
.hero-content .banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  padding: 0;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  text-align: center;
  letter-spacing: 0.02em;
}
.hero-title .accent { color: var(--red); }

.hero-sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-align: center;
}

/* Stories gallery */
.stories-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 0;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;  
  min-height: 590px;
}
.stories-gallery::-webkit-scrollbar { display: none; }

.story-card {
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-card.inactive {
  width: 80px;
  height: 420px;
  filter: blur(2px) brightness(0.4);
  opacity: 0.5;
}
.story-card.prev, .story-card.next {
  width: 120px;
  height: 460px;
  filter: blur(1px) brightness(0.6);
  opacity: 0.7;
}
.story-card.active {
  width: 280px;
  height: 500px;
  filter: none;
  opacity: 1;
  box-shadow: 0 0 60px rgba(230,57,38,0.2);
  border: 2px solid rgba(230,57,38,0.4);
}
.story-card .story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  opacity: 0;
  transition: opacity 0.4s;
}
.story-card.active .story-overlay {
  opacity: 1;
}
.story-overlay .story-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.story-overlay .story-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Story navigation dots */
.story-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.story-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240,236,228,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.story-dot.active {
  background: var(--red);
  box-shadow: 0 0 10px rgba(230,57,38,0.5);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════
   DIAGONAL TICKER
   ═══════════════════════════════════════════ */
.diagonal-ticker {
  position: relative;
  padding: 1rem 0;
  overflow: hidden;
  transform: rotate(-2deg);
  margin: -1rem 0;
}
.diagonal-ticker .ticker-track {
  background: var(--white);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  padding: 0.6rem 0;
  display: inline-flex;
  animation: tickerScroll 15s linear infinite;
}
.diagonal-ticker .ticker-track span {
  padding: 0 2.5rem;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   AGENDA SECTION
   ═══════════════════════════════════════════ */
.agenda {
  padding: 6rem 0;
  position: relative;
}
.agenda::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(transparent, var(--red));
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.agenda-grid {
  display: grid;
  gap: 1px;
  background: rgba(240,236,228,0.06);
}

.agenda-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--black);
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.agenda-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform 0.4s;
}
.agenda-card:hover {
  background: var(--black-card);
}
.agenda-card:hover::before {
  transform: scaleY(1);
}
.agenda-card.past {
  opacity: 0.35;
}

.agenda-date {
  text-align: center;
}
.agenda-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--white);
}
.agenda-month {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.agenda-weekday {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.2rem;
}

.agenda-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.agenda-info .agenda-band {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.3rem;
}
.agenda-info .agenda-desc {
  font-size: 0.78rem;
  color: var(--white-dim);
  margin-top: 0.25rem;
}
.agenda-info .agenda-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.agenda-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(240,236,228,0.15);
  color: var(--white-dim);
}

.agenda-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-direction: column;
}
.btn-reservar {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  white-space: nowrap;
}
.btn-reservar:hover {
  background: var(--red);
  color: var(--black);
  box-shadow: 0 0 25px rgba(230,57,38,0.3);
}
.agenda-time {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--white-dim);
}

/* Status badges */
.status-badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
}
.status-badge.live {
  background: var(--red);
  color: var(--black);
  animation: pulse 1.5s ease-in-out infinite;
}
.status-badge.open {
  border: 1px solid rgba(80,200,120,0.5);
  color: #50c878;
}
.status-badge.full {
  border: 1px solid rgba(240,236,228,0.15);
  color: var(--white-dim);
}

/* Agenda CTA */
.agenda-cta {
  margin-top: 3rem;
  text-align: center;
}
.agenda-cta .nav-cta {
  font-size: 1.2rem;
  padding: 1rem 3rem;
}
.agenda-cta-rules {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════
   ABOUT / SOBRE DON GATO
   ═══════════════════════════════════════════ */
.about {
  padding: 6rem 0;
  background: var(--black-light);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text .section-tag {
  display: block;
  margin-bottom: 1rem;
}
.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.about-text h2 .accent { color: var(--red); }
.about-text p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 1rem;
}
.about-text blockquote {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--red);
  border-left: 2px solid var(--red);
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.about-img {
  aspect-ratio: 3/4;
  background: var(--black-card);
  overflow: hidden;
  position: relative;
}
.about-img:nth-child(2) {
  margin-top: 3rem;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.5s;
}
.about-img:hover img {
  filter: grayscale(0%);
}
.about-img .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  background: linear-gradient(135deg, var(--black-card) 0%, #1a1a1a 100%);
}

/* ═══════════════════════════════════════════
   PROPUESTAS FORM
   ═══════════════════════════════════════════ */
.propuestas {
  padding: 6rem 0;
  position: relative;
}
.propuestas::before {
  content: '';
  position: absolute;
  top: 0;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230,57,38,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
.form-intro .section-tag {
  display: block;
  margin-bottom: 1rem;
}
.form-intro h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 1rem;
}
.form-intro h2 .accent { color: var(--red); }
.form-intro p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--white-dim);
}
.form-intro .form-types {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-type-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.form-type-item .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240,236,228,0.1);
  font-size: 0.9rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(240,236,228,0.04);
  border: 1px solid rgba(240,236,228,0.1);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a49c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: rgba(240,236,228,0.04);
  cursor: pointer;
}
.form-group select option {
  background: var(--black);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  padding: 1rem 2rem;
  background: var(--red);
  color: var(--black);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}
.btn-submit:hover {
  background: var(--red-glow);
  box-shadow: 0 0 40px rgba(230,57,38,0.4);
  transform: translateY(-2px);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.75rem 1rem;
  display: none;
}
.form-message.success {
  border: 1px solid rgba(80,200,120,0.4);
  color: #50c878;
  display: block;
}
.form-message.error {
  border: 1px solid rgba(230,57,38,0.4);
  color: var(--red);
  display: block;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(240,236,228,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.8rem;
  color: var(--white-dim);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }

/* WordPress footer menu */
.footer-col .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col .menu li {
  margin-bottom: 0.5rem;
}
.footer-col .menu a {
  font-size: 0.8rem;
  color: var(--white-dim);
  transition: color 0.3s;
}
.footer-col .menu a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(240,236,228,0.06);
}
.footer-bottom p {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--white-dim);
}
.footer-socials {
  display: flex;
  gap: 1.5rem;
}
.footer-socials a {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--red); }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .about-grid,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .agenda-card {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }
  .agenda-action {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: 80px;
    margin-top: -0.5rem;
    flex-direction: row;
  }

  /* Hero */
  .hero-content { gap: 2rem; padding: 3rem 1.5rem; }
  .hero-content .banner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3rem;
      padding: 0;
    }
  .stories-gallery {
    min-height: 400px;
    gap: 0.5rem;
    padding: 1rem 0;
  }
  .story-card.inactive { width: 44px; height: 300px; }
  .story-card.prev, .story-card.next { width: 72px; height: 340px; }
  .story-card.active { width: 200px; height: 370px; }
}

.staff-public .container {
    max-width:100%;padding:0;
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Agenda */
  .agenda-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .agenda-action {
    padding-left: 0;
    justify-content: center;
    flex-direction: row;
  }
  .agenda-info .agenda-tags {
    justify-content: center;
  }

  /* Hero */
  .hero-content { gap: 1.25rem; padding: 2rem 1rem; }
  .stories-gallery {
    min-height: 300px;
    gap: 0.35rem;
    padding: 0.75rem 0;
  }
  .story-card.inactive { width: 30px; height: 200px; filter: blur(1px) brightness(0.35); }
  .story-card.prev, .story-card.next { width: 52px; height: 230px; }
  .story-card.active { width: 160px; height: 260px; }
  .story-overlay .story-label { font-size: 1rem; }
  .story-dots { margin-top: 0.75rem; gap: 0.4rem; }

  /* Navbar mobile */
  .navbar-inner { padding: 0.85rem 1rem; }
  .nav-cta { display: none; } /* se oculta en navbar, queda en el overlay */
    .staff-public .container,
    .reservas .container {max-width:100%;padding:0;}
    .staff-public .container .dg-pub,
    .reservas .container .dg-pub{padding:0;}
    .dg-step-sep {display:none;}
    
    
    .staff-propuestas,
    .staff-propuestas .container,
    .staff-public .container .dg-app > div {
        padding:0 !important;
    }
}
