:root {
    --gold: #D4AF37; 
    --gold-light: #F4EAD5;
    --bg-main: #FFFFFF; 
    --bg-sec: #FAF7F2; 
    --white: #FFFFFF;
    --text-main: #6B5B53; 
    --text-light: #9A8C84; 
    --shadow-soft: 0 15px 40px rgba(180, 160, 140, 0.15); 
    --shadow-hover: 0 20px 50px rgba(212, 175, 55, 0.2); 
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: var(--bg-main); color: var(--text-main); overflow-x: hidden; }
html { scroll-behavior: smooth; }

.bg-light { background-color: var(--bg-sec); }
.section { padding: 100px 7%; }

.section-title { text-align: center; font-size: 2.8rem; font-weight: 700; color: var(--text-main); margin-bottom: 15px; letter-spacing: -1px; }
.section-title.text-left { text-align: left; }
.section-subtitle { text-align: center; color: var(--text-light); max-width: 600px; margin: 0 auto 50px auto; font-size: 1.1rem; }
.section-subtitle.text-left { text-align: left; margin: 0 0 30px 0; max-width: 700px; }

/* WhatsApp Flutuante */
.whatsapp-float-container { position: fixed; bottom: 25px; right: 25px; z-index: 1000; display: flex; align-items: center; gap: 15px; }
.wa-tooltip { background: var(--white); color: var(--gold); padding: 8px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; box-shadow: var(--shadow-soft); border: 1px solid var(--gold-light); animation: pulse-tooltip 2s infinite; }
@keyframes pulse-tooltip { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
.whatsapp-float { background-color: var(--gold); color: var(--white); border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4); transition: var(--transition); text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1) rotate(-10deg); background-color: #bfa13d; }

/* Header */
header { position: fixed; top: 0; width: 100%; height: 80px; display: flex; justify-content: space-between; align-items: center; padding: 0 7%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); box-shadow: 0 4px 30px rgba(180, 160, 140, 0.08); z-index: 1000; }
.logo { font-size: 1.6rem; font-weight: 700; color: var(--gold); display: flex; gap: 10px; align-items: center; }
nav { display: flex; gap: 30px; }
nav a { text-decoration: none; color: var(--text-main); font-weight: 500; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
nav a i { color: var(--gold); font-size: 1.1rem; }
nav a:hover { color: var(--gold); }
#menuBtn { display: none; font-size: 26px; border: none; background: none; cursor: pointer; color: var(--text-main); }

/* Botões */
.btn { padding: 16px 36px; border-radius: 999px; text-decoration: none; font-weight: 600; transition: var(--transition); display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: none; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 1rem; }
.gold { background: var(--gold); color: var(--bg-main); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25); }
.gold:hover { background: #bfa13d; transform: translateY(-3px); }
.outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.outline:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }
.w-100 { width: 100%; }

/* ========================================================
   SEÇÃO HERO (COM LOGO NA TAG)
======================================================== */
.hero { 
    padding: 140px 7% 80px; 
    display: flex; 
    align-items: center; 
    background: radial-gradient(circle at right center, var(--bg-sec) 0%, var(--bg-main) 60%);
    min-height: auto; 
}

.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 60px; max-width: 1200px; margin: 0 auto; width: 100%; }

/* Tag com Logo Image */
.tag-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 20px 6px 8px !important; /* Mais justinho do lado da imagem */
    background: var(--white); 
    color: var(--gold); 
    font-weight: 500; 
    font-size: 0.95rem; 
    border-radius: 999px; 
    box-shadow: var(--shadow-soft); 
    margin-bottom: 25px;
}
.tag-logo img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-content { flex: 1; z-index: 2; }
.hero h1 { font-size: 4.2rem; font-weight: 700; margin-bottom: 20px; line-height: 1.1; letter-spacing: -1px; color: var(--text-main); }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.15rem; color: var(--text-light); line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

