.mk-brand-banners {
    --brand-banners-bg: #ffffff;
    width: 100%;
    padding: clamp(2rem, 4vw, 4rem) 1rem;
    background-color: var(--brand-banners-bg);
}

.mk-brand-banners__container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.mk-brand-banners__slider {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

.mk-brand-banners__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
}

.mk-brand-banners__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Degradado idéntico al diseño de Canva (fuerte a la izquierda, desvanecido al centro) */
.mk-brand-banners__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ajustamos los primeros valores para que sea más oscuro a la izquierda */
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.95) 0%,   /* Subido de 0.9 a 0.95 (más negro puro al borde) */
        rgba(0, 0, 0, 0.85) 35%,  /* Subido de 0.75 a 0.85 (mantiene la fuerza más hacia adentro) */
        rgba(0, 0, 0, 0.4) 60%,   /* Un toque más oscuro en la transición media */
        rgba(0, 0, 0, 0) 80%      /* Se estira un poquito más el desvanecimiento */
    );
    z-index: 1;
}

.mk-brand-banners__content {
    position: relative;
    z-index: 2;
    padding-left: clamp(2rem, 6vw, 6rem);
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Tipografías y tamaños solicitados */
.mk-brand-banners__model {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.mk-brand-banners__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 47px);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.mk-brand-banners__text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 22px);
    font-weight: 400;
    line-height: 1.4;
    color: #e2e8f0;
    margin: 0;
}

/* Diseño Responsive para dispositivos móviles */
@media (max-width: 768px) {
    .mk-brand-banners__slider {
        aspect-ratio: 4 / 5;
        align-items: flex-end;
    }
    .mk-brand-banners__overlay {
        background: linear-gradient(0deg, 
            rgba(0, 0, 0, 0.95) 0%, 
            rgba(0, 0, 0, 0.6) 50%, 
            rgba(0, 0, 0, 0) 100%
        );
    }
    .mk-brand-banners__content {
        padding: 2rem;
        max-width: 100%;
    }
    .mk-brand-banners__model {
        font-size: 14px;
        letter-spacing: 2px;
    }
    .mk-brand-banners__title {
        font-size: 30px;
    }
    .mk-brand-banners__text {
        font-size: 16px;
    }
}