/* CONCEPTO VIP - CSS DE FUERZA BRUTA */

/* Eliminamos el color de fondo gris automático de SitioSimple */
.hero-section, .marquee-wrapper {
    background-color: #18181a !important;
}

.hero-section {
    width: 100%;
    padding: 60px 20px !important;
    text-align: center;
    background: #18181a !important;
}

.hero-logo { max-width: 240px; margin-bottom: 20px; }

.hero-h1 {
    font-size: 2.2rem;
    color: #f0c27b;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.btn-primary {
    display: inline-block;
    background: #e38e1a;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

/* MARQUEE CORREGIDO Y PEGAJOSO */
.marquee-wrapper {
    width: 100%;
    margin-top: -30px !important; /* Tiramos el carrusel hacia arriba */
    background: #18181a !important; /* Fondo negro absoluto */
    padding: 20px 0 50px 0 !important;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-logo {
    height: 35px;
    margin: 0 25px;
    filter: brightness(0) invert(1) opacity(0.7); /* Forzamos color blanco a los logos */
}

.marquee-header {
    text-align: center;
    color: #888888;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
}