/* ============================================================
   TEATRO RIBAS — site.css v2
   Paleta institucional + efectos premium 2026
   ============================================================ */

:root {
  /* === MARCA INSTITUCIONAL === */
  --burgundy:       #7A1F2F;
  --burgundy-dark:  #5A1521;
  --burgundy-soft:  #9A3C4D;
  --orange:         #F39427;
  --orange-dark:    #D77614;
  --teatro-yellow:  #F5C842;
  --teatro-red:     #C13721;

  /* === PALETA REFINADA v2 === */
  --tr-vinotinto:      #6B1A2E;
  --tr-vinotinto-deep: #4A0F1F;
  --tr-dorado:         #D4A24A;
  --tr-dorado-soft:    #E9C77B;
  --tr-crema:          #F8F1E4;
  --tr-tinta:          #1A1014;

  /* === NEUTROS === */
  --ink:       #1F1916;
  --gray-700:  #4A4A4A;
  --gray-500:  #8A8A8A;
  --gray-200:  #E5E0D8;
  --cream:     #FBF7F0;
  --white:     #FFFFFF;

  /* === SISTEMA === */
  --success: #3DA35D;
  --warning: #F5C842;
  --danger:  #C13721;
  --info:    #2A5C8A;

  /* === TIPOGRAFIA === */
  --font-serif:   'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Cinzel', 'Trajan Pro', Georgia, serif;

  /* === ESPACIADO === */
  --space-xs: .25rem; --space-sm: .5rem; --space-md: 1rem;
  --space-lg: 2rem; --space-xl: 4rem; --space-xxl: 6rem;

  /* === RADIOS === */
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 16px;

  /* === SOMBRAS v2 === */
  --shadow-sm: 0 2px 8px rgba(74,15,31,.06);
  --shadow-md: 0 8px 32px rgba(74,15,31,.10);
  --shadow-lg: 0 24px 64px rgba(74,15,31,.18);

  /* === MOVIMIENTO === */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --dur: 420ms;
  --t-fast: 150ms ease;
  --t-mid: 300ms ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--tr-dorado); }
a:focus-visible { outline: 2px solid var(--tr-dorado); outline-offset: 2px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
.content-narrow { max-width: 800px; margin: 0 auto; }
.text-center { text-align: center; }

/* === TIPOGRAFIA === */
h1, h2, h3 { font-family: var(--font-serif); color: var(--ink); line-height: 1.15; }
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); font-weight: 700; margin-bottom: var(--space-md); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 600; margin-bottom: var(--space-md); }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: var(--space-sm); }
h4 { font-family: var(--font-sans); font-size: 1.125rem; font-weight: 600; margin-bottom: var(--space-sm); }
.eyebrow { font-family: var(--font-sans); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: var(--tr-dorado); margin-bottom: var(--space-xs); }

/* === HEADER STICKY + COMPACTO === */
.site-header {
  background: var(--tr-vinotinto);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--dur) var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header.scrolled {
  background: rgba(74,15,31,.92);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  transition: padding var(--dur) var(--ease);
}
.site-header.scrolled .header-inner { padding: .25rem var(--space-md); }
.logo { height: 44px; width: auto; transition: height var(--dur) var(--ease); }
.site-header.scrolled .logo { height: 32px; }
.main-nav { display: flex; gap: var(--space-md); align-items: center; }
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: var(--space-xs) 0;
  border-bottom: 2px solid transparent;
  transition: all var(--t-fast);
}
.main-nav a:hover, .main-nav a.active { border-bottom-color: var(--tr-dorado); color: var(--white); }
.lang-switch {
  background: rgba(255,255,255,.1);
  padding: .3rem .75rem !important;
  border-radius: var(--radius-sm);
  font-size: .7rem !important;
  border: 1px solid rgba(255,255,255,.2);
}
.lang-switch:hover { background: rgba(255,255,255,.2); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: var(--space-xs); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--t-fast); border-radius: 2px; }

