/* ============================================================
   TEATRO LEONARDUS — DESIGN SYSTEM
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1b2a;
  --navy-deep: #060e17;
  --red: #c0392b;
  --red-dark: #922b21;
  --gold: #c9a84c;
  --gold-light: #f0d078;
  --off-white: #f7f5f0;
  --white: #ffffff;
  --gray-100: #f0ece5;
  --gray-200: #ddd8ce;
  --gray-500: #888074;
  --gray-800: #2c2a27;
  --text-primary: #1a1714;
  --text-secondary: #4a4540;
  --font-sans: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 30px rgba(0,0,0,0.12);
  --shadow-heavy: 0 12px 60px rgba(0,0,0,0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }

em { font-style: italic; color: inherit; }

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

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title { margin-bottom: 1.5rem; color: var(--navy-deep); }
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.8;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  color: var(--navy);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-light {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
}
.btn-light:hover { background: var(--white); color: var(--navy); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

/* --- SOLDOUT BADGE --- */
.soldout-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25em 0.6em;
  border-radius: 2px;
  vertical-align: middle;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(6, 14, 23, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.85rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.site-header.scrolled .logo-img { height: 36px; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  background: var(--navy);
  border: 1.5px solid var(--navy);
  transition: var(--transition);
}
.nav-btn:hover { background: var(--navy-deep); }
.nav-btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
}
.nav-btn-outline:hover { background: rgba(255,255,255,0.1); }

.hamburger {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- NAV OVERLAY --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 4rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.nav-overlay.open { transform: translateX(0); }

.nav-close {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
  line-height: 1;
}
.nav-close:hover { opacity: 1; transform: rotate(90deg); }

.overlay-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.overlay-nav ul li a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
  display: inline-block;
}
.overlay-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.overlay-nav ul li a:hover { color: var(--white); padding-left: 8px; }
.overlay-nav ul li a:hover::after { width: 100%; }

.overlay-footer {
  position: absolute;
  bottom: 2.5rem;
  left: 4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.overlay-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.overlay-social a {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.overlay-social a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,14,23,0.65) 0%,
    rgba(6,14,23,0.45) 50%,
    rgba(6,14,23,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 900px;
  animation: fadeUp 1s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-title em {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}
.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta-group .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
.hero-cta-group .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* ============================================================
   FEATURED EVENT
   ============================================================ */
.featured-event {
  padding: 6rem 0;
  background: var(--off-white);
}
.featured-event .section-title { text-align: center; }
.featured-event .section-eyebrow { text-align: center; display: block; }

.event-card-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.event-card-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}
.event-card-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-card-img:hover img { transform: scale(1.03); }

.event-soldout-overlay {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(192,57,43,0.5);
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}
.event-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.event-meta-item .meta-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.event-meta-item div { display: flex; flex-direction: column; gap: 2px; }
.event-meta-item strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.event-meta-item span { font-size: 0.95rem; color: var(--text-primary); font-weight: 500; }

.event-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.ticket-status {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: #fdf0ee;
  border: 1px solid #faddd9;
}
.ticket-status.agotado .ticket-icon { font-size: 1.5rem; flex-shrink: 0; }
.ticket-status.agotado strong {
  display: block;
  color: var(--red-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.ticket-status.agotado p { font-size: 0.9rem; color: var(--text-secondary); }
.ticket-status.agotado a { color: var(--red-dark); text-decoration: underline; }

/* ============================================================
   SYNOPSIS
   ============================================================ */
.synopsis-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.synopsis-bg {
  position: absolute;
  inset: 0;
}
.synopsis-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.synopsis-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,14,23,0.92) 0%, rgba(6,14,23,0.75) 100%);
}
.synopsis-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.synopsis-text {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

/* ============================================================
   DRESS CODE
   ============================================================ */
.dresscode-section {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}
.dresscode-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}
.dresscode-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.dresscode-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.dresscode-card.dresscode-center {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  border-color: var(--navy);
}
.dresscode-icon { font-size: 2rem; margin-bottom: 1rem; }
.dresscode-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}
.dresscode-card.dresscode-center h3 { color: var(--gold-light); }
.dresscode-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.dresscode-card ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}
.dresscode-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.dresscode-card.dresscode-center ul li { color: rgba(255,255,255,0.8); }
.dresscode-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.dresscode-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1rem;
}
.dresscode-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ============================================================
   WHAT TO EXPECT
   ============================================================ */
