/* ========================================================
   Sección de Módulos de Fidelización
   ======================================================== */
.fidelizacion_section {
    padding: 40px 0;
    background-color: var(--light-purple);
}

.fidelizacion_section .section_title h2 span {
    color: #00c0d3;
}

.fidelizacion_section .section_title p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.8;
}

/* Grid de tarjetas */
.fidelizacion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Tarjetas de fidelización */
.fidelizacion-card {
    perspective: 1000px;
}

.card-inner {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 192, 211, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 192, 211, 0.25);
}

/* Imagen de la tarjeta */
.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-inner:hover .card-image img {
    transform: scale(1.1);
}

/* Contenido de la tarjeta */
.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #009eb0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Footer con botón */
.card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.ver-mas-btn {
    background: linear-gradient(135deg, var(--purple) 0%, var(--dark-purple) 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 192, 211, 0.3);
}

.ver-mas-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 192, 211, 0.4);
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--purple) 100%);
}

/* ========================================================
   Modales de Fidelización
   ======================================================== */
.fidelizacion-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

.fidelizacion-modal.active {
    display: flex;
}

/* Overlay */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

/* Contenedor del modal */
.modal-container {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 25px;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    z-index: 1000000;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Botón de cerrar */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--dark-purple) 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 192, 211, 0.4);
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 192, 211, 0.5);
}

/* Sección 1: Header con título */
.modal-header {
    background: linear-gradient(135deg, var(--purple) 0%, var(--dark-purple) 100%);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    display: block;
    overflow-x: hidden;
}

.modal-header h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.3;
    display: block;
    width: 100%;
}

.modal-header p {
    display: block;
    width: 100%;
    margin: 0;
}

/* Sección 2: Media (imagen/carrusel) */
.modal-media {
    padding: 0;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    /* Centrar contenido */
}

.modal-media img {
    width: auto;
    /* Cambiar de 100% a auto para que no se estire */
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    /* Mostrar imagen completa sin recortar */
    display: block;
    margin: 0 auto;
    /* Centrar horizontalmente */
}

/* Carrusel para GMaster Kiosco */
.gmaster-kiosko-carousel {
    width: 100%;
}

.gmaster-kiosko-carousel .item {
    width: 100%;
}

.gmaster-kiosko-carousel .item img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

/* Navegación del carrusel */
.gmaster-kiosko-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: block !important;
}

.gmaster-kiosko-carousel .owl-nav button {
    position: absolute;
    background: linear-gradient(135deg, var(--purple) 0%, var(--dark-purple) 100%) !important;
    color: #ffffff !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 192, 211, 0.3);
    opacity: 0.9;
}

.gmaster-kiosko-carousel .owl-nav button:hover {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--purple) 100%) !important;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 192, 211, 0.4);
    opacity: 1;
}

