/* Desktop */
.mobile-services {
    display: none;
}

.mobile-service {
    margin-bottom: 40px;
}

.mobile-title {
    margin-left: calc(50% - 50vw);
    margin-right: calc(37% - 37vw);
    padding: 26px 0;
    font-family: 'Made Okine Sans', sans-serif;
    font-weight: 400;
    background: #c40000;
    color: #fff;

    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.mobile-carousel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-track-tienda {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease;
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
}


.carousel-track-tienda {
    display: flex;              /* 🔥 CLAVE */
    transition: transform 0.4s ease;
}

.carousel-item {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.carousel-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 220px;
    object-fit: contain;
    background-color: #edecec;
    border-radius: 16px;
    padding: 12px;
    box-sizing: border-box;
}

.carousel-btn {
    background: #000000;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.mobile-btn {
    display: block;
    margin: 16px auto 0;
    background: #000000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 12px;
    text-align: center;
    font-family: 'Made Okine Sans', sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease;
    
}

.mobile-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

/* Mobile */
@media (max-width: 768px) {

    /* Ocultar SOLO el botón "Descubre más" */
    .card-btn {
        display: none !important;
    }

    .mobile-services {
        display: block;
        padding: 20px;
    }
}
