/* ============================================
   MATERIAL MULTIMEDIA - PREMIUM STYLES
   Media-Rich Interactive Design
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
.multimedia-page {
  --mm-primary: #f43f5e;
  --mm-primary-light: #fb7185;
  --mm-primary-dark: #e11d48;
  --mm-secondary: #8b5cf6;
  --mm-accent: #06b6d4;
  --mm-green: #10b981;
  --mm-yellow: #f59e0b;
  --mm-surface: rgba(255, 255, 255, 0.03);
  --mm-surface-hover: rgba(255, 255, 255, 0.06);
  --mm-border: rgba(255, 255, 255, 0.08);
  --mm-text: #f1f5f9;
  --mm-text-muted: #94a3b8;
  --mm-gradient-1: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 50%, #06b6d4 100%);
  --mm-gradient-2: linear-gradient(135deg, #1a0a12 0%, #0c0a20 100%);
  --mm-glow: 0 0 60px rgba(244, 63, 94, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */
.multimedia-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(244, 63, 94, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
    var(--mm-gradient-2);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(244, 63, 94, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 63, 94, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 80%);
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, var(--mm-primary) 0%, transparent 70%);
}

.orb-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  background: radial-gradient(circle, var(--mm-secondary) 0%, transparent 70%);
  animation-delay: -4s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 30%;
  background: radial-gradient(circle, var(--mm-accent) 0%, transparent 70%);
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 30px) scale(1.05); }
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border: 2px solid rgba(244, 63, 94, 0.1);
  border-radius: 50%;
  animation: shapeRotate 20s linear infinite;
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -200px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -150px;
  border-color: rgba(139, 92, 246, 0.1);
  animation-direction: reverse;
  animation-duration: 25s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 30%;
  right: 10%;
  border-color: rgba(6, 182, 212, 0.1);
  animation-duration: 15s;
}

@keyframes shapeRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mm-text-muted);
  backdrop-filter: blur(10px);
}

.badge-video {
  border-color: rgba(244, 63, 94, 0.3);
  color: var(--mm-primary-light);
}

.badge-360 {
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--mm-secondary);
}

.badge-info {
  border-color: rgba(6, 182, 212, 0.3);
  color: var(--mm-accent);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--mm-text);
}

.title-gradient {
  display: block;
  background: var(--mm-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--mm-text-muted);
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stat-icon {
  font-size: 1.8rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--mm-primary-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--mm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nav-primary {
  background: var(--mm-gradient-1);
  color: white;
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.3);
}

.nav-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.4);
}

.nav-secondary {
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  color: var(--mm-text);
}