/* Carrossel Expansivo MENOR E ISOLADO */
.hero-visual { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; width: 100%; }

.fancy-slider { 
    width: 100%; 
    max-width: 520px; 
    height: 420px; 
    border-radius: 30px; 
    overflow: hidden; 
    position: relative; 
    box-shadow: 0 25px 50px rgba(180, 160, 140, 0.3);
}
.slider-list { width: 100%; height: 100%; position: absolute; inset: 0; }
.slider-item { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; }
.slider-item img { width: 100%; height: 100%; object-fit: cover; }

.slider-item:nth-child(1) { z-index: 1; }
.slider-item:nth-child(2) { z-index: 3; width: 110px; height: 150px; top: auto; bottom: 20px; left: auto; right: 20px; border-radius: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.slider-item:nth-child(n+3) { z-index: 0; width: 110px; height: 150px; bottom: -200px; right: 20px; opacity: 0; border-radius: 15px; }

.slider-arrows { position: absolute; bottom: 20px; left: 20px; z-index: 10; display: flex; gap: 12px; }
.slider-arrows button { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--white); border: none; font-size: 1rem; cursor: pointer; transition: var(--transition); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); display: flex; justify-content: center; align-items: center; }
.slider-arrows button:hover { background: #bfa13d; transform: scale(1.1); }

.floating-badge { position: absolute; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 12px 24px; border-radius: 999px; font-weight: 600; color: var(--text-main); box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 8px; animation: float 4s ease-in-out infinite; border: 1px solid rgba(212, 175, 55, 0.2); z-index: 5; }
.floating-badge i { color: var(--gold); }
.badge-1 { top: 5%; left: -5%; animation-delay: 0s; }

/* Status */
.status-section { padding: 50px 7%; border-bottom: 1px solid rgba(180, 160, 140, 0.1); }
.status-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; }
.status-item i { font-size: 36px; color: var(--gold); margin-bottom: 15px; }
.status-item h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: var(--text-main); }
.status-item p { font-size: 0.9rem; line-height: 1.6; color: var(--text-light); }

/* CATÁLOGOS */
.catalogos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 50px; }
.catalogo-card { display: flex; flex-direction: column; text-decoration: none; background: var(--white); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition); border: 1px solid rgba(180, 160, 140, 0.1); }
.catalogo-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.catalogo-img { width: 100%; height: 280px; position: relative; overflow: hidden; }
.catalogo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.catalogo-card:hover .catalogo-img img { transform: scale(1.08); }
.catalogo-tag { position: absolute; top: 20px; left: 20px; padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: 0.85rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1); z-index: 2; }
.gold-tag { background: var(--gold); color: var(--white); }
.silver-tag { background: #E2E8F0; color: #4A5568; }
.catalogo-info { padding: 30px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.catalogo-info h3 { font-size: 1.5rem; color: var(--gold); margin-bottom: 15px; font-weight: 700; }
.catalogo-info p { color: var(--text-light); font-size: 1rem; line-height: 1.6; margin-bottom: 25px; flex: 1; }
.btn-link { font-weight: 600; color: var(--text-main); display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); padding: 12px 24px; border-radius: 999px; background: var(--bg-sec); }
.catalogo-card:hover .btn-link { background: var(--gold); color: var(--white); gap: 12px; }

/* Banner de Garantia */
.garantia-banner { background: var(--gold-light); padding: 60px 7%; border-top: 1px solid rgba(212, 175, 55, 0.3); border-bottom: 1px solid rgba(212, 175, 55, 0.3); }
.garantia-container { display: flex; align-items: center; justify-content: center; gap: 30px; max-width: 900px; margin: 0 auto; }
.garantia-icon { font-size: 60px; color: var(--gold); background: var(--white); width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); flex-shrink: 0; }
.garantia-text h2 { font-size: 1.8rem; color: var(--text-main); margin-bottom: 10px; font-weight: 700; }
.garantia-text p { font-size: 1rem; color: var(--text-main); line-height: 1.6; }