/* === HERO === */
.hero { position: relative; height: 85vh; min-height: 500px; overflow: hidden; }
.hero-slide { position: relative; height: 100%; }
.hero-img, .hero-slide picture img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(74,15,31,.5) 0%, rgba(26,16,20,.75) 100%);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: var(--space-lg);
}
.hero-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 4px 16px rgba(0,0,0,.4);
  animation: fadeUp .8s var(--ease) both;
}
.hero-subtitle {
  color: var(--tr-dorado-soft);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: var(--space-sm) 0 var(--space-lg);
  animation: fadeUp .8s var(--ease) .15s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-hero { position: relative; height: 50vh; min-height: 300px; overflow: hidden; }
.page-hero-short { height: 35vh; min-height: 220px; }
.page-hero-img, .page-hero picture img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(74,15,31,.7), rgba(26,16,20,.4));
  display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column;
}
.page-hero-overlay h1 { color: var(--white); font-family: var(--font-display); text-shadow: 0 2px 12px rgba(0,0,0,.3); }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === GRADIENT MESH === */
.mesh-bg {
  position: relative;
  overflow: hidden;
}
.mesh-bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,162,74,.15), transparent 70%);
  top: -200px; right: -200px;
  border-radius: 50%;
  animation: drift 20s infinite alternate ease-in-out;
  pointer-events: none;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-80px, 60px) scale(1.1); }
  100% { transform: translate(40px, -30px) scale(.95); }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: .875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-cta {
  background: var(--tr-dorado);
  color: var(--tr-tinta);
  box-shadow: 0 4px 16px rgba(212,162,74,.3);
}
.btn-cta:hover {
  background: var(--orange);
  color: var(--tr-tinta);
  box-shadow: 0 8px 24px rgba(212,162,74,.4);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}
.btn-secondary:hover { background: var(--burgundy); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-sm { padding: .5rem 1.25rem; font-size: .7rem; }
.btn-full { width: 100%; }

/* === SECTIONS === */
.section { padding: var(--space-xl) 0; }
.bg-cream { background: var(--tr-crema); }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-lg); }
.link-arrow { font-weight: 600; color: var(--burgundy); display: inline-flex; align-items: center; gap: .5rem; }
.link-arrow:hover { color: var(--tr-dorado); }

/* === EVENT CARDS 3D === */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--space-lg); }
.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
  transform: perspective(1000px) rotateX(0deg);
}
.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateX(1.5deg) translateY(-4px);
}
.event-card-img, .event-card picture img { width: 100%; height: 220px; object-fit: cover; transition: transform .6s var(--ease); }
.event-card:hover .event-card-img, .event-card:hover picture img { transform: scale(1.03); }
.event-card-body { padding: var(--space-md) var(--space-md) var(--space-lg); }
.event-card-body h3 { font-size: 1.2rem; margin-bottom: var(--space-xs); }
.event-card-body h3 a { color: var(--ink); }
.event-card-body h3 a:hover { color: var(--tr-dorado); }
.event-date { font-size: .8rem; color: var(--gray-500); margin-bottom: var(--space-xs); font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }
.event-excerpt { font-size: .875rem; color: var(--gray-700); line-height: 1.6; text-align: justify; hyphens: auto; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }

.badge-cat {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 2px;
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--space-xs);
}
.badge { display: inline-block; padding: .2rem .6rem; border-radius: 2px; font-size: .7rem; font-weight: 600; letter-spacing: .05em; }
.badge-today { background: var(--teatro-red); color: var(--white); }
.badge-sold { background: var(--gray-500); color: var(--white); }
.badge-soon { background: var(--teatro-yellow); color: var(--ink); }
.badge-confirmada { background: var(--success); color: var(--white); }
.badge-reservada { background: var(--info); color: var(--white); }
.badge-utilizada { background: var(--gray-500); color: var(--white); }
.badge-cancelada { background: var(--danger); color: var(--white); }

/* === NEWS CARDS === */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-lg); }
.news-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--dur) var(--ease); }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-card-img { width: 100%; height: 200px; object-fit: cover; }
.news-card-body { padding: var(--space-md); }
.news-card-body time { font-size: .7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .12em; font-weight: 500; }
.news-card-body h2, .news-card-body h3 { font-size: 1.1rem; margin: var(--space-xs) 0; line-height: 1.3; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.about-img picture img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 3/2; object-fit: cover; }
.about-text p { line-height: 1.8; color: var(--gray-700); text-wrap: pretty; hyphens: auto; text-align: justify; }
.about-text .lead { font-size: 1.1rem; }

/* === TIMELINE ZIGZAG === */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--tr-dorado), var(--burgundy)); transform: translateX(-50%); }
.timeline-item { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); margin-bottom: var(--space-xxl); align-items: start; }
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; padding-right: var(--space-xl); }
.timeline-item:nth-child(odd) .timeline-year { grid-column: 2; grid-row: 1; justify-self: start; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; padding-left: var(--space-xl); }
.timeline-item:nth-child(even) .timeline-year { grid-column: 1; grid-row: 1; justify-self: end; }
.timeline-year { background: var(--tr-vinotinto); color: var(--tr-dorado); padding: .4rem .8rem; border-radius: var(--radius-sm); font-family: var(--font-display); font-size: .85rem; font-weight: 700; box-shadow: var(--shadow-md); display: inline-block; position: relative; z-index: 2; }
.timeline-year::after { content: ''; position: absolute; top: 50%; width: 16px; height: 2px; background: var(--tr-dorado); }
.timeline-item:nth-child(odd) .timeline-year::after { left: -20px; }
.timeline-item:nth-child(even) .timeline-year::after { right: -20px; }
.timeline-content { position: relative; }
.timeline-content h3 { font-size: 1.2rem; color: var(--burgundy); margin-bottom: var(--space-xs); }
.timeline-content p { color: var(--gray-700); line-height: 1.7; text-align: justify; hyphens: auto; }
.timeline-content picture img { margin-top: var(--space-md); border-radius: var(--radius-md); max-height: 280px; object-fit: cover; box-shadow: var(--shadow-md); width: 100%; }