.nav-secondary:hover {
  background: var(--mm-surface-hover);
  border-color: rgba(244, 63, 94, 0.3);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-showcase {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.showcase-main {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 20px;
  border: 1px solid var(--mm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.showcase-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(244, 63, 94, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--mm-gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 2;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.4) 0%, transparent 70%);
  animation: playGlow 2s ease-in-out infinite;
}

@keyframes playGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.showcase-thumbnails {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  justify-content: center;
}

.thumb {
  width: 60px;
  height: 60px;
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumb:hover {
  transform: translateY(-5px);
  border-color: var(--mm-primary);
  box-shadow: 0 8px 25px rgba(244, 63, 94, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--mm-text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--mm-border);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--mm-primary-light);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   CATEGORY NAV
   ============================================ */
.category-nav {
  padding: 60px 0;
  background: linear-gradient(180deg, #0c0a20 0%, #0f0d24 100%);
}

.nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(20px);
}

.nav-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nc-videos:hover { border-color: rgba(244, 63, 94, 0.4); }
.nc-360:hover { border-color: rgba(139, 92, 246, 0.4); }
.nc-infografias:hover { border-color: rgba(6, 182, 212, 0.4); }
.nc-animaciones:hover { border-color: rgba(245, 158, 11, 0.4); }

.nc-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.nc-content {
  flex: 1;
}

.nc-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--mm-text);
  margin-bottom: 4px;
}

.nc-content p {
  font-size: 0.85rem;
  color: var(--mm-text-muted);
}

.nc-arrow {
  color: var(--mm-text-muted);
  transition: transform 0.3s ease;
}

.nav-card:hover .nc-arrow {
  transform: translateX(5px);
  color: var(--mm-primary);
}

/* ============================================
   CONTENT SECTIONS - SHARED STYLES
   ============================================ */
.content-section {
  padding: 100px 0;
}

.videos-section {
  background: linear-gradient(180deg, #0f0d24 0%, #0c0a20 100%);
}

.tours-section {
  background: linear-gradient(180deg, #0c0a20 0%, #0f0d24 100%);
}

.infografias-section {
  background: linear-gradient(180deg, #0f0d24 0%, #0c0a20 100%);
}

.animaciones-section {
  background: linear-gradient(180deg, #0c0a20 0%, #0f0d24 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.section-badge {
  display: inline-flex;
  padding: 8px 16px;
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mm-primary-light);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--mm-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-description {
  color: var(--mm-text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.section-action {
  text-align: center;
  margin-top: 50px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  border-radius: 12px;
  color: var(--mm-text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: var(--mm-surface-hover);
  border-color: var(--mm-primary);
  transform: translateY(-2px);
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card {
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mm-glow);
  border-color: rgba(244, 63, 94, 0.3);
}

.video-card.video-featured {
  grid-column: span 2;
}

/* ============================================
   VIDEO CAROUSEL
   ============================================ */
.video-carousel-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-carousel {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.video-carousel-slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.video-carousel-slide video {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

/* Botones prev / next */
.vcarousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.vcarousel-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.vcarousel-prev { left: 16px; }
.vcarousel-next { right: 16px; }

/* Contador */
.vcarousel-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vcarousel-counter span:first-child {
  color: #a78bfa;
  font-weight: 800;
}

/* Info debajo del carrusel */
.vcarousel-info {
  text-align: center;
  padding: 24px 20px 8px;
}

.vcarousel-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(167, 139, 250, 0.2));
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 20px;
  color: #a78bfa;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.vcarousel-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary, #fff);
  margin: 8px 0;
}

.vcarousel-info p {
  color: var(--text-secondary, rgba(255,255,255,0.65));
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 12px;
}

.vcarousel-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary, rgba(255,255,255,0.5));
  font-size: 0.85rem;
}

.vcarousel-location svg {
  opacity: 0.6;
}

/* Indicadores / dots */
.vcarousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px 0 8px;
}

.vcarousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vcarousel-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.vcarousel-dot.active {
  background: linear-gradient(135deg, #667eea, #a78bfa);
  width: 28px;
  border-radius: 14px;
  box-shadow: 0 0 16px rgba(102, 126, 234, 0.5);
}

/* Responsive */
@media (max-width: 600px) {
  .video-carousel-container { margin: 0 -16px; }
  .video-carousel { border-radius: 12px; }
  .vcarousel-btn { width: 40px; height: 40px; font-size: 16px; }
  .vcarousel-prev { left: 8px; }
  .vcarousel-next { right: 8px; }
  .vcarousel-info h3 { font-size: 1.2rem; }
}

/* Legacy: video-container para iframes */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
}

.video-info {
  padding: 24px;
}

.video-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mm-yellow);
  margin-bottom: 12px;
}

.video-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--mm-text);
  margin-bottom: 8px;
}

.video-info p {
  font-size: 0.9rem;
  color: var(--mm-text-muted);
  margin-bottom: 16px;
}

.video-meta {
  display: flex;
  gap: 16px;
}

.video-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--mm-text-muted);
}

/* ============================================
   TOURS 360 SECTION
   ============================================ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tour-card {
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.3);
}

.tour-preview {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.tour-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-sphere {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sphere-icon {
  font-size: 2.5rem;
  z-index: 2;
  position: relative;
}

.sphere-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--mm-secondary);
  border-radius: 50%;
  animation: sphereRotate 3s linear infinite;
}

@keyframes sphereRotate {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

.tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover .tour-overlay {
  opacity: 1;
}

.tour-play {
  width: 60px;
  height: 60px;
  background: var(--mm-secondary);
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-play {
  transform: scale(1);
}

.tour-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: var(--mm-secondary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.tour-info {
  padding: 24px;
}

.tour-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--mm-text);
  margin-bottom: 8px;
}

.tour-info p {
  font-size: 0.9rem;
  color: var(--mm-text-muted);
  margin-bottom: 16px;
}

.tour-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mm-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.tour-link:hover {
  gap: 12px;
}

/* ============================================
   INFOGRAFIAS SECTION
   ============================================ */