.expect-section {
  padding: 6rem 0;
  background: var(--gray-100);
  text-align: center;
}
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}
.expect-item {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.expect-item:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.expect-num {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 1rem;
}
.expect-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--navy-deep);
}
.expect-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   SOLDOUT BANNER
   ============================================================ */
.soldout-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 4rem 0;
}
.soldout-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.soldout-icon { font-size: 3rem; flex-shrink: 0; }
.soldout-text { flex: 1; min-width: 280px; }
.soldout-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.soldout-text h2 em { font-style: italic; }
.soldout-text p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.7; }
.soldout-text a { color: var(--white); text-decoration: underline; }

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  padding: 6rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-text .btn-primary { margin-top: 1rem; }
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); }
.footer-red-banner {
  background: var(--red);
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-logo-img { height: 60px; filter: brightness(0) invert(1); margin: 0 auto; }
.footer-bottom {
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a, .footer-col p, .footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover, .footer-col a:hover { color: var(--white); }
.footer-col p { margin-bottom: 0.4rem; }
.footer-social { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-legal {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ============================================================
   SECONDARY PAGES — SHARED STYLES
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 9rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.page-hero .section-eyebrow { text-align: center; display: block; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

.content-section { padding: 5rem 0; }
.content-section-alt { padding: 5rem 0; background: var(--off-white); }

/* ============================================================
   EVENTOS PAGE
   ============================================================ */
.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}
.event-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}
.event-detail-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.event-detail-overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.event-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-deep);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.event-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.event-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--gray-100);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  color: var(--text-secondary);
}
.event-synopsis-text { color: var(--text-secondary); line-height: 1.9; font-size: 0.95rem; }
.event-synopsis-text p { margin-bottom: 1.2rem; }

.full-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
}
.full-meta-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}
.full-meta-item span { font-size: 0.95rem; font-weight: 600; }

.cast-section { margin: 2rem 0; }
.cast-section h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--navy-deep); }
.cast-list { display: flex; flex-direction: column; gap: 0.5rem; }
.cast-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.cast-item .cast-role { color: var(--gray-500); }

.sold-out-notice {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 2rem 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 2rem;
}
.sold-out-notice h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.4rem; }
.sold-out-notice p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--navy-deep); }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-text { font-size: 0.92rem; color: var(--text-secondary); }
.contact-detail-text strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-detail-text a { color: var(--navy); font-weight: 500; }
.contact-detail-text a:hover { color: var(--gold); }

.waitlist-form-section {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.waitlist-form-section h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--navy-deep); }
.waitlist-form-section p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,42,0.1);
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.active { display: block; }
.form-success .success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h4 { font-size: 1.2rem; color: var(--navy-deep); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--text-secondary); }

/* ============================================================
   NOSOTROS PAGE
   ============================================================ */
.timeline { max-width: 700px; margin: 3rem auto; }
.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 29px;
  top: 50px;
  bottom: 0;
  width: 1px;
  background: var(--gray-200);
}
.timeline-dot {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 1;
}
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--navy-deep); }
.timeline-content p { font-size: 0.9rem; color: var(--text-secondary); }

/* ============================================================
   GALERIA PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item.large { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,14,23,0.5);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .event-card-large { grid-template-columns: 1fr; }
  .event-card-img img { height: 320px; }
  .dresscode-grid { grid-template-columns: 1fr; }
  .dresscode-center { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 320px; }
  .about-img-badge { left: 1rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .event-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .expect-grid { grid-template-columns: 1fr; }
  .full-meta { grid-template-columns: 1fr; }
  .nav-overlay { padding: 4rem 2rem; }
  .overlay-footer { left: 2rem; }
  .soldout-content { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; aspect-ratio: 4/3; }
}