/* === ARCH === */
.arch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.arch-img picture img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.photo-credit { display: block; text-align: right; font-size: .7rem; color: var(--gray-500); margin-top: var(--space-xs); font-style: italic; }
.caption { font-size: .875rem; color: var(--gray-700); margin-top: var(--space-sm); font-style: italic; text-align: center; }

/* === EVENTO DETAIL === */
.evento-detail { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-xl); }
.evento-sinopsis { font-size: 1.05rem; line-height: 1.8; text-wrap: pretty; text-align: justify; hyphens: auto; }
.evento-meta { display: flex; gap: var(--space-lg); margin-top: var(--space-lg); font-size: .85rem; color: var(--gray-500); }
.evento-ficha { white-space: pre-line; font-size: .95rem; color: var(--gray-700); margin-bottom: var(--space-lg); }
.funcion-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-md);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  transition: all var(--t-mid);
}
.funcion-card:hover { border-color: var(--tr-dorado); box-shadow: var(--shadow-sm); }
.funcion-dispo { font-size: .75rem; color: var(--success); display: block; font-weight: 500; }
.precio-ref { margin-top: var(--space-md); padding: var(--space-md); background: var(--tr-crema); border-radius: var(--radius-md); border: 1px solid var(--gray-200); }

/* === RESERVA === */
.reserva-evento-info { background: var(--white); padding: var(--space-lg); border-radius: var(--radius-md); margin-bottom: var(--space-lg); box-shadow: var(--shadow-sm); border-left: 4px solid var(--tr-dorado); }
.reserva-card { background: var(--white); padding: var(--space-lg); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.reserva-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-md); padding-bottom: var(--space-md); border-bottom: 1px solid var(--gray-200); }
.reserva-code { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--tr-vinotinto); }
.reserva-qr { text-align: center; margin: var(--space-lg) 0; }
.reserva-qr canvas { margin: 0 auto; border: 8px solid var(--white); box-shadow: var(--shadow-sm); border-radius: var(--radius-sm); }
.qr-hint { font-size: .8rem; color: var(--gray-500); margin-top: var(--space-sm); }

/* === GALLERY === */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-md); }
.gallery-item { overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.gallery-item picture img, .gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover picture img, .gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption { padding: var(--space-sm) var(--space-md); font-size: .8rem; color: var(--gray-700); background: var(--white); }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.contact-info h3 { margin-top: var(--space-lg); color: var(--burgundy); }
.social-link { display: inline-flex; align-items: center; gap: var(--space-sm); color: var(--burgundy); font-weight: 500; }
.social-link:hover { color: var(--tr-dorado); }
.map-embed { margin-top: var(--space-md); }

/* === FORMS === */
.form { max-width: 600px; }
.form-group { margin-bottom: var(--space-md); }
.form-group label { display: block; font-weight: 500; margin-bottom: var(--space-xs); font-size: .85rem; color: var(--gray-700); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .875rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  background: var(--white);
  transition: all var(--t-fast);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--tr-dorado);
  box-shadow: 0 0 0 3px rgba(212,162,74,.15);
}

/* === ALERTS === */
.alert { padding: var(--space-md); border-radius: var(--radius-md); margin-bottom: var(--space-md); font-size: .9rem; }
.alert-success { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.alert-danger { background: #fce4e4; color: #8b1a1a; border: 1px solid #ef9a9a; }
.alert-info { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }

/* === ERROR PAGE === */
.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; position: relative; }
.error-bg { position: absolute; inset: 0; }
.error-bg picture img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.35); }
.error-content { position: relative; text-align: center; color: var(--white); z-index: 1; }
.error-content h1 { font-family: var(--font-display); font-size: 8rem; color: var(--tr-dorado); line-height: 1; }
.error-content p { font-size: 1.125rem; margin: var(--space-md) 0 var(--space-lg); }


/* ============================================================
   FOOTER — Dark premium world-class
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #0e0a08 0%, #141010 50%, #0a0707 100%);
  color: rgba(248,241,228,.75);
  padding-top: 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: clamp(32px, 5vw, 72px);
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--space-md) clamp(40px, 4vw, 56px);
}

/* — Column: Brand — */
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  width: clamp(130px, 14vw, 160px);
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}
.footer-tagline {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--tr-dorado);
  line-height: 1.55;
  letter-spacing: .02em;
  margin-bottom: 20px;
  opacity: .85;
}