.infografias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.infografia-card {
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.infografia-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.infografia-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 60px rgba(6, 182, 212, 0.3);
  border-color: rgba(6, 182, 212, 0.3);
}

.infografia-preview {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.infografia-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ip-icon {
  font-size: 3rem;
}

.ip-text {
  font-size: 0.9rem;
  color: var(--mm-text-muted);
}

.infografia-info {
  padding: 24px;
}

.infografia-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mm-text);
  margin-bottom: 8px;
}

.infografia-info p {
  font-size: 0.9rem;
  color: var(--mm-text-muted);
  margin-bottom: 16px;
}

.infografia-actions {
  display: flex;
  gap: 12px;
}

.info-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-view {
  background: var(--mm-accent);
  color: white;
}

.btn-view:hover {
  background: #0891b2;
  transform: translateY(-2px);
}

.btn-download {
  background: var(--mm-surface-hover);
  border: 1px solid var(--mm-border);
  color: var(--mm-text);
}

.btn-download:hover {
  border-color: var(--mm-accent);
  transform: translateY(-2px);
}

/* ============================================
   ANIMACIONES SECTION
   ============================================ */
.animaciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.animacion-card {
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.animacion-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.animacion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.3);
  border-color: rgba(245, 158, 11, 0.3);
}

.animacion-preview {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(244, 63, 94, 0.1) 100%);
}

.animacion-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-icon {
  font-size: 2.5rem;
  z-index: 2;
  position: relative;
}

.anim-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed var(--mm-yellow);
  border-radius: 50%;
  animation: animRing 4s linear infinite;
}

@keyframes animRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.anim-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--mm-yellow);
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
}

.animacion-card:hover .anim-play {
  opacity: 1;
}

.animacion-info {
  padding: 24px;
}

.animacion-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mm-text);
  margin-bottom: 8px;
}

.animacion-info p {
  font-size: 0.9rem;
  color: var(--mm-text-muted);
  margin-bottom: 12px;
}

.animacion-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--mm-yellow);
}

/* ============================================
   CTA SECTION
   ============================================ */
.multimedia-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(244, 63, 94, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, #0f0d24 0%, #1a0a12 100%);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(244, 63, 94, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  padding: 8px 20px;
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mm-primary-light);
  margin-bottom: 24px;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--mm-text);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--mm-text-muted);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-primary {
  background: var(--mm-gradient-1);
  color: white;
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.4);
}

.cta-secondary {
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  color: var(--mm-text);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: var(--mm-surface-hover);
  border-color: rgba(244, 63, 94, 0.3);
  transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-nav {
    justify-content: center;
  }
  
  .video-card.video-featured {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .multimedia-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .stat {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .media-showcase {
    max-width: 100%;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .nav-cards {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .videos-grid,
  .tours-grid,
  .infografias-grid,
  .animaciones-grid {
    grid-template-columns: 1fr;
  }
  
  .infografia-actions {
    flex-direction: column;
  }
  
  .info-btn {
    width: 100%;
    justify-content: center;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .showcase-thumbnails {
    gap: 10px;
  }
  
  .thumb {
    width: 50px;
    height: 50px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .multimedia-hero,
  .hero-bg,
  .scroll-indicator,
  .multimedia-cta,
  .category-nav {
    display: none !important;
  }
  
  .multimedia-page {
    background: white !important;
    color: black !important;
  }
  
  .video-card,
  .tour-card,
  .infografia-card,
  .animacion-card {
    break-inside: avoid;
    page-break-inside: avoid;
    border: 1px solid #ccc !important;
    background: white !important;
  }
}
