/* ===== VARIÁVEIS E CONFIGURAÇÕES GERAIS ===== */
:root {
    /* Nova Paleta de cores */
    --primaria: #ff00a2;
    --secundaria: #34b696;
    --texto-principal: #20b2aa; /* Verde bem escuro para texto */
    --texto-secundario: #414141;
    --fundo-claro: #f8f8f8;
    --fundo-branco: #ffffff;
    --fundo-rodape: #f5f5f5;
    --borda: #e0e0e0;
    
    /* Cores sociais */
    --facebook-azul: #1877F2;
    --instagram-rosa: #E1306C;
    --whatsapp-verde: #25D366;
}

/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--fundo-branco);
    color: var(--texto-principal);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-nav {
    max-width: 1200px;
    margin: 0;
    padding: 0;
    justify-content: space-evenly;
}

/* ===== BARRA DE REDES SOCIAIS ===== */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    border-radius: 0 8px 8px 0;
    overflow: hidden;
    border-left: none;
}

.social-btn {
    height: 60px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fundo-branco);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background-color: #ff00a2;
}

.social-btn.facebook:hover {
    background-color: var(--facebook-azul);
}

.social-btn.instagram:hover {
    background-color: var(--instagram-rosa);
}

.social-btn.whatsapp:hover {
    background-color: var(--whatsapp-verde);
}

/* ===== HEADER ===== */
.header {
    background-color: var(--fundo-branco);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--borda);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    justify-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 0 2rem;
    gap: 3rem;
}

.logo-img img {
    height: 70px;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-img img:hover {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    color: var(--texto-principal);
    text-decoration: none;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primaria);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primaria);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 70%;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    background-color: var(--primaria);
    color: var(--fundo-branco);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
    border: 1px solid var(--primaria);
    justify-content: center;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 135, 0.2);
}

.btn-order i {
    font-size: 1.1rem;
}

/* ===== MENU MOBILE ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--texto-principal);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    background-color: transparent;
}

.mobile-menu-btn:hover {
    color: var(--primaria);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--fundo-branco);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--borda);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 25px;
    border-bottom: 1px solid var(--borda);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--fundo-claro);
    color: var(--texto-principal);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primaria);
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--texto-secundario);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--texto-principal);
    cursor: pointer;
    transition: color 0.3s ease;
    background-color: transparent;
}

.mobile-menu-close:hover {
    color: var(--primaria);
}

.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
    flex-grow: 1;
}

.mobile-nav-link {
    display: block;
    padding: 16px 25px;
    color: var(--texto-principal);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    background-color: var(--fundo-claro);
    color: var(--primaria);
    border-left-color: var(--primaria);
}

.mobile-menu-footer {
    padding: 25px;
    border-top: 1px solid var(--borda);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-btn-order, .mobile-location {
    text-align: center;
    padding: 14px;
    border-radius: 6px;
}

/* ===== SLIDER DE IMAGENS COM ALTURA DINÂMICA ===== */
.image-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Esconder inputs radio */
.slide-radio {
    display: none;
}

/* Container principal dos slides */
.slider-wrapper {
    width: 700%;
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: auto;
}

.slide {
    width: 14.2857%; /* 100% / 7 */
    position: relative;
    flex-shrink: 0;
}

/* IMAGEM SEMPRE 100% VISÍVEL - CORRIGIDO */
.slide-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Mantém a proporção e mostra imagem inteira */
    background-color: #f0f0f0;
}

/* Versões desktop e mobile */
.slide-image.desktop {
    display: block;
}

.slide-image.mobile {
    display: none;
}

/* Controle do carrossel por CSS usando :checked - para 7 slides */
#slide1:checked ~ .slider-wrapper {
    transform: translateX(0%);
}

#slide2:checked ~ .slider-wrapper {
    transform: translateX(-14.2857%);
}

#slide3:checked ~ .slider-wrapper {
    transform: translateX(-28.5714%);
}

#slide4:checked ~ .slider-wrapper {
    transform: translateX(-42.8571%);
}

#slide5:checked ~ .slider-wrapper {
    transform: translateX(-57.1428%);
}

#slide6:checked ~ .slider-wrapper {
    transform: translateX(-71.4285%);
}