/* — Social icons: horizontal row, gold circles — */
.footer-social {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-social li {
  list-style: none;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,175,55,.06);
  border: 1px solid rgba(212,175,55,.25);
  color: rgba(248,241,228,.8);
  transition: all .25s ease;
}
.footer-social a:hover {
  background: rgba(212,175,55,.18);
  border-color: var(--tr-dorado);
  color: var(--tr-dorado);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212,162,74,.2);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* — Columns: Contacto & Enlaces — */
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tr-dorado);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,175,55,.15);
}

.footer-contact-list {
  font-style: normal;
}
.footer-contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  line-height: 1.65;
  margin-bottom: 12px;
  color: rgba(248,241,228,.7);
}
.footer-contact-list a {
  color: rgba(248,241,228,.7);
  transition: color .2s ease;
}
.footer-contact-list a:hover {
  color: var(--tr-dorado);
}
.footer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--tr-dorado);
  opacity: .7;
}
.footer-hours {
  font-size: .82rem !important;
  opacity: .65;
}

/* — Quick links — */
.footer-links {
  display: flex;
  flex-direction: column;
}
.footer-links a {
  display: block;
  color: rgba(248,241,228,.7);
  font-size: .85rem;
  padding: 5px 0;
  transition: color .2s ease, padding-left .2s ease;
  border: none;
}
.footer-links a:hover {
  color: var(--tr-dorado);
  padding-left: 6px;
}

/* — Franja Alcaldia — */
.footer-alcaldia {
  border-top: 1px solid rgba(212,175,55,.2);
  padding: 24px var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer-alcaldia img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: .6;
  flex-shrink: 0;
  filter: grayscale(.3);
  transition: opacity .2s;
}
.footer-alcaldia:hover img {
  opacity: .8;
}
.footer-alcaldia div {
  text-align: left;
}
.footer-alcaldia p {
  font-size: .82rem;
  margin: 0;
  line-height: 1.4;
  opacity: .7;
}
.footer-alcaldia small {
  display: block;
  font-size: .72rem;
  opacity: .45;
  margin-top: 2px;
}

/* — Footer bottom (copyright) — */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 18px var(--space-md);
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: .72rem;
  opacity: .4;
  margin: 0;
  letter-spacing: .04em;
}

/* — Footer mobile — */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px var(--space-md) 32px;
    text-align: center;
  }
  .footer-brand { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-tagline { max-width: 320px; margin-left: auto; margin-right: auto; }
  .footer-col h4 { border-bottom: none; text-align: center; }
  .footer-contact-list p { justify-content: center; text-align: center; }
  .footer-links { align-items: center; }
  .footer-links a:hover { padding-left: 0; }
  .footer-alcaldia {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px var(--space-md);
  }
  .footer-alcaldia div { text-align: center; }
}

/* === WHATSAPP FAB === */
.whatsapp-fab {
  position: fixed; bottom: var(--space-lg); right: var(--space-lg);
  width: 56px; height: 56px;
  background: #25D366; color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  z-index: 99;
  transition: transform var(--dur) var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.1); color: var(--white); }

/* === UTILITIES === */
.mt-1 { margin-top: var(--space-md); }
.empty-state { text-align: center; padding: var(--space-xxl); color: var(--gray-500); font-size: 1.1rem; }
.dispo { font-weight: 600; color: var(--success); }

.article-header { margin-bottom: var(--space-lg); }
.article-meta { font-size: .8rem; color: var(--gray-500); letter-spacing: .05em; }
.article-img { width: 100%; border-radius: var(--radius-md); margin: var(--space-lg) 0; box-shadow: var(--shadow-sm); }
.article-body { line-height: 1.8; font-size: 1.05rem; text-wrap: pretty; }
.article-body p { margin-bottom: var(--space-md); }

