/* --- BASE E HEADER --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; scroll-behavior: smooth; }
body { background-color: #fff; color: #3d2b1f; overflow-x: hidden; width: 100%; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

.main-header { position: fixed; top: 0; width: 100%; height: 90px; background: #fff; z-index: 3000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); display: flex; align-items: center; }
.navbar { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 40px; }
.logo-img { height: 55px; width: auto; }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: #3d2b1f; font-weight: 600; transition: 0.3s; }
.menu-toggle { display: none; font-size: 30px; cursor: pointer; color: #3d2b1f; }

/* --- HERO / BANNER REPARADO --- */
.hero-section { 
    height: 70vh; margin-top: 90px; position: relative; background: #000; overflow: hidden;
    display: flex; align-items: center; justify-content: center; 
}
.hero-bg { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background-size: cover; background-position: center; z-index: 1;
    opacity: 0; transition: opacity 1.5s ease-in-out; /* Transição de 1.5s entre as fotos */
}
.hero-bg.active { 
    opacity: 0.6 !important; /* Apenas a que tiver 'active' aparece */
}

.hero-inner { position: relative; z-index: 10; width: 100%; text-align: center; }
#main-phrase { 
    color: #fff; font-size: clamp(1.8rem, 5vw, 3.5rem); text-shadow: 2px 2px 15px rgba(0,0,0,0.9); font-weight: 700;
    padding: 0 20px; margin: 0 auto; transition: opacity 0.5s ease-in-out;
}

/* --- VITRINE E PRODUTOS (IGUAL AO ORIGINAL) --- */
.section-padding { padding: 80px 0; }
.about-container { display: flex; align-items: center; gap: 50px; }
.about-text { flex: 1; }
.about-image { flex: 1; display: flex; justify-content: center; }
.about-image img { width: 100%; max-width: 450px; height: auto; border-radius: 15px; object-fit: cover; }

.filter-buttons { display: flex; justify-content: center; gap: 15px; margin: 40px 0; flex-wrap: wrap; }
.filter-btn { padding: 12px 30px; border: 2px solid #3d2b1f; border-radius: 50px; cursor: pointer; font-weight: bold; text-transform: uppercase; font-size: 0.8rem; transition: 0.3s; }
.filter-btn.active, .filter-btn:hover { background: #3d2b1f; color: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.product-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); display: flex; flex-direction: column; position: relative; }

.img-container { width: 100%; height: 320px; background: #fff; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 20px; }
.img-wrapper { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; border-radius: 15px !important; overflow: hidden; }
.img-container img { max-width: 100%; max-height: 100%; display: block; object-fit: contain; border-radius: 15px !important; }

.slider img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.8s; }
.slider img.active { opacity: 1; }

.tag-natal-luxo { position: absolute; top: 8px; right: 12%; z-index: 105; display: flex; flex-direction: column; align-items: center; width: 85px; }
.laco-img { width: 55px !important; height: auto !important; position: static !important; transform: none !important; }
.barbante-dourado-natal { width: 2px; height: 25px; background: #d4af37; margin-top: -20px; }
.cartao-natal-suspenso { background: #fffcf5; border: 1px solid #d4af37; padding: 5px; width: 85px; transform: rotate(2deg); box-shadow: 2px 2px 5px rgba(0,0,0,0.1); margin-top: -5px; }
.cartao-natal-suspenso p { color: #b01a1a; font-size: 0.55rem; font-weight: bold; text-align: center; line-height: 1.1; }

.product-card h3 { padding: 20px; text-align: center; font-size: 1.1rem; min-height: 80px; display: flex; align-items: center; justify-content: center; }
.order-btn { margin: 0 20px 20px; background: #25d366; color: #fff; text-decoration: none; padding: 14px; border-radius: 50px; text-align: center; font-weight: bold; transition: 0.3s; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .navbar { padding: 0 20px; position: relative; }
    .menu-toggle { display: block; margin-left: auto; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 90px; left: 0; width: 100%; background: #fff; padding: 20px 0; box-shadow: 0 5px 10px rgba(0,0,0,0.1); z-index: 3001; }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 15px 0; text-align: center; margin-left: 0; }
    .about-container { flex-direction: column; text-align: center; }
    .img-container { height: 280px; padding: 15px; }
}

.main-footer { background: #3d2b1f; color: #fff; padding: 50px 0; text-align: center; }
.footer-logo img { height: 70px; margin-bottom: 15px; }
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background: #25d366; color: #FFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 4000; text-decoration: none; }
