/* ============================================
   BASE CSS - SmartCatálogo AI
   Regras gerais que valem para TODOS os dispositivos
   SEM media queries aqui!
   ============================================ */

/* Importar fonte Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset e fonte base */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
    overflow-x: hidden;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Transições suaves nos cards */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   IMAGENS DOS PRODUTOS - Padrão Global
   ========================================== */
.product-card img {
    object-fit: contain;
    object-position: center;
    background-color: #f9fafb;
}
