/* Fondo con efecto Ken Burns */
.kenburns-bg {
  background-size: 110%;
  background-position: center center;
  animation: kenZoom 18s ease-in-out infinite alternate;
}

@keyframes kenZoom {
  from { background-size: 100%; }
  to   { background-size: 112%; }
}