/* =========================
   MARQUEE
========================= */

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: scroll-left 40s linear infinite;
    will-change: transform;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee a {
    margin: 0 25px;
    flex-shrink: 0;
    display: inline-block;
}

/* ТОЛЬКО для marquee */
.marquee img {
    width: auto;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: 0.3s;
}

.marquee img:hover {
    transform: scale(1.05);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.whatsapp-float a {
    display: block;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* =========================
   FONTS
========================= */

body,
p,
a,
li,
span,
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
select,
textarea {
    font-family: 'Montserrat', sans-serif;
}