/* Minimal custom styles */
body { font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; }
.prose img { max-width:100%; height:auto; }




/* Perspectiva cinematográfica */
#indexCarousel {
  perspective: 1200px;
}
#indexCarousel > div {
  transform-origin: center;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Scroll oculto */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Efecto Ken Burns */
@keyframes kenburns {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.12) translateY(-2%); }
}
.animate-kenburns {
  animation: kenburns 10s ease-in-out infinite alternate;
}


/* 🔥 Fade y glow Teleceiba */
@keyframes fadein {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fadein {
  animation: fadein 1s ease-out both;
}

/* ✍️ Tipografía periodística mejorada */
.prose {
  font-family: 'Merriweather', 'Georgia', serif;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* 📰 Citas destacadas personalizadas */
.prose blockquote {
  position: relative;
  overflow: hidden;
}
.prose blockquote::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 5rem;
  color: rgba(220,38,38,0.25);
  line-height: 1;
  font-weight: bold;
  z-index: 0;
}
/* ✨ Fade suave */
@keyframes fadein {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fadein {
  animation: fadein 0.9s ease-out both;
}

/* ✍️ Tipografía editorial coherente */
.prose, .text-content {
  font-family: 'Merriweather', 'Georgia', serif;
}

/* ✨ Glow Teleceiba */
.hover\\:shadow-red {
  box-shadow: 0 0 25px rgba(220, 38, 38, 0.5);
}
