@media (max-width: 576px) {
    section {
        scroll-margin-top: 0; /* Remove a margem para o scroll parar exatamente no início da seção */
    }
    .font-source-light-20{
        font-size: 0.9375rem;
    }

    .font-source-regular-37{
        font-size: 1.6875rem;
    }

/* Nav Menu Mobile - Removido antigo */

/* Card Mobile */

    .card {
        gap: 28px;
        width: 226px;
        height: 288px;
        border-radius: 20px !important;
        box-shadow: 0 0 20px 0 var(--light-blue);
        border: 4px solid #ffffff;
        /*overflow: hidden !important;*/
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .cards-container-mobile {
        width: 100%;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-align: center;

        .font-source-light-14{
            font-size: 0.8125rem;
        }

        .font-source-semibold-20{
            font-size: 1.125rem;
        }
    }

    .cards-container-mobile::-webkit-scrollbar {
        width: 80px !important;
        height: 12px;
        border-radius: 50px;
        border: 1px solid #3F3F3F;
    }

    .cards-container-mobile::-webkit-scrollbar-thumb{
        border-radius: 50px;
        background-color: #3F3F3F !important;
    }

    .product-mobile .card img{
        display: block;
        max-width: 100%;
        height: auto;
        /*object-fit: cover;*/
        /*object-position: center;*/
    }

    .desconto-text{
        max-width: 300px;
        line-height: 100%;
    }

    .sombra-interna{
        border-radius: 20px !important;
        background: linear-gradient(180deg, rgba(96, 34, 166, 0.00) 68.97%, #6022A6 85%);

    }

}

/* ================================
   MENU HAMBURGUER MOBILE
   ================================ */

/* Botão Hamburguer */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
    transition: all 0.3s ease;

}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: #6022A6;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn:hover span {
    background-color: #4a1a80;
}

/* Animação do hamburguer quando ativo */
.hamburger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Overlay do Menu Mobile */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Conteúdo do Menu */
.mobile-menu-content {
    position: relative;
    background: linear-gradient(180deg, #6022A6 0%, #4a1a80 100%);
    width: 100%;
    max-width: 400px;
    height: 100vh;
    margin-left: auto;
    padding: 80px 30px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

/* Botão Fechar */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    z-index: 1002;
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

/* Lista do Menu */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-item {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Delay progressivo para cada item */
.mobile-menu-overlay.active .mobile-menu-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-menu-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-menu-item:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-menu-item:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu-overlay.active .mobile-menu-item:nth-child(7) { transition-delay: 0.4s; }

/* Links do Menu */
.mobile-menu-link {
    display: block;
    padding: 18px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Ajustes para telas muito pequenas */
@media (max-width: 380px) {
    .mobile-menu-content {
        max-width: 100%;
        padding: 70px 20px 30px;
    }

    .mobile-menu-link {
        font-size: 1rem;
        padding: 16px 15px;
    }
}

/* Ajustes responsivos para tablet */
@media (min-width: 577px) and (max-width: 991px) {
    .hamburger-btn {
        display: flex;
    }

    .mobile-menu-content {
        max-width: 350px;
    }
}
