/*
Theme Name: JAP Solution Theme
Theme URI: https://japsolution.com
Description: Un tema moderno basado en Tailwind CSS con soporte completo para personalizar la pantalla de inicio
Version: 1.0.0
Author: JAP Solution
Author URI: https://japsolution.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jap-solution-theme
Domain Path: /languages
Requires at least: 5.9
Requires PHP: 7.4
Tags: tailwind, responsive, customizable, modern, blog

This theme is licensed under the GNU General Public License v2 or later.
*/

/*! Tailwind CSS v3 | MIT License | https://tailwindcss.com */
/*
This file is populated by the build process and contains the compiled Tailwind CSS styles.
Build with: npm run build
*/


body {
    background: #fff;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: partners-marquee-scroll 24s linear infinite;
    will-change: transform;
}

.partners-item {
    flex: 0 0 auto;
}

.partners-item img {
    width: 170px;
    height: auto;
    display: block;
}

/* Al llegar a -50% el contenido es idéntico al inicio: loop perfecto sin corte */
@keyframes partners-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partners-track {
        gap: 1.5rem;
        animation-duration: 18s;
    }

    .partners-item img {
        width: 140px;
    }
}