/* === CORTINA TEATRAL (loader) === */
.curtain { position: fixed; inset: 0; z-index: 9999; pointer-events: none; display: flex; }
.curtain__panel {
  width: 50%; height: 100%;
  background: linear-gradient(135deg, var(--tr-vinotinto-deep), var(--tr-vinotinto));
  transition: transform 1840ms cubic-bezier(.55,.06,.20,.98);
}
.curtain.is-open .curtain__panel--left { transform: translateX(-101%); }
.curtain.is-open .curtain__panel--right { transform: translateX(101%); }
.curtain__rod {
  position: absolute; top: 0; left: 0; right: 0; height: 18px;
  background: linear-gradient(180deg, #d4af37 0%, #8a6d1e 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,.6); z-index: 1;
}
.curtain.is-done { display: none; }
.curtain__panel--left { left: 0; }
.curtain__panel--right { right: 0; }

/* === STEPPER === */
.stepper { display: flex; justify-content: center; gap: var(--space-lg); margin-bottom: var(--space-xl); }
.step { display: flex; align-items: center; gap: var(--space-sm); font-size: .85rem; color: var(--gray-500); font-weight: 500; }
.step.active { color: var(--tr-vinotinto); }
.step.active .step-num { background: var(--tr-vinotinto); color: var(--white); }
.step-num { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; background: var(--gray-200); color: var(--gray-500); }

/* === SEAT MAP === */
.reserva-header-info { text-align: center; margin-bottom: var(--space-lg); }
.reserva-header-info h1 { margin-bottom: var(--space-xs); }
.reserva-header-info h2 { font-size: 1.5rem; color: var(--tr-vinotinto); margin-bottom: var(--space-xs); }
.reserva-layout { position: relative; }
.reserva-step { display: block; }
.reserva-step.hidden { display: none; }

.seatmap-container { margin-bottom: var(--space-lg); }
.seatmap-stage {
  text-align: center;
  background: linear-gradient(135deg, var(--tr-vinotinto-deep), var(--tr-vinotinto));
  color: var(--tr-dorado-soft);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.seatmap-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: var(--space-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y pinch-zoom;
}
.seatmap-svg { width: 100%; height: auto; min-width: 700px; }
.seatmap-loading { text-align: center; padding: var(--space-xxl); color: var(--gray-500); }

.seat { cursor: pointer; transition: all .15s ease; stroke: transparent; stroke-width: 1; }
.seat:hover { stroke: var(--tr-dorado); stroke-width: 2; filter: brightness(1.15); }
.seat:focus-visible { stroke: var(--tr-dorado); stroke-width: 2; outline: none; }
.seat-available { opacity: .85; }
.seat-selected { fill: var(--tr-dorado) !important; opacity: 1; stroke: var(--tr-vinotinto); stroke-width: 2; }
.seat-occupied { fill: var(--tr-tinta) !important; opacity: .3; cursor: not-allowed; }
.seat-blocked { fill: var(--gray-200) !important; opacity: .5; cursor: not-allowed; }

.seatmap-legend { margin-top: var(--space-md); }
.legend-items { display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: center; }
.legend-item { display: inline-flex; align-items: center; gap: var(--space-xs); font-size: .75rem; color: var(--gray-700); }
.legend-dot { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.selected-dot { background: var(--tr-dorado) !important; border: 2px solid var(--tr-vinotinto); }

#step-1 { display: grid; grid-template-columns: 1fr 300px; gap: var(--space-lg); align-items: start; }
.reserva-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: sticky;
  top: 80px;
}
.reserva-sidebar h3 { font-size: 1.1rem; margin-bottom: var(--space-md); color: var(--tr-vinotinto); }
.selected-list { margin-bottom: var(--space-md); min-height: 60px; }
.empty-selection { color: var(--gray-500); font-size: .85rem; text-align: center; padding: var(--space-md) 0; }
.selected-item { display: flex; justify-content: space-between; padding: .4rem 0; border-bottom: 1px solid var(--gray-200); font-size: .85rem; }
.reserva-total { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; color: var(--tr-vinotinto); padding: var(--space-md) 0; border-top: 2px solid var(--tr-vinotinto); }

.form-btns { display: flex; gap: var(--space-md); margin-top: var(--space-lg); }

/* Seat tags in mi-reserva */
.reserva-asientos { margin-top: var(--space-md); }
.seat-tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-sm); }
.seat-tag { background: var(--cream); padding: .4rem .75rem; border-radius: var(--radius-sm); font-size: .85rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; }
.seat-tag small { font-weight: 400; color: var(--gray-500); font-size: .7rem; }
.reserva-total-final { margin-top: var(--space-md); font-size: 1.1rem; color: var(--tr-vinotinto); }


/* === ABOUT STATS === */
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 28px 0; padding: 20px 0; border-top: 1px solid rgba(212,175,55,.4); border-bottom: 1px solid rgba(212,175,55,.4); list-style: none; text-align: center; }
.about-stats strong { display: block; font-family: var(--font-serif); font-size: 1.7rem; color: var(--tr-dorado); }
.about-stats span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }


/* === PAGINATION === */
.pagination { display: flex; justify-content: center; gap: 4px; margin-top: var(--space-xl); padding: var(--space-md) 0; }
.pagination a { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); font-size: .875rem; font-weight: 500; color: var(--ink); transition: all var(--t-fast); }
.pagination a:hover { border-color: var(--tr-dorado); color: var(--tr-dorado); }
.pagination a.active { background: var(--tr-vinotinto); color: var(--white); border-color: var(--tr-vinotinto); pointer-events: none; }

