* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body { background: #080808; color: #fff; font-family: 'DM Sans', sans-serif; overflow-x: hidden; }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #080808; position: sticky; top: 0; z-index: 100;
}
.logo img { height: 42px; width: auto; }
.nav {
  display: flex; gap: 52px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav a { color: #999; text-decoration: none; font-size: 15px; font-weight: 500; letter-spacing: 0.01em; transition: color .2s; }
.nav a:hover { color: #fff; }
.header-right { display: flex; align-items: center; gap: 20px; }
.lang { font-size: 14px; font-weight: 600; color: #fff; cursor: pointer; display: flex; align-items: center; gap: 4px; }
.user-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero { display: flex; gap: 10px; padding: 12px; height: calc(100vh - 72px - 90px); min-height: 520px; }
.panel-side { position: relative; overflow: hidden; flex: 0 0 160px; border-radius: 16px; cursor: pointer; opacity: 0.55; }
.panel-side:hover { opacity: 0.75; }
.panel-side.left { transform: perspective(800px) rotateY(12deg); transform-origin: right center; transition: transform .3s, opacity .3s; }
.panel-side.right { transform: perspective(800px) rotateY(-12deg); transform-origin: left center; transition: transform .3s, opacity .3s; }
.panel-side.left:hover { transform: perspective(800px) rotateY(5deg); }
.panel-side.right:hover { transform: perspective(800px) rotateY(-5deg); }
.panel-inner { position: absolute; inset: 0; }
.video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.side-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); z-index: 1; }
.panel-main { flex: 1; border-radius: 16px; position: relative; overflow: hidden; background: #0A0101; }
.overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,0.1) 0%, transparent 30%, rgba(8,8,8,0.5) 65%, rgba(8,8,8,0.96) 100%); z-index: 1; }
.slide-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 44px 48px; z-index: 10; }
.meta { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.red { color: #E8272A; }
.slide-content h1 { font-size: 64px; font-weight: 800; line-height: 1.04; letter-spacing: -0.02em; margin-bottom: 14px; }
.slide-content p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 28px; font-weight: 400; }
.btns { display: flex; gap: 14px; }
.btn-red { background: #E8272A; color: #fff; border: none; padding: 15px 32px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .2s; text-decoration: none; display: inline-block; }
.btn-red:hover { background: #C01F22; }
.btn-outline { background: transparent; color: #E8272A; border: 1.5px solid #E8272A; padding: 15px 32px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .2s; text-decoration: none; display: inline-block; }
.btn-outline:hover { background: #E8272A; color: #fff; }

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee-wrap { border-top: 1px solid #E8272A; border-bottom: 1px solid #E8272A; padding: 14px 0; overflow: hidden; position: relative; background: #080808; }
.marquee-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: #E8272A; background: #080808; padding: 0 16px; z-index: 10; white-space: nowrap; }
.marquee-track { overflow: hidden; width: 100%; }
.marquee-inner { display: flex; align-items: center; gap: 32px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-inner span { font-size: 15px; font-weight: 700; letter-spacing: 0.08em; color: #fff; white-space: nowrap; }
.marquee-inner .dot { color: #E8272A; font-size: 12px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════
   FILTER BAR
══════════════════════════════ */
.filter-bar { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 20px 12px; }
.filter-tabs { display: flex; background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.ftab { padding: 12px 24px; border: none; border-right: 1px solid rgba(255,255,255,0.08); background: transparent; color: #666; font-size: 14px; font-weight: 500; cursor: pointer; white-space: nowrap; font-family: 'DM Sans', sans-serif; transition: all .2s; display: flex; align-items: center; gap: 8px; }
.ftab:last-child { border-right: none; }
.ftab.active { background: #1C1C1C; color: #fff; }
.ftab:hover { color: #fff; }
.explore-btn { background: #E8272A; color: #fff; border: none; padding: 12px 32px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; white-space: nowrap; transition: background .2s; text-decoration: none; display: inline-block; }
.explore-btn:hover { background: #C01F22; }

/* ══════════════════════════════
   EVENTS SECTION
══════════════════════════════ */
.events-section { padding: 64px 0 80px; }
.events-header { display: flex; justify-content: space-between; align-items: flex-start; padding: 0 40px 24px; }
.events-header h2 { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.events-header p { font-size: 13px; color: #555; max-width: 400px; line-height: 1.5; }
.browse-btn { border: 1px solid rgba(255,255,255,0.18); background: transparent; color: #fff; padding: 10px 20px; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer; letter-spacing: 0.05em; font-family: 'DM Sans', sans-serif; transition: border-color .2s; text-decoration: none; display: inline-block; }
.browse-btn:hover { border-color: rgba(255,255,255,0.4); }

/* ══════════════════════════════
   CAROUSEL
══════════════════════════════ */
.carousel { display: flex; gap: 16px; padding: 0 40px 20px; overflow-x: auto; scrollbar-width: none; cursor: grab; -webkit-overflow-scrolling: touch; width: 100%; }
.carousel:active { cursor: grabbing; }
.carousel::-webkit-scrollbar { display: none; }
.card { flex: 0 0 200px; cursor: pointer; transition: transform .2s; }
.card:hover { transform: translateY(-5px); }
.card-poster { width: 200px; height: 280px; border-radius: 8px; position: relative; overflow: hidden; margin-bottom: 12px; }
.e1 .card-poster { background: linear-gradient(135deg, #FF6B35, #C1440E); }
.e2 .card-poster { background: linear-gradient(135deg, #1A1A2E, #0F3460); }
.e3 .card-poster { background: linear-gradient(160deg, #2D1B69, #11998E); }
.e4 .card-poster { background: linear-gradient(135deg, #0F0C29, #302B63); }
.e5 .card-poster { background: linear-gradient(135deg, #134E5E, #71B280); }
.e6 .card-poster { background: linear-gradient(135deg, #1A1A1A, #3A3A3A); }
.e7 .card-poster { background: linear-gradient(135deg, #8B0000, #DC143C); }
.e8 .card-poster { background: linear-gradient(135deg, #4A00E0, #8E2DE2); }
.fav { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; border: none; color: #fff; transition: background .2s; }
.fav:hover { background: rgba(0,0,0,0.8); }
.card-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; line-height: 1.3; }
.card-venue { font-size: 12px; color: #555; margin-bottom: 1px; }
.card-date { font-size: 12px; color: #E8272A; font-weight: 600; margin-bottom: 3px; }
.card-price { font-size: 13px; color: #fff; font-weight: 500; }

/* ══════════════════════════════
   CATEGORIES
══════════════════════════════ */
.categories-section { padding: 80px 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.cat-header { margin-bottom: 32px; }
.cat-header h2 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.cat-header p { font-size: 13px; color: #555; }
.cat-grid { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 350px 350px; gap: 10px; width: 100%; }
.cat-card { border-radius: 10px; overflow: hidden; }
.cat-large { grid-row: 1 / 3; }
.cat-img { width: 100%; height: 100%; position: relative; overflow: hidden; cursor: pointer; }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,0.1) 0%, rgba(8,8,8,0.2) 50%, rgba(8,8,8,0.85) 100%); transition: background .4s; }
.cat-img:hover .cat-overlay { background: rgba(8,8,8,0.6); }
.cat-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 10; }
.cat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: #E8272A; display: block; margin-bottom: 8px; }
.cat-content h3 { font-size: 26px; font-weight: 800; margin-bottom: 0; transition: margin .3s; }
.cat-large .cat-content h3 { font-size: 38px; }
.cat-content p { font-size: 13px; color: rgba(255,255,255,0.75); max-height: 0; overflow: hidden; opacity: 0; transition: all .35s ease; margin: 0; }
.cat-btn { display: inline-block; font-size: 12.5px; font-weight: 600; color: #E8272A; text-decoration: none; max-height: 0; overflow: hidden; opacity: 0; transition: all .35s ease; margin-top: 0; }
.cat-img:hover .cat-content h3 { margin-bottom: 10px; }
.cat-img:hover .cat-content p { max-height: 60px; opacity: 1; margin-bottom: 10px; }
.cat-img:hover .cat-btn { max-height: 30px; opacity: 1; }

/* ══════════════════════════════
   VALUE SECTION
══════════════════════════════ */
.value-section { padding: 100px 40px; }
.value-title { text-align: center; font-size: 32px; font-weight: 800; letter-spacing: 0.04em; margin-bottom: 48px; line-height: 1.2; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1200px; margin: 0 auto; }
.value-card { border-radius: 16px; padding: 40px; display: flex; flex-direction: column; align-items: center; gap: 32px; min-height: 700px; }
.value-card.dark { background: #111; }
.value-card.light { background: #F0EDE8; }
.value-card-text h3 { font-size: 22px; font-weight: 800; letter-spacing: 0.05em; text-align: center; line-height: 1.3; }
.value-card.light .value-card-text h3 { color: #080808; }
.phone-mockup { background: #1A1A1A; border-radius: 24px; padding: 16px; width: 260px; border: 1px solid rgba(255,255,255,0.1); }
.phone-screen-inner { background: #080808; border-radius: 14px; overflow: hidden; }
.phone-poster { height: 140px; width: 100%; }
.phone-poster.e1 { background: linear-gradient(135deg, #FF6B35, #C1440E); }
.phone-event-info { padding: 14px; }
.phone-event-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.phone-date { font-size: 12px; color: #E8272A; font-weight: 600; }
.phone-venue { font-size: 12px; color: #666; margin: 4px 0 12px; }
.phone-price-row { display: flex; align-items: center; justify-content: space-between; }
.phone-price { font-size: 16px; font-weight: 700; color: #fff; }
.phone-buy { background: #E8272A; color: #fff; border: none; padding: 8px 16px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; }
.ticket-mockup { display: flex; justify-content: center; }
.ticket { background: #fff; border-radius: 12px; padding: 24px; width: 260px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.ticket-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.ticket-logo { height: 28px; width: auto; filter: invert(1); }
.ticket-label { font-size: 11px; font-weight: 700; color: #999; letter-spacing: 0.08em; }
.ticket-event { font-size: 18px; font-weight: 800; color: #080808; margin-bottom: 4px; }
.ticket-venue { font-size: 11px; color: #888; margin-bottom: 20px; }
.ticket-qr { display: flex; justify-content: center; margin-bottom: 16px; }
.ticket-divider { height: 1px; background: #eee; margin-bottom: 12px; }
.ticket-footer { font-size: 12px; color: #666; text-align: center; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { background: #080808; border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 40px 32px; }
.footer-top { display: grid; grid-template-columns: 250px 1fr; gap: 60px; margin-bottom: 48px; align-items: start; }
.footer-brand { display: flex; flex-direction: column; gap: 24px; }
.footer-logo { height: 52px; width: auto; object-fit: contain; }
.footer-cta-btn { display: inline-block; border: 1px solid rgba(255,255,255,0.2); color: #fff; text-decoration: none; padding: 10px 18px; border-radius: 4px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; transition: border-color .2s; width: fit-content; }
.footer-cta-btn:hover { border-color: rgba(255,255,255,0.5); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: #555; margin-bottom: 4px; }
.footer-col a { color: #888; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 32px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-social { display: flex; align-items: center; gap: 16px; }
.footer-social-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: #444; }
.social-icons { display: flex; gap: 16px; }
.social-icons a { color: #555; transition: color .2s; }
.social-icons a:hover { color: #fff; }
.footer-legal { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: #555; text-decoration: none; font-size: 12px; transition: color .2s; }
.footer-legal a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: #333; }

/* ══════════════════════════════
   WHATSAPP
══════════════════════════════ */
.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.3); z-index: 999; transition: transform .2s, box-shadow .2s; text-decoration: none; }
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(37,211,102,0.5); }
.whatsapp-tooltip { position: absolute; right: 70px; background: #fff; color: #080808; font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.whatsapp-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: #fff; }
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ══════════════════════════════
   COOKIE POPUP
══════════════════════════════ */
.cookie-popup { position: fixed; bottom: 24px; left: 24px; max-width: 560px; background: #141414; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 24px; z-index: 9999; box-shadow: 0 8px 40px rgba(0,0,0,0.5); animation: slideUp .4s ease; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-content { display: flex; align-items: center; gap: 16px; width: 100%; }
.cookie-icon { font-size: 28px; flex-shrink: 0; }
.cookie-text { flex: 1; }
.cookie-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.cookie-desc { font-size: 12px; color: #777; line-height: 1.5; }
.cookie-link { color: #E8272A; text-decoration: none; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-decline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #888; padding: 9px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; white-space: nowrap; transition: all .2s; }
.cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.cookie-accept { background: #E8272A; border: none; color: #fff; padding: 9px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; white-space: nowrap; transition: background .2s; }
.cookie-accept:hover { background: #C01F22; }
.cookie-hidden { display: none !important; }

/* ══════════════════════════════
   RESPONSIVE TABLET
══════════════════════════════ */
@media (max-width: 1024px) {
  .panel-side { flex: 0 0 100px; }
  .slide-content h1 { font-size: 50px; }
  .nav { gap: 32px; }
}

/* ══════════════════════════════
   RESPONSIVE MÓVIL
══════════════════════════════ */
@media (max-width: 768px) {
  .header { padding: 0 20px; }
  .user-btn { display: none; }
  .hamburger { display: flex; }
  .nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 40px; z-index: 999; display: none; transform: none;
  }
  .nav.open { display: flex !important; }
  .nav a { font-size: 28px; font-weight: 700; color: #fff; }
  .hero { padding: 8px; gap: 6px; height: calc(100svh - 72px - 76px); min-height: 460px; }
  .panel-side { flex: 0 0 36px; border-radius: 10px; opacity: 0.5; }
  .panel-side.left { transform: perspective(400px) rotateY(8deg); }
  .panel-side.right { transform: perspective(400px) rotateY(-8deg); }
  .slide-content { padding: 20px 18px 24px; }
  .slide-content h1 { font-size: 34px; }
  .slide-content p { font-size: 14px; }
  .btns { flex-direction: column; gap: 10px; }
  .btn-red, .btn-outline { width: 100%; text-align: center; padding: 14px; }
  .filter-bar { flex-direction: column; align-items: stretch; padding: 10px; }
  .filter-tabs { border-radius: 8px; overflow-x: auto; }
  .ftab { padding: 12px 16px; font-size: 13px; flex-shrink: 0; }
  .explore-btn { width: 100%; text-align: center; padding: 14px; border-radius: 8px; }
  .events-header { padding: 0 16px 20px; }
  .carousel { padding: 0 16px 10px; }
  .categories-section { padding: 60px 16px; }
  .cat-grid { grid-template-columns: 1fr; grid-template-rows: 300px 220px 220px; height: auto; }
  .cat-large { grid-row: auto; }
  .cat-content p { max-height: 60px; opacity: 1; margin-bottom: 10px; }
  .cat-btn { max-height: 30px; opacity: 1; }
  .cat-content h3 { margin-bottom: 8px; }
  .value-section { padding: 60px 20px; }
  .value-title { font-size: 22px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: auto; }
  .footer { padding: 40px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-popup { bottom: 16px; left: 16px; right: 16px; padding: 18px; }
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-decline, .cookie-accept { flex: 1; text-align: center; }
  .whatsapp-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