#slide7:checked ~ .slider-wrapper {
    transform: translateX(-85.7142%);
}

/* Container para botões de navegação */
.slider-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

/* Botões de navegação */
.slider-btn {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--primaria);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    pointer-events: auto;
}

.slider-btn:hover {
    background-color: var(--primaria);
    color: var(--fundo-branco);
    transform: scale(1.1);
}

.slider-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Indicadores (bolinhas) */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    pointer-events: auto;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Indicador ativo baseado no input :checked - para 7 slides */
#slide1:checked ~ .slider-indicators .indicator:nth-child(1),
#slide2:checked ~ .slider-indicators .indicator:nth-child(2),
#slide3:checked ~ .slider-indicators .indicator:nth-child(3),
#slide4:checked ~ .slider-indicators .indicator:nth-child(4),
#slide5:checked ~ .slider-indicators .indicator:nth-child(5),
#slide6:checked ~ .slider-indicators .indicator:nth-child(6),
#slide7:checked ~ .slider-indicators .indicator:nth-child(7) {
    background-color: var(--primaria);
    transform: scale(1.3);
    border-color: var(--primaria);
}

/* ===== SEÇÕES COMUNS ===== */
section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--texto-principal);
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primaria);
}

.highlight {
    color: var(--primaria);
}

.section-subtitle {
    text-align: center;
    color: var(--texto-secundario);
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ===== SEÇÃO PRODUTOS ===== */
.products {
    background-color: var(--fundo-branco);
}

/* Container de imagens 200x200px */
.products-images-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.product-image-item {
    width: 250px;
    height: 250px;
    border-radius: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.product-image-item:hover {
    transform: translateY(-5px);
    border-color: var(--primaria);
    box-shadow: 0 8px 20px rgba(196, 30, 135, 0.15);
}

.product-image-200 {
    width: 100%;
    height: 100%;
    padding: 1rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-image-item:hover .product-image-200 {
    transform: scale(1.05);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--fundo-branco);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--borda);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    border-color: var(--primaria);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(196, 30, 135, 0.15);
}

.product-image {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fundo-branco);
    font-size: 3.5rem;
    background-color: var(--primaria);
}

.product-badge {
    position: relative;
    background-color: var(--primaria);
    color: var(--fundo-branco);
    padding: 6px 15px;
    border-radius: 50px;
    border: 2px solid white;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--texto-principal);
    text-align: center;
    font-weight: 600;
}

.product-description {
    color: var(--texto-secundario);
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
    font-size: 1rem;
}

/* ===== SEÇÃO SERVIÇOS ===== */
.services {
    background-color: var(--fundo-branco);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--fundo-branco);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--borda);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-color: var(--primaria);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(196, 30, 135, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--fundo-branco);
    font-size: 2rem;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--texto-principal);
    font-weight: 600;
}

.service-description {
    color: var(--texto-secundario);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== SEÇÃO SOBRE ===== */
.about {
    background-color: var(--fundo-branco);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--texto-secundario);
    line-height: 1.7;
    padding-left: 20px;
    border-left: 3px solid var(--primaria);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--fundo-claro);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    border-color: var(--primaria);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(196, 30, 135, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--fundo-branco);
    font-size: 1.8rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--texto-principal);
    font-weight: 600;
}

.feature-content p {
    color: var(--texto-secundario);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== SEÇÃO CONTATO ===== */
.order {
    background-color: var(--fundo-branco);
}

.order-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.method-card {
    background-color: var(--fundo-branco);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--borda);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.method-card:hover {
    border-color: var(--primaria);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(196, 30, 135, 0.1);
}

.method-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--fundo-branco);
    font-size: 2rem;
}

.method-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--texto-principal);
    font-weight: 600;
}

.method-description {
    color: var(--texto-secundario);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    margin-top: auto;
    border: none;
    cursor: pointer;
    background-color: var(--primaria);
    color: var(--fundo-branco);
    border: 1px solid var(--primaria);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 135, 0.2);
}

.btn-primary i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.anvisa {
    align-items: center;
    justify-items: center;
    justify-self: center;
    padding: 1rem;
    border: 1px solid var(--borda);
    border-radius: 10px;
    width: auto;
    text-align: center;
}

