/* Banner principal */
.full-banner_dlc img {
    width: 100%;
    max-height: calc(100dvh - 200px);
}

.full-banner_dlc video {
    width: 100% !important;
    object-fit: cover;
    height: 930px !important;
    margin-bottom: 0;
}

/* Contenedor principal de cada slide */
.full-banner_dlc__item {
    position: relative;
    width: 100%;
    height: 100vh; /* altura completa de la ventana */
    display: flex;
    align-items: center;
    text-align: left;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--primary-color);
}

/* Overlay */
.full-banner_dlc__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Video de fondo */
.full-banner_dlc__video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Contenido */
.full-banner_dlc__content {
    position: relative;
    z-index: 2;
    padding-left: 50px;
    max-width: 70%;
}

.full-banner_dlc__content--inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Texto */
.full-banner_dlc__item h1 {
    font-size: var(--fs-64);
    font-weight: 700;
    color: white;
    letter-spacing: -1.92px;
}

.full-banner_dlc__item p {
    font-size: var(--fs-20);
    font-weight: 400;
    color: white;
}

/* Botones */
.full-banner_dlc__buttons {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.full-banner_dlc__buttons .btn-dlc {
    padding-block: 0 !important;
    padding-inline: 25px !important;
    min-width: 200px !important;
    transition: all 0.3s ease;
}

.full-banner_dlc__buttons .btn-dlc-outline {
    border: 1px solid var(--primary-color) !important;
}

.full-banner_dlc__buttons i::before {
    font-size: 1rem !important;
    font-weight: normal !important;
    transform: rotate(-45deg);
}

/* Swiper */
.swiper-full-banner .swiper-wrapper {
    margin-bottom: 0;
}

.swiper-full-banner .swiper-pagination {
    bottom: 10px !important;
}

.full-banner_dlc .swiper-horizontal > .swiper-pagination-bullets {
    bottom: 120px !important;
}

.full-banner_dlc .swiper-pagination-bullet-active {
    background: white !important;
    border: 1px solid white;
}

.full-banner_dlc .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid white;
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 15px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 15px));
}

/* Botones de navegación Swiper */
.full-banner_dlc .swiper-button-next,
.full-banner_dlc .swiper-button-prev {
    top: 90% !important;
    border-radius: 25px;
    background: white;
    width: 40px;
    height: 40px;
}

.full-banner_dlc .swiper-button-next:after,
.full-banner_dlc .swiper-button-prev:after {
    content: none;
}

.full-banner_dlc .swiper-button-next,
.full-banner_dlc .swiper-rtl .swiper-button-prev {
    right: 47%;
    left: auto;
}

.full-banner_dlc .swiper-button-prev,
.full-banner_dlc .swiper-rtl .swiper-button-next {
    left: 47%; 
    right: auto;
}

.full-banner_dlc .swiper-button-prev.bi-arrow-left::before,
.full-banner_dlc .swiper-button-next.bi-arrow-right::before {
    font-size: 1.2rem;
    font-weight: 700 !important;
}

/* Botones slider */
.btn-full-slider {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
    border-radius: 25px !important;
}

.btn-full-slider:hover {
    background-color: white !important;
    border-color: white !important;
    color: var(--primary-color) !important;
}

.btn-full-slider-secondary {
    background-color: transparent !important;
    color: white !important;
    border-color: white !important;
    border-radius: 25px !important;
}

.btn-full-slider-secondary:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

/* Contenedor interno de imagen */
.full-banner_dlc__image .inner-row {
    display: flex;
    gap: 87px;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    justify-content: space-between;
}

.full-banner_dlc__image .inner-row > div[class*="col-"]:first-child {
    flex: 0 0 calc(50% - 140px);
}

/* Responsive */
@media screen and (max-width: 991px) {
    .full-banner_dlc__content {
        max-width: 90%;
        padding-left: 30px;
    }

    .full-banner_dlc__item h1 {
        font-size: var(--fs-40);
    }

    .full-banner_dlc__item p {
        font-size: var(--fs-20);
    }

    .full-banner_dlc__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .full-banner_dlc__image .inner-row {
        gap: 40px;
        display: flex;
        flex-direction: column-reverse;
        padding: 0 15px;
    }

    .full-banner_dlc__image .inner-row > div[class*="col-"] {
        flex: auto;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .full-banner_dlc video {
        height: 100vh !important;
        margin-bottom: -10px;
    }

    .full-banner_dlc__content {
        max-width: 95%;
        padding-left: 20px;
    }

    .full-banner_dlc .swiper-button-next, .full-banner_dlc .swiper-rtl .swiper-button-prev
    {
        right: 35%;
        left: auto;
    }
    .full-banner_dlc .swiper-button-prev, .full-banner_dlc .swiper-rtl .swiper-button-next {
        left: 35%;
        right: auto;
    }
}