/* === FILTER CHIPS === */
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--space-lg); }
.chip { display: inline-block; padding: 6px 18px; border-radius: 999px; font-size: .8rem; font-weight: 500; border: 1px solid var(--gray-200); color: var(--gray-700); transition: all var(--t-fast); text-decoration: none; }
.chip:hover { border-color: var(--tr-dorado); color: var(--tr-dorado); }
.chip.active { background: var(--tr-vinotinto); color: var(--white); border-color: var(--tr-vinotinto); }

/* === BREADCRUMB === */
.breadcrumb { padding: var(--space-sm) 0; font-size: .8rem; color: var(--gray-500); background: var(--cream); border-bottom: 1px solid var(--gray-200); }
.breadcrumb .container { display: flex; align-items: center; gap: .5rem; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--tr-dorado); }
.breadcrumb span { color: var(--ink); font-weight: 500; }

/* === LIGHTBOX DIALOG === */
.lightbox-dialog { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100%; height: 100%; }
.lightbox-dialog::backdrop { background: rgba(8,4,2,.92); }
.lightbox-stage { margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; padding: 24px; }
.lightbox-img { max-width: 92vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-caption { color: rgba(248,241,228,.8); font-size: .9rem; text-align: center; margin-top: var(--space-sm); }
.lightbox-close, .lightbox-prev, .lightbox-next { position: fixed; background: rgba(212,175,55,.12); color: rgba(248,241,228,.9); border: 1px solid rgba(212,175,55,.3); border-radius: 50%; width: 48px; height: 48px; font-size: 1.6rem; cursor: pointer; display: grid; place-items: center; transition: background .2s; z-index: 10; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(212,175,55,.25); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { top: 50%; left: 20px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 20px; transform: translateY(-50%); }


/* === HISTORIA FINAL IMAGE === */
.historia-final-img { max-width: 880px; margin: 0 auto; }
.historia-final-img picture img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }

/* === NOTICIAS HEADER === */
.noticias-header { margin-bottom: var(--space-xl); }
.noticias-header h1 { margin-bottom: var(--space-xs); }


/* === EVENTO DETAIL v3 === */
.evento-hero-overlay { gap: var(--space-xs); }
.evento-hero-meta { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-sm); }
.evento-hero-tag { display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,.15); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); color: rgba(255,255,255,.9); padding: .3rem .8rem; border-radius: var(--radius-sm); font-size: .8rem; font-weight: 500; }
.evento-section-title { font-size: 1.3rem; color: var(--tr-vinotinto); margin-bottom: var(--space-md); margin-top: var(--space-xl); padding-bottom: var(--space-xs); border-bottom: 2px solid var(--tr-dorado); display: inline-block; }
.evento-section-title:first-child, .evento-main .evento-section-title:first-of-type { margin-top: 0; }
.evento-ficha-list { display: flex; flex-direction: column; gap: var(--space-xs); margin-bottom: var(--space-lg); }
.ficha-item { display: flex; gap: var(--space-sm); padding: .4rem 0; border-bottom: 1px solid var(--gray-200); font-size: .95rem; }
.ficha-item:last-child { border-bottom: none; }
.ficha-role { color: var(--gray-500); font-weight: 600; min-width: 140px; flex-shrink: 0; }
.ficha-name { color: var(--gray-700); }
.funcion-ocupacion { height: 4px; background: var(--gray-200); border-radius: 2px; margin-top: 4px; overflow: hidden; }
.funcion-ocupacion-bar { height: 100%; background: linear-gradient(90deg, var(--success), var(--tr-dorado)); border-radius: 2px; transition: width .3s; }
.evento-relacionados { margin-top: var(--space-xxl); padding-top: var(--space-xl); border-top: 1px solid var(--gray-200); }

/* === CONTACT PAGE v3 === */
.contact-page { padding: var(--space-xxl) 0; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.contact-form-wrap { background: var(--white); padding: clamp(24px, 4vw, 48px); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-info { position: sticky; top: 100px; }
.contact-info h3 { font-size: 1.1rem; color: var(--tr-vinotinto); margin: var(--space-lg) 0 var(--space-sm); }
.contact-info h3:first-child { margin-top: 0; }
.contact-address { font-style: normal; line-height: 1.7; color: var(--gray-700); }
.contact-hours { background: var(--cream); padding: var(--space-md); border-radius: var(--radius-md); border-left: 3px solid var(--tr-dorado); margin: var(--space-md) 0; }
.contact-hours dt { font-weight: 600; font-size: .85rem; }
.contact-hours dd { color: var(--gray-700); font-size: .9rem; margin: 0 0 var(--space-xs); }
.contact-social { display: flex; gap: 12px; margin-top: var(--space-md); }
.contact-social a { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--cream); border: 1px solid var(--gray-200); color: var(--burgundy); transition: all var(--t-fast); }
.contact-social a:hover { background: var(--tr-vinotinto); color: var(--white); border-color: var(--tr-vinotinto); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin: var(--space-md) 0; }
.map-embed iframe { display: block; }
.map-buttons { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); }
.map-buttons a { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: var(--radius-sm); font-size: .8rem; font-weight: 600; border: 1px solid var(--gray-200); color: var(--gray-700); }
.map-buttons a:hover { border-color: var(--tr-dorado); color: var(--tr-dorado); }

