    .discover {
        background: #000000;
        color: #eee;
        padding: 100px 16px;
    }

    .discover-inner {
        max-width: 1200px;
        margin: 0 auto;
        min-height: 600px;
        position: relative;
    }

    .discover-title {
        text-align: center;
        font-size: 24px;
        margin: 0 0 22px;
        padding-top: 1rem;
    }

    .discover-text {
        margin: 0 auto;
        text-align: center;
        max-width: 80%;
        padding-bottom: 30px;
    }

    .peek-viewport {
        overflow: hidden;
        scroll-behavior: smooth;
        touch-action: manipulation;
        position: relative;
    }

    .peek-track {
        display: flex;
        gap: 24px;
        padding: 0 24px;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        overscroll-behavior-y: none;
        cursor: grab;
        transition: transform 0.3s ease;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
    }

    .peek-track::-webkit-scrollbar {
        display: none;
    }

    .peek-track:active {
        cursor: grabbing;
    }

    .peek-card {
        border-radius: 12px;
        width: calc((100% - 48px) / 3);
        /* 48px = 2 gaps de 24px */
        flex: 0 0 auto;
        scroll-snap-align: start;
        touch-action: manipulation;
    }

    .peek-media {
        width: 360px;
        height: 360px;
        overflow: hidden;
        background: #000;
    }

    .fsBottonMB {
        display: flex;
        padding-top: 20px;
        margin: 0 auto;
        align-items: center;
        justify-content: center;

    }

    .peek-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        -webkit-user-drag: none;
        user-drag: none;
        pointer-events: none;
        user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        -webkit-touch-callout: none;
    }

    .peek-name {
        margin: 20px 0px 10px;
        font-weight: 700;
        font-size: 12px;
        color: #ddd;
    }

    .peek-desc {
        margin: 10px 0px 10px;
        color: #b9b9b9;
        font-size: 14px;
    }

    /* Controles de navegaci¨®n - ocultos en desktop */

    .slider-controls {
        display: none;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .slider-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #eee;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .slider-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .slider-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    /* Indicadores de posici¨®n - ocultos en desktop */

    .peek-dots {
        display: none;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: #fff;
        transform: scale(1.2);
    }

    /* Evitar selecci¨®n durante el drag */

    .peek-dragzone,
    .peek-dragzone * {
        user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        -webkit-touch-callout: none;
    }

    /* Desktop: asegurar que las 3 tarjetas se vean */

    @media (min-width: 769px) {
        .peek-track {
            overflow-x: visible;
            /* No scroll en desktop */
            justify-content: center;
            /* Centrar las tarjetas */
        }

        .peek-card {
            min-width: 300px;
            /* Ancho m¨ªnimo para mantener proporciones */
            max-width: 380px;
            /* Ancho m¨¢ximo */
        }
    }

    @media (max-width: 768px) {
        .discover-inner {
            min-height: 450px;
        }

        .discover-title {
            text-align: center;
            font-size: 28px;
        }

        .peek-card {
            width: 85vw;
            /* Mobile: una tarjeta por vista */
        }

        .peek-track {
            gap: 16px;
            padding: 0 16px;
            overflow-x: auto;
            /* Habilitar scroll en mobile */
        }

        /* Mostrar controles solo en mobile */
        .slider-controls {
            display: flex;
            gap: 15px;
        }

        .slider-btn {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .peek-dots {
            display: flex;
        }

        .peek-media {
            width: 100%;
        }
    }

    #peekDots,
    .slider-controls {
        display: none;
    }