.gmaster-kiosko-carousel .owl-nav .owl-prev {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.gmaster-kiosko-carousel .owl-nav .owl-next {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

/* Responsive para botones del carrusel kiosko */
@media (max-width: 991px) {
    .gmaster-kiosko-carousel .owl-nav .owl-prev {
        left: 10px !important;
        top: 75% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }

    .gmaster-kiosko-carousel .owl-nav .owl-next {
        right: 10px !important;
        top: 75% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }
}

@media (max-width: 767px) {
    .gmaster-kiosko-carousel .owl-nav .owl-prev {
        left: 8px !important;
        top: 72% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }

    .gmaster-kiosko-carousel .owl-nav .owl-next {
        right: 8px !important;
        top: 72% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }
}

@media (max-width: 575px) {
    .gmaster-kiosko-carousel .owl-nav .owl-prev {
        left: 5px !important;
        top: 70% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }

    .gmaster-kiosko-carousel .owl-nav .owl-next {
        right: 5px !important;
        top: 70% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }
}

@media (max-width: 400px) {
    .gmaster-kiosko-carousel .owl-nav .owl-prev {
        left: 3px !important;
        top: 68% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }

    .gmaster-kiosko-carousel .owl-nav .owl-next {
        right: 3px !important;
        top: 68% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }
}

/* Dots del carrusel */
.gmaster-kiosko-carousel .owl-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.gmaster-kiosko-carousel .owl-dots .owl-dot {
    background: rgba(255, 255, 255, 0.6) !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    border: 2px solid rgba(103, 58, 183, 0.3);
}

.gmaster-kiosko-carousel .owl-dots .owl-dot:hover {
    background: var(--purple) !important;
    border-color: var(--purple);
}

.gmaster-kiosko-carousel .owl-dots .owl-dot.active {
    background: var(--purple) !important;
    width: 30px;
    border-radius: 10px;
    border-color: var(--purple);
}

/* Video para modal Mystery */
.mystery-video {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    background-color: #000;
    display: block;
}

/* Contenedor del video con fuegos artificiales */
.modal-media-video {
    position: relative;
    overflow: hidden;
}

/* Fuegos artificiales - Contenedores */
.fireworks-left,
.fireworks-right {
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.fireworks-left {
    left: 0;
}

.fireworks-right {
    right: 0;
}

/* Fuegos artificiales - Partículas GRANDES y llamativas */
.firework {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    opacity: 0;
    z-index: 1000002;
}

/* Crear partículas que explotan desde el centro */
.firework::before,
.firework::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
}

/* Fuegos artificiales izquierdos */
.fireworks-left .firework:nth-child(1) {
    left: 10%;
    top: 15%;
    animation: fireworkExplosion1 2s ease-out infinite;
}

.fireworks-left .firework:nth-child(2) {
    left: 40%;
    top: 35%;
    animation: fireworkExplosion2 2.3s ease-out infinite 0.4s;
}

.fireworks-left .firework:nth-child(3) {
    left: 70%;
    top: 55%;
    animation: fireworkExplosion3 2.6s ease-out infinite 0.8s;
}

.fireworks-left .firework:nth-child(4) {
    left: 25%;
    top: 75%;
    animation: fireworkExplosion1 2.2s ease-out infinite 1.2s;
}

.fireworks-left .firework:nth-child(5) {
    left: 60%;
    top: 20%;
    animation: fireworkExplosion2 2.8s ease-out infinite 0.2s;
}

/* Fuegos artificiales derechos */
.fireworks-right .firework:nth-child(1) {
    right: 10%;
    top: 20%;
    animation: fireworkExplosion3 2.1s ease-out infinite 0.3s;
}

.fireworks-right .firework:nth-child(2) {
    right: 35%;
    top: 40%;
    animation: fireworkExplosion1 2.4s ease-out infinite 0.7s;
}

.fireworks-right .firework:nth-child(3) {
    right: 65%;
    top: 60%;
    animation: fireworkExplosion2 2.7s ease-out infinite 1.1s;
}

.fireworks-right .firework:nth-child(4) {
    right: 20%;
    top: 80%;
    animation: fireworkExplosion3 2.3s ease-out infinite 0.5s;
}

.fireworks-right .firework:nth-child(5) {
    right: 50%;
    top: 25%;
    animation: fireworkExplosion1 2.9s ease-out infinite 0.9s;
}

/* Animaciones de explosión GRANDES y brillantes */
@keyframes fireworkExplosion1 {
    0% {
        background: radial-gradient(circle, #FFD700 0%, #FFA500 30%, transparent 70%);
        box-shadow:
            0 0 60px #FFD700,
            0 0 80px #FFA500,
            0 0 100px #FF6347,
            0 0 120px rgba(255, 215, 0, 0.8);
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        background: radial-gradient(circle, #FFD700 0%, #FFA500 20%, transparent 60%);
        box-shadow:
            0 0 80px #FFD700,
            0 0 100px #FFA500,
            0 0 120px #FF6347,
            0 0 150px rgba(255, 215, 0, 0.9),
            0 0 180px rgba(255, 165, 0, 0.7);
        transform: scale(2.5) rotate(180deg);
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        background: radial-gradient(circle, #FFD700 0%, #FFA500 40%, transparent 80%);
        box-shadow:
            0 0 40px #FFD700,
            0 0 60px #FFA500,
            0 0 80px #FF6347;
        transform: scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

@keyframes fireworkExplosion2 {
    0% {
        background: radial-gradient(circle, #FF1493 0%, #FF69B4 30%, transparent 70%);
        box-shadow:
            0 0 60px #FF1493,
            0 0 80px #FF69B4,
            0 0 100px #FF00FF,
            0 0 120px rgba(255, 20, 147, 0.8);
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        background: radial-gradient(circle, #FF1493 0%, #FF69B4 20%, transparent 60%);
        box-shadow:
            0 0 80px #FF1493,
            0 0 100px #FF69B4,
            0 0 120px #FF00FF,
            0 0 150px rgba(255, 20, 147, 0.9),
            0 0 180px rgba(255, 105, 180, 0.7);
        transform: scale(2.8) rotate(180deg);
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        background: radial-gradient(circle, #FF1493 0%, #FF69B4 40%, transparent 80%);
        box-shadow:
            0 0 40px #FF1493,
            0 0 60px #FF69B4,
            0 0 80px #FF00FF;
        transform: scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

@keyframes fireworkExplosion3 {
    0% {
        background: radial-gradient(circle, #00FFFF 0%, #00CED1 30%, transparent 70%);
        box-shadow:
            0 0 60px #00FFFF,
            0 0 80px #00CED1,
            0 0 100px #40E0D0,
            0 0 120px rgba(0, 255, 255, 0.8);
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        background: radial-gradient(circle, #00FFFF 0%, #00CED1 20%, transparent 60%);
        box-shadow:
            0 0 80px #00FFFF,
            0 0 100px #00CED1,
            0 0 120px #40E0D0,
            0 0 150px rgba(0, 255, 255, 0.9),
            0 0 180px rgba(0, 206, 209, 0.7);
        transform: scale(2.6) rotate(180deg);
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        background: radial-gradient(circle, #00FFFF 0%, #00CED1 40%, transparent 80%);
        box-shadow:
            0 0 40px #00FFFF,
            0 0 60px #00CED1,
            0 0 80px #40E0D0;
        transform: scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

/* Sección 3: Contenido */
.modal-content {
    padding: 40px 30px;
    background: #ffffff;
    overflow-x: hidden;
}

.modal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.modal-content ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.modal-content ul li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    border-bottom: 1px solid #eee;
}

.modal-content ul li:before {
    content: '\EF42';
    font-family: 'icofont';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--purple);
    font-size: 20px;
}

.modal-content ul li:last-child {
    border-bottom: none;
}

/* Scrollbar personalizado para el modal */
.modal-container::-webkit-scrollbar {
    width: 10px;
}

.modal-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 5px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--dark-purple);
}

/* Responsive para tarjetas */
@media screen and (max-width: 991px) {
    .fidelizacion_section {
        padding: 30px 0;
    }

    .fidelizacion-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card-image {
        height: 220px;
    }

    /* Ajustar imágenes para que se vean completas en tablets */
    .card-image img {
        object-fit: contain !important;
        /* Cambiar de cover a contain para ver toda la imagen */
        object-position: center;
        padding: 5px;
        /* Pequeño padding para que no se pegue a los bordes */
        background-color: #f5f5f5;
        /* Fondo gris claro para espacios vacíos */
    }

    .card-content {
        padding: 25px;
    }

    .modal-container {
        width: 95%;
        max-height: 85vh;
    }

    .modal-header h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 767px) {
    .fidelizacion_section {
        padding: 30px 0;
    }

    .fidelizacion_section .section_title p {
        font-size: 16px;
    }

    .card-image {
        height: 200px;
    }

    /* Ajustar imágenes para que se vean completas en móvil */
    .card-image img {
        object-fit: contain !important;
        /* Cambiar de cover a contain para ver toda la imagen */
        object-position: center !important;
        padding: 5px;
        /* Pequeño padding para que no se pegue a los bordes */
        background-color: #f5f5f5;
        /* Fondo gris claro para espacios vacíos */
        height: 200px !important;
        max-height: 200px !important;
        width: 100% !important;
    }

    /* Ajustar altura específica para imagen Player Tracking */
    .fidelizacion-card .card-image img[alt*="Player Tracking"] {
        height: 200px !important;
        max-height: 200px !important;
        width: 100% !important;
        object-fit: contain !important;
        object-position: center center !important;
    }

    .card-content h3 {
        font-size: 20px;
    }

    .card-content p {
        font-size: 14px;
    }

    .modal-container {
        width: 95%;
        max-height: 90vh;
        /* Reducir altura máxima del modal */
        overflow-y: auto;
    }

    .modal-header {
        padding: 25px 60px 15px 15px;
        /* Reducir padding del header */
        text-align: center;
    }

    .modal-header h2 {
        font-size: 18px;
        /* Reducir tamaño del título */
        word-wrap: break-word;
        margin: 0;
        line-height: 1.3;
    }

    .modal-header p {
        font-size: 14px !important;
        /* Reducir tamaño de subtítulos */
        margin: 5px 0 0 0 !important;
    }

    .modal-media {
        padding: 15px;
        /* Reducir padding alrededor de imágenes/videos */
    }

    .modal-media img {
        max-height: 200px !important;
        /* Limitar altura de imágenes en móviles */
        width: auto !important;
        object-fit: contain;
    }

    .modal-content {
        padding: 20px 15px;
        /* Reducir padding del contenido */
    }

    .modal-content p,
    .modal-content ul li {
        font-size: 14px;
        /* Reducir tamaño del texto */
        line-height: 1.5;
    }

    .modal-content h4 {
        font-size: 16px;
        /* Reducir tamaño de subtítulos */
        margin-top: 15px;
        margin-bottom: 10px;
    }

    /* Reducir tamaño de cajas con información */
    .modal-content>div[style*="background"] {
        padding: 12px !important;
        margin-top: 12px !important;
    }

    .modal-content>div[style*="background"] p {
        font-size: 13px !important;
    }

    .modal-close {
        width: 40px;
        height: 40px;
    }

    /* Ajustes específicos para el modal de video en móvil */
    #modal-video-globus .modal-container {
        max-width: 95% !important;
        /* Reducir el ancho máximo del modal en móvil */
        width: 95% !important;
    }

    #modal-video-globus .modal-media-video {
        width: 100% !important;
        max-width: 100% !important;
    }

    #modal-video-globus video {
        max-height: 50vh !important;
        /* Reducir altura del video en móvil */
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    #modal-video-globus .modal-close {
        top: -45px !important;
        right: 0 !important;
    }
}

/* Ajuste para imágenes verticales (ej. Kiosco) */
.card-image img.img-contain,
.gmaster-kiosko-carousel .item img.img-contain {
    object-fit: contain;
    background-color: #e3e6ea;
    /* Gris claro para rellenar espacios */
}

/* Ocultar navegación para carrusel de Kiosco (solo 1 imagen) */
.gmaster-kiosko-carousel .owl-nav,
.gmaster-kiosko-carousel .owl-prev,
.gmaster-kiosko-carousel .owl-next {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Responsive: Modal Kiosco en móviles */
@media screen and (max-width: 767px) {
    #modal-kiosk .modal-media .row {
        height: auto !important;
        /* Permitir que el contenedor se adapte al contenido */
        flex-direction: column !important;
        /* Cambiar a vertical en móviles */
    }

    #modal-kiosk .modal-media .col-8,
    #modal-kiosk .modal-media .col-4 {
        width: 100% !important;
        /* Ocupar todo el ancho en móvil */
        height: auto !important;
        padding: 0 !important;
        margin-bottom: 10px;
    }

    #modal-kiosk .modal-media img {
        height: auto !important;
        max-height: 200px !important;
        /* Limitar altura en móviles */
        width: 100% !important;
        object-fit: contain !important;
        margin-bottom: 10px;
    }

    #modal-kiosk .modal-media .col-4 {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
}

/* ========================================================
   Estilos específicos para Modal GMaster Kiosco (Responsive)
   ======================================================== */
.kiosk-gallery-row {
    height: 400px;
    width: 100%;
    margin: 0;
}

.kiosk-col-main {
    height: 100%;
    padding-left: 0;
    padding-right: 15px;
}

.kiosk-main-img {
    height: 100% !important;
    object-fit: cover;
    object-position: top center;
}

.kiosk-col-side {
    height: 100%;
    padding-right: 0;
    padding-left: 0;
}

.kiosk-side-img {
    height: 48% !important;
    object-fit: cover;
    object-position: center;
}

/* Ajustes Responsive para Kiosco */
@media screen and (max-width: 991px) {
    .kiosk-gallery-row {
        height: auto;
        /* Permitir que crezca en móvil */
    }

    .kiosk-col-main {
        height: auto;
        /* min-height removed */
        padding-right: 0 !important;
        padding-left: 0 !important;
        margin-bottom: 0 !important;
        /* Espacio eliminado entre principal y secundarias */
    }

    .kiosk-main-img {
        height: 250px !important;
        width: 100% !important;
        display: block !important;
        margin-bottom: 0 !important;
    }

    .kiosk-col-side {
        height: auto;
        flex-direction: row !important;
        gap: 5px !important;
        /* Gap consistente */
        padding-left: 0 !important;
        padding-right: 0 !important;
        align-items: stretch !important;
        margin-top: 0 !important;
    }

    .kiosk-side-img {
        height: 180px !important;
        width: 100% !important;
        display: block !important;
    }
}

@media screen and (max-width: 576px) {
    .kiosk-col-side {
        flex-direction: column !important;
        width: 100% !important;
    }

    .kiosk-side-img {
        height: 200px !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        /* Usar gap del contenedor */
        max-width: none !important;
    }

    .kiosk-side-img:last-child {
        margin-bottom: 0;
    }
}