.anvisa img {
    width: 150px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* ===== RODAPÉ ===== */
.footer {
    background-color: var(--fundo-rodape);
    color: var(--texto-principal);
    padding: 2rem 0;
    border-top: 1px solid var(--borda);
    text-align: center;
}

.footer p {
    font-size: 1rem;
    color: var(--texto-secundario);
    line-height: 1.6;
}

.footer a {
    color: var(--texto-secundario);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* ===== RESPONSIVIDADE ===== */

/* DESKTOP MÉDIO (992px - 1400px) */
@media (max-width: 1400px) {
    .container {
        max-width: 95%;
    }

    .btn-order {
        text-align: center;
        min-width: 180px;
    }
}

/* TABLET GRANDE (768px - 992px) */
@media (max-width: 992px) {
    .services-grid,
    .products-grid,
    .features-grid,
    .order-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .navbar {
        gap: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .social-sidebar {
        display: none;
    }
    
    .logo-img img {
        height: 40px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Ajuste para container de imagens */
    .products-images-container {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .product-image-item {
        width: 180px;
        height: 180px;
    }
}

/* TABLET PEQUENO e MOBILE (max-width: 768px) */
@media (max-width: 768px) {
    /* Alternar entre banners desktop e mobile */
    .slide-image.desktop {
        display: none;
    }
    
    .slide-image.mobile {
        display: block;
    }
    
    /* Em mobile, o slide 7 será escondido */
    .slide-desktop-only {
        display: none !important;
    }
    
    /* Em mobile, o indicador do slide 7 será escondido */
    .indicator-desktop-only {
        display: none !important;
    }
    
    /* Em mobile, temos apenas 6 slides, então ajustamos a largura */
    .slider-wrapper {
        width: 600%; /* 100% * 6 */
    }
    
    .slide {
        width: 16.6667%; /* 100% / 6 */
    }
    
    /* Ajuste das transformações para 6 slides em mobile */
    #slide1:checked ~ .slider-wrapper {
        transform: translateX(0%);
    }
    
    #slide2:checked ~ .slider-wrapper {
        transform: translateX(-16.6667%);
    }
    
    #slide3:checked ~ .slider-wrapper {
        transform: translateX(-33.3334%);
    }
    
    #slide4:checked ~ .slider-wrapper {
        transform: translateX(-50.0001%);
    }
    
    #slide5:checked ~ .slider-wrapper {
        transform: translateX(-66.6668%);
    }
    
    #slide6:checked ~ .slider-wrapper {
        transform: translateX(-83.3335%);
    }
    
    /* Remover transformação do slide 7 em mobile */
    #slide7:checked ~ .slider-wrapper {
        transform: translateX(-83.3335%); /* Igual ao slide 6 */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .service-card,
    .product-card,
    .feature-card,
    .method-card {
        padding: 1rem;
    }
    
    .service-icon,
    .method-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .product-image {
        height: 50px;
        border-radius: 10px;
        font-size: 3rem;
    }
    
    .order {
        padding: 4rem 0 1rem 0;
    }

    .product-badge {
        justify-self: anchor-center;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-navigation {
        padding: 0 15px;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    /* Ajuste para container de imagens */
    .products-images-container {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .product-image-item {
        width: 160px;
        height: 160px;
    }
}

/* MOBILE (max-width: 576px) */
@media (max-width: 576px) {
    .services-grid,
    .products-grid,
    .features-grid,
    .order-methods {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 100%;
        gap: 1rem;
        padding: 0 1rem;
    }

    .order-methods {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-order,
    .btn-primary {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-width: 100px;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .footer {
        padding: 25px 0;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Ajuste para container de imagens em mobile */
    .products-images-container {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .product-image-item {
        width: calc(50% - 12px);
        height: 140px;
        max-width: 140px;
    }
}

/* MOBILE MUITO PEQUENO (max-width: 400px) */
@media (max-width: 400px) {
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .product-card,
    .feature-card,
    .method-card {
        padding: 1rem;
    }
    
    .logo-img img {
        height: 50px;
    }
    
    .mobile-menu {
        width: 260px;
    }
    
    /* Ajuste final para container de imagens */
    .products-images-container {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .product-image-item {
        width: calc(50% - 10px);
        height: 120px;
        max-width: 120px;
    }
}