CSS
/* ============================================
   GALERIA.CSS — Estilos exclusivos de galeria.html
   ============================================ */
 
:root {
  --card-aspect: 16/9;
}
 
body {
  padding-top: var(--nav-height);
}
 
/* Hero Section */
.gallery-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(to bottom, #000, var(--bg));
}
 
.gallery-hero p {
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 800;
}
 
.gallery-hero h1 {
  font-size: clamp(40px, 10vw, 100px);
  line-height: 0.85;
  color: white;
  margin-bottom: 20px;
}
 
/* Video Carousel (horizontal, tarjetas en formato vertical 9:16) */
.video-carousel-wrapper {
  position: relative;
  margin-bottom: 120px;
  overflow: hidden;
}
 
.video-carousel-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px 40px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  justify-content: flex-start;
}
 
.video-carousel-container::-webkit-scrollbar {
  display: none;
}
 
.video-item {
  flex: 0 0 auto;
  width: min(300px, 70vw);
  aspect-ratio: 9/16;
  scroll-snap-align: center;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
  transition: var(--transition);
}
 
.video-item:hover {
  border-color: var(--accent);
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
 
.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
  padding: 30px;
  text-align: center;
}
 
.play-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
  box-shadow: 0 0 30px var(--accent-glow);
}
 
.video-item:hover .play-icon {
  transform: scale(1.15);
  background: white;
}
 
.play-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
  margin-left: 5px;
  transition: fill 0.3s;
}
 
.video-item:hover .play-icon svg {
  fill: var(--accent);
}
 
.video-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  text-align: left;
}
 
.video-info h3 {
  font-size: 32px;
  color: white;
  margin-bottom: 5px;
}
 
.video-info span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 800;
}
 
.carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
 
.arrow-btn {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  border-radius: 50%;
}
 
.arrow-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
 
/* Event Cards Grid */
.events-section {
  padding: 100px 0;
  background: var(--surface);
}
 
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
 
.section-title h2 {
  font-size: 50px;
  color: white;
  margin-bottom: 10px;
}
 
.section-title p {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}
 
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
 
.event-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  cursor: none !important;
}
 
.event-card:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
 
.event-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}
 
.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
 
.event-card:hover .event-img img {
  transform: scale(1.1);
}
 
.event-content {
  padding: 30px;
}
 
.event-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
 
.event-card h3 {
  font-size: 28px;
  color: white;
  margin-bottom: 15px;
}
 
.event-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
 
/* Fullscreen Player */
#fullscreen-player {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.98);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
}
 
#fullscreen-player.active {
  display: flex;
}
 
#fullscreen-player video {
  max-width: 90%;
  max-height: 85vh;
  box-shadow: 0 0 100px rgba(0,0,0,1);
}
 
.close-player {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: none !important;
  border-radius: 50%;
  transition: var(--transition);
}
 
.close-player:hover {
  transform: rotate(90deg) scale(1.1);
  background: white;
  color: var(--accent);
}
 
@media (max-width: 968px) {
  .video-item {
    width: min(260px, 65vw);
  }
  .video-info h3 {
    font-size: 24px;
  }
}
 
@media (max-width: 768px) {
  .gallery-hero h1 {
    font-size: 50px;
  }
  .video-item {
    width: 78vw;
  }
  .video-info h3 {
    font-size: 20px;
  }
}
