/*
Theme Name: VapeFranca
Theme URI: https://vapefranca.com.br
Author: Manus
Description: Tema WordPress customizado para loja virtual com integração de WhatsApp.
Version: 1.0
Text Domain: vapefranca
*/

/* Reset e Estilos Básicos */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; background: #f4f4f4; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: #000; color: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; }
header .logo { font-size: 24px; font-weight: bold; }
header nav a { margin-right: 20px; cursor: pointer; }
header .btn-whatsapp { background: #25d366; color: #fff; padding: 10px 20px; border-radius: 5px; font-weight: bold; }

/* Banner */
.hero-slider { position: relative; width: 100%; height: 400px; overflow: hidden; background: #ddd; }
.slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 0.5s ease-in-out; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

/* Catalogo */
.section-title { text-align: center; margin: 40px 0; font-size: 28px; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-bottom: 50px; }
.product-card { background: #fff; padding: 15px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-align: center; }
.product-card img { max-width: 100%; height: 200px; object-fit: contain; margin-bottom: 15px; }
.product-card h3 { font-size: 18px; margin-bottom: 10px; }
.product-card .price { color: #e44d26; font-weight: bold; font-size: 20px; margin-bottom: 15px; }
.product-card .btn-view { display: inline-block; background: #000; color: #fff; padding: 8px 15px; border-radius: 4px; }

/* Avaliações */
.reviews-section { background: #fff; padding: 50px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-card { border: 1px solid #eee; padding: 15px; border-radius: 8px; text-align: center; }
.review-card img { max-width: 100%; border-radius: 5px; margin-top: 10px; }

/* Footer */
footer { background: #000; color: #fff; padding: 30px 0; text-align: center; margin-top: 50px; }
