/* ========================================
   CSS ESPECÍFICO - PÁGINA DO PRODUTO
   Arquivo modular para produto-mega-funk.html
   ======================================== */

/* Imagens da página do produto */
.imagem-principal img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.miniaturas img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

/* Responsividade específica da página do produto */
@media (max-width: 1024px) and (min-width: 769px) {
    .imagem-principal img {
        max-width: 350px;
        height: 350px;
    }
    
    .miniaturas img {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .imagem-principal img {
        max-width: 250px;
        height: 250px;
    }
    
    .miniaturas img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .imagem-principal img {
        max-width: 200px;
        height: 200px;
    }
    
    .miniaturas img {
        width: 40px;
        height: 40px;
    }
}