/* Produtos */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.product-card { background: var(--white); border-radius: 30px; padding: 20px; position: relative; box-shadow: var(--shadow-soft); transition: var(--transition); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-hover); }
.card-badge { position: absolute; top: 35px; left: 35px; background: var(--white); padding: 6px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; color: var(--text-main); z-index: 2; box-shadow: 0 5px 15px rgba(180, 160, 140, 0.2); }
.product-image { width: 100%; height: 320px; border-radius: 20px; overflow: hidden; background: var(--bg-sec); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-info { padding: 25px 10px 10px; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.product-info .desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 15px; line-height: 1.5; }
.btn-medida { background: none; border: none; font-size: 0.85rem; font-family: 'Poppins'; font-weight: 600; color: var(--gold); text-decoration: underline; cursor: pointer; text-align: left; margin-bottom: 20px; transition: var(--transition); display: inline-table; }
.btn-medida:hover { color: #bfa13d; }
.mt-push { margin-top: auto; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid rgba(180, 160, 140, 0.15); margin-top: auto; }
.price-row .price { font-size: 1.6rem; color: var(--gold); font-weight: 700; line-height: 1; }
.price-row .installment { font-size: 0.8rem; color: var(--text-light); margin-top: 5px; }
.btn-icon { width: 50px; height: 50px; background: var(--gold); color: var(--bg-main); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; text-decoration: none; transition: var(--transition); box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3); }
.btn-icon:hover { transform: scale(1.1) rotate(-10deg); }

/* Projetos Personalizados */
.custom-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
.custom-projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.custom-card { position: relative; height: 420px; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition); }
.custom-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.custom-bg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.custom-card:hover .custom-bg { transform: scale(1.1); }
.custom-content.glass { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); padding: 25px; border-radius: 20px; text-align: left; box-shadow: 0 10px 30px rgba(180, 160, 140, 0.1); border: 1px solid rgba(255, 255, 255, 0.5); }
.custom-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.custom-content p { font-size: 0.9rem; color: var(--text-main); opacity: 0.8; line-height: 1.5; }

/* Instagram */
.insta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 40px; }
.insta-item { position: relative; aspect-ratio: 1; border-radius: 20px; overflow: hidden; cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.insta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.insta-overlay i { color: var(--white); font-size: 2.5rem; transform: scale(0.5); transition: 0.4s ease; }
.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-item:hover .insta-overlay i { transform: scale(1); }

/* Modais */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(8px); display: flex; justify-content: center; align-items: center; z-index: 2000; opacity: 0; visibility: hidden; transition: 0.3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box { background: var(--bg-main); width: 90%; max-width: 500px; padding: 40px; border-radius: 30px; position: relative; box-shadow: 0 25px 60px rgba(180, 160, 140, 0.25); border: 1px solid rgba(212, 175, 55, 0.2); transform: translateY(30px); transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.modal-overlay.active .modal-box { transform: translateY(0); }
.text-center { text-align: center; }
.close-modal { position: absolute; top: 20px; right: 25px; background: none; border: none; font-size: 24px; color: var(--text-light); cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--gold); transform: scale(1.1); }
.modal-header { margin-bottom: 25px; text-align: center; }
.modal-header h3 { font-size: 1.8rem; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.modal-header p { font-size: 0.95rem; color: var(--text-light); }
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }
.input-group input, .input-group textarea { width: 100%; padding: 16px; border-radius: 16px; border: 1px solid rgba(180, 160, 140, 0.2); background: var(--bg-main); font-family: 'Poppins', sans-serif; color: var(--text-main); font-size: 1rem; outline: none; transition: 0.3s; box-shadow: 0 8px 20px rgba(180, 160, 140, 0.08); }
.input-group input:focus, .input-group textarea:focus { border-color: var(--gold); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2); }

