/* ===== SECCIÓN MARQUESINA ===== */
.marquee-section {
    position: relative;
    z-index: 10;
    width: 100%;
    background-color: #E67E22; /* rojo atractivo */
    overflow: hidden;
    padding: 10px 0;
}

.marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    font-size: 1.2rem;
    color: #ffffff;
    animation: marquee 25s linear infinite;
}

.marquee-content .bold-slogan {
    font-weight: 800;
    margin-left: 60px;
}

.marquee-content .light-slogan {
    font-weight: 400;
    margin-right: 60;
}

/* Animación continua */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* se duplica el contenido */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .marquee-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .marquee-content {
        font-size: 0.9rem;
    }
}
