/*
Theme Name: Minimog Child
Theme URI: http://minimog.thememove.com/
Author: ThemeMove
Author URI: http://thememove.com/
Version: 1.0.0
Template: minimog
Text Domain:  minimog-child
Tags: editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/

#page-header-inner .container-wide {
    max-width: 1600 !important;
}

.marquesina {
    width: 100%;
    height: 80px;
    background-color: #000;

    /* Fondo con logo */
    background-image: url("http://localhost/ArteZoco/wp-content/uploads/2026/01/marquee.png");
    background-repeat: repeat-x;

    /* tamaño REAL del logo */
    background-size: auto 60px;

    /* posición inicial */
    background-position: 0 center;

    animation: mover 10s linear infinite;
}

div#az-image-grid img {
    max-height: 450px;
    object-fit: cover;
    border-left: 10px solid #B5961C;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

div#az-image-grid img:hover {
    cursor: pointer;
    transform: scale(1.01);
}

/* Animación */
@keyframes mover {
    from {
        background-position: 0 center;
    }

    to {
        background-position: -300px center;
    }
}