/* === MOBILE === */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--tr-vinotinto-deep);
    padding: var(--space-md) var(--space-lg);
    gap: var(--space-xs);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .about-grid, .arch-grid, .contact-grid, .evento-detail { grid-template-columns: 1fr; }
  .hero { height: 60vh; }
  .events-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 16px; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 40px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 1; text-align: left; padding: 0; }
  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year { grid-column: 1; justify-self: start; }
  .timeline-item:nth-child(odd) .timeline-year::after,
  .timeline-item:nth-child(even) .timeline-year::after { display: none; }

  #step-1 { grid-template-columns: 1fr; }
  .reserva-sidebar { position: static; }
  .stepper { gap: var(--space-sm); font-size: .75rem; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .about-stats strong { font-size: 1.3rem; }
  .lightbox-prev, .lightbox-next { width: 36px; height: 36px; font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .curtain { display: none; }
  .reveal { opacity: 1; transform: none; }
}

/* === EVENTO INDIVIDUAL PREMIUM === */
.evento-hero-overlay { padding: var(--space-xl) var(--space-lg); gap: var(--space-sm); }
.evento-hero-overlay h1 { text-shadow: 0 4px 20px rgba(0,0,0,.5); font-size: clamp(2rem, 5vw, 3.5rem); max-width: 800px; }
.evento-hero-overlay .badge-cat { font-size: .7rem; padding: .3rem 1rem; letter-spacing: .15em; }
.page-hero.evento-page-hero { height: 55vh; min-height: 360px; }

.evento-detail { gap: clamp(32px, 5vw, 64px); }
.evento-main { min-width: 0; }
.evento-sinopsis { font-size: 1.05rem; line-height: 1.85; text-align: justify; hyphens: auto; white-space: pre-line; color: var(--gray-700); }
.evento-sinopsis p, .evento-sinopsis br + br { margin-bottom: var(--space-md); }

.evento-section-title { position: relative; display: inline-block; margin-top: var(--space-xl); margin-bottom: var(--space-md); padding-bottom: var(--space-xs); font-size: 1.3rem; color: var(--tr-vinotinto); }
.evento-section-title::after { content: ; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--tr-dorado), transparent); }

.evento-ficha-list { background: var(--cream); border-radius: var(--radius-md); padding: var(--space-md) var(--space-lg); margin-bottom: var(--space-lg); }
.ficha-item { display: flex; gap: var(--space-md); padding: .5rem 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .9rem; }
.ficha-item:last-child { border-bottom: none; }
.ficha-role { font-weight: 600; color: var(--tr-vinotinto); min-width: 140px; flex-shrink: 0; }
.ficha-name { color: var(--gray-700); }

.evento-sidebar { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: var(--space-lg); position: sticky; top: 80px; box-shadow: var(--shadow-sm); }
.evento-sidebar h3 { font-size: 1.1rem; color: var(--tr-vinotinto); margin-bottom: var(--space-md); padding-bottom: var(--space-xs); border-bottom: 2px solid var(--tr-dorado); }