/* FOOTER COM LOGO IMAGEM */
.footer-simple { background: var(--bg-sec); padding: 80px 7% 30px; text-align: center; border-top: 1px solid rgba(180, 160, 140, 0.15); }
.footer-simple-content { max-width: 600px; margin: 0 auto 40px; }

.footer-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--gold);
}

p {
    text-decoration: none;
}

.footer-desc { color: var(--text-light); margin-bottom: 30px; font-size: 1rem; }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; color: var(--text-main); font-weight: 500; }
.footer-contact-info i { color: var(--gold); margin-right: 8px; }
.footer-bottom { border-top: 1px solid rgba(180, 160, 140, 0.15); padding-top: 20px; display: flex; flex-direction: column; align-items: center; gap: 15px; color: var(--text-light); font-size: 0.85rem; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { width: 45px; height: 45px; background: var(--white); color: var(--gold); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.3rem; text-decoration: none; box-shadow: var(--shadow-soft); transition: var(--transition); }
.social-icons a:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); color: #bfa13d; }

/* Menu Mobile & Overlay */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--white); display: flex; flex-direction: column; padding: 100px 40px; gap: 30px; transition: 0.5s ease-in-out; z-index: 999; box-shadow: -10px 0 30px rgba(180, 160, 140, 0.15); }
.mobile-menu.active { right: 0; }
.mobile-menu a { text-decoration: none; color: var(--text-main); font-size: 1.1rem; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.mobile-menu a i { color: var(--gold); }
.overlay { position: fixed; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 998; }
.overlay.active { opacity: 1; visibility: visible; }

/* Animações JS */
.fade-element { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-element.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVIDADE PARA O HERO SEPARADO E MENOR */
@media(max-width: 991px) {
    .hero-container { flex-direction: column-reverse; text-align: center; gap: 50px; }
    .hero p { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .hero h1 { font-size: 3.5rem; }
    
    .fancy-slider { max-width: 450px; margin: 0 auto; }
    .floating-badge { display: flex; transform: scale(0.85); z-index: 20;}
    .badge-1 { top: -5%; left: -10%; }
    
    .custom-header { flex-direction: column; text-align: center; align-items: center; }
    .section-title.text-left, .section-subtitle.text-left { text-align: center; }
    .garantia-container { flex-direction: column; text-align: center; }
}

@media(max-width: 768px) {
    nav { display: none; }
    #menuBtn { display: block; color: var(--text-main); }
    .hero { padding-top: 120px; }
    .hero h1 { font-size: 2.8rem; }
    
    .fancy-slider { height: 380px; }
    
    .section { padding: 80px 5%; }
    .status-container { grid-template-columns: 1fr 1fr; }
    .insta-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 480px) {
    .hero h1 { font-size: 2.3rem; }
    .hero-buttons { justify-content: center; }
    .status-container { grid-template-columns: 1fr; }
    .mobile-menu { width: 80%; }
    .modal-box { padding: 30px 20px; }
    
    .fancy-slider { max-width: 100%; height: 350px; border-radius: 20px; }
    .slider-item:nth-child(2) { width: 80px; height: 110px; bottom: 15px; right: 15px; }
    .slider-item:nth-child(n+3) { width: 80px; height: 110px; bottom: -150px; right: 15px; }
    .slider-arrows { bottom: 15px; left: 15px; }
    .slider-arrows button { width: 35px; height: 35px; font-size: 0.9rem; }
    
    .badge-1 { display: none !important; } /* Oculto no celular de vez */
    .whatsapp-float-container { bottom: 15px; right: 15px; }
    .wa-tooltip { font-size: 0.75rem; padding: 6px 10px; }
    .whatsapp-float { width: 55px; height: 55px; font-size: 30px; }
    .garantia-banner { padding: 40px 5%; }
    .garantia-icon { width: 80px; height: 80px; font-size: 40px; }
    .garantia-text h2 { font-size: 1.5rem; }
}