/* ========================================
   CARROSSEL DE IMAGENS - LP1
   ========================================
   
   Estrutura:
   - 6 imagens (amostras do produto)
   - Desktop: 3 colunas (33.33% cada)
   - Tablet: 2 colunas (50% cada)
   - Mobile: 1 coluna (100%)
   
   Navegação:
   - Setas laterais (←  →)
   - Indicadores (4 pontos)
   - Teclado (Arrow Left/Right)
   - Touch/Swipe (mobile)
   
   ======================================== */

/* Container principal */
.carousel-container {
    position: relative;
    overflow: hidden;
}

/* Track que contém todos os slides */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Slides individuais - Responsivos */
.carousel-slide {
    flex-shrink: 0;
    width: 100%; /* Mobile: 1 imagem por vez */
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

/* Tablet: 2 imagens por vez */
@media (min-width: 768px) {
    .carousel-slide {
        width: 50%;
    }
}

/* Desktop: 3 imagens por vez */
@media (min-width: 1024px) {
    .carousel-slide {
        width: 33.333333%;
    }
}

/* ========================================
   CONTROLES DE NAVEGAÇÃO
   ======================================== */

/* Botões de navegação (setas) */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.carousel-prev {
    left: 0.5rem;
}

.carousel-next {
    right: 0.5rem;
}

/* Mobile: botões otimizados para touch (≥44px iOS guideline) */
@media (max-width: 768px) {
    .carousel-btn {
        width: 44px;
        height: 44px;
        padding: 0.5rem;
    }
    
    .carousel-prev {
        left: 0.25rem;
    }
    
    .carousel-next {
        right: 0.25rem;
    }
}

/* Indicadores (pontos) */
.carousel-indicator {
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-indicator:hover {
    transform: scale(1.2);
}

/* Mobile: indicadores com área de toque adequada (≥48px) */
@media (max-width: 768px) {
    .carousel-indicator {
        min-width: 48px;
        min-height: 48px;
    }
}

/* ========================================
   LEGENDAS E TEXTOS
   ======================================== */

/* Legendas do carrossel */
.carousel-slide h3 {
    color: #3a2f2d !important; /* Café escuro */
}

.carousel-slide p {
    color: #766b63 !important; /* Cinza quente */
}

/* ========================================
   MODAL DE IMAGENS
   ======================================== */

/* Modal de imagens */
#imageModal {
    display: none !important;
}

#imageModal:not(.hidden) {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* ========================================
   MOBILE OPTIMIZATIONS - MODAL
   ======================================== */

/* Melhorias para mobile no modal */
@media (max-width: 768px) {
    #imageModal {
        padding: 1rem;
    }
    
    #imageModal .relative {
        max-width: 100%;
        max-height: 90vh;
    }
    
    #imageModal img {
        object-fit: contain;
        width: 100%;
        height: auto;
    }
    
    /* Botão de fechar maior em mobile */
    #imageModal button {
        min-width: 48px;
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

/* ========================================
   TOUCH OPTIMIZATIONS - iOS/ANDROID
   ======================================== */

/* Prevenir zoom no duplo toque em iOS */
* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Permitir seleção em inputs e textos */
input, textarea, p, span, a, h1, h2, h3, h4, h5, h6 {
    -webkit-user-select: text;
    user-select: text;
}