.funcion-card { background: var(--cream); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: var(--space-md); margin-bottom: var(--space-sm); transition: all var(--t-mid); }
.funcion-card:hover { border-color: var(--tr-dorado); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.funcion-info time { font-weight: 600; font-size: .9rem; color: var(--ink); display: block; }
.funcion-dispo { font-size: .75rem; color: var(--success); font-weight: 500; margin-top: 2px; }
.funcion-ocupacion { height: 4px; background: var(--gray-200); border-radius: 2px; margin-top: 6px; overflow: hidden; }
.funcion-ocupacion-bar { height: 100%; background: linear-gradient(90deg, var(--success), var(--tr-dorado)); border-radius: 2px; }

.precio-ref { margin-top: var(--space-lg); padding: var(--space-md); background: linear-gradient(135deg, var(--tr-crema), var(--white)); border-radius: var(--radius-md); border: 1px solid var(--gray-200); text-align: center; }
.precio-ref p { font-size: 1.1rem; font-weight: 600; color: var(--tr-vinotinto); margin: 0; }
.precio-ref small { font-size: .8rem; color: var(--gray-500); display: block; margin-top: var(--space-xs); }

.evento-meta { display: flex; gap: var(--space-lg); margin-top: var(--space-xl); padding: var(--space-md); background: var(--cream); border-radius: var(--radius-md); font-size: .85rem; color: var(--gray-500); border-left: 3px solid var(--tr-dorado); }

.evento-relacionados { margin-top: var(--space-xxl); }
.evento-relacionados h2 { text-align: center; margin-bottom: var(--space-xl); }

/* === SEATMAP CENTERING FIX === */
.seatmap-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.seatmap-svg { display: block; margin: 0 auto; min-width: 600px; max-width: 100%; }
.seatmap-stage { text-align: center; max-width: 100%; }

/* === BOLIVARES PRICE === */
.bs-price { font-size: .75rem; color: var(--gray-500); font-weight: 400; display: block; }
.bs-equiv { font-size: .85rem; color: var(--gray-500); font-weight: 400; }

/* === RESERVA FORM CARD (Step 2) === */
.reserva-form-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 48px); box-shadow: var(--shadow-md); max-width: 600px; margin: 0 auto; }
.reserva-form-header { text-align: center; margin-bottom: var(--space-lg); }
.reserva-form-header h2 { color: var(--tr-vinotinto); margin-bottom: var(--space-xs); }
.reserva-form-subtitle { color: var(--gray-500); font-size: .9rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.reserva-form .form-group { margin-bottom: 0; }
.reserva-form .form-group label { display: block; margin-bottom: var(--space-xs); font-weight: 600; font-size: .85rem; color: var(--gray-700); }
.reserva-form .form-group input { width: 100%; padding: .875rem 1rem; border-radius: var(--radius-md); border: 1px solid var(--gray-200); transition: all var(--t-fast); font-size: .95rem; }
.reserva-form .form-group input:focus { border-color: var(--tr-dorado); box-shadow: 0 0 0 3px rgba(212,162,74,.15); outline: none; }
.reserva-form-notice { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-md); background: var(--cream); border-radius: var(--radius-md); border-left: 3px solid var(--tr-dorado); font-size: .85rem; color: var(--gray-700); margin: var(--space-lg) 0; }
.reserva-form .form-btns { display: flex; gap: var(--space-md); justify-content: center; margin-top: 0; }

/* === NOTICIA INDIVIDUAL === */
.noticia-hero { width: 100%; max-height: 450px; overflow: hidden; }
.noticia-hero-img { width: 100%; height: 450px; object-fit: cover; display: block; }

.noticia-layout { max-width: 780px; margin: 0 auto; }

.noticia-header { margin-bottom: var(--space-xl); padding-bottom: var(--space-lg); border-bottom: 1px solid var(--gray-200); }
.noticia-meta-top { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-sm); }
.noticia-meta-top time { font-size: .8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
.noticia-read-time { font-size: .8rem; color: var(--gray-500); padding-left: var(--space-md); border-left: 1px solid var(--gray-200); }
.noticia-header h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--ink); line-height: 1.2; margin-bottom: var(--space-sm); }
.noticia-autor { font-size: .9rem; color: var(--gray-500); }
.noticia-autor strong { color: var(--ink); }

.noticia-body { font-size: 1.05rem; line-height: 1.85; color: var(--gray-700); }
.noticia-body p { text-align: justify; hyphens: auto; margin-bottom: var(--space-md); }
.noticia-body img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: var(--space-lg) 0; box-shadow: var(--shadow-sm); }
.noticia-body h2, .noticia-body h3 { color: var(--ink); margin-top: var(--space-xl); margin-bottom: var(--space-sm); }
.noticia-body blockquote { border-left: 3px solid var(--tr-dorado); padding-left: var(--space-md); font-style: italic; color: var(--gray-500); margin: var(--space-lg) 0; }

.noticia-share { display: flex; align-items: center; gap: var(--space-md); margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid var(--gray-200); font-size: .85rem; flex-wrap: wrap; }
.noticia-share span { color: var(--gray-500); font-weight: 500; }
.noticia-share a { display: inline-flex; align-items: center; gap: 6px; color: var(--burgundy); font-weight: 500; padding: 6px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); transition: all var(--t-fast); }
.noticia-share a:hover { border-color: var(--tr-dorado); color: var(--tr-dorado); }
.noticia-share a svg { flex-shrink: 0; }

.noticia-nav { margin-top: var(--space-lg); padding-top: var(--space-md); }

@media (max-width: 768px) {
  .noticia-hero-img { height: 260px; }
  .noticia-header h1 { font-size: 1.5rem; }
  .noticia-meta-top { flex-wrap: wrap; }
  .noticia-share { gap: var(--space-sm); }
  .noticia-share a { padding: 5px 10px; font-size: .8rem; }
}
