/* ==================== SCROLLING BANNER ==================== */
/* El CSS del banner cuando está dentro del hero está en hero-section.css */

.banner-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-right 20s linear infinite;
    width: max-content;
}

.banner-content span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    color: #000;
    margin-right: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes scroll-right {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .banner-content span {
        font-size: 12px;
        margin-right: 30px;
    }
}

@media (max-width: 480px) {
    .banner-content span {
        font-size: 11px;
        margin-right: 25px;
    }
}

/* Force marquee to go LEFT → RIGHT */
.banner-content {
  animation: scroll-right 20s linear infinite reverse !important;
}

/* Si usas el banner dentro del .hero, se aplica igual porque comparte clase */
