* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: #fcfaf7; color: #3d2b1f; scroll-behavior: smooth; }

/* HEADER */
header { background-color: #ffefd5; position: sticky; top: 0; z-index: 1000; }
.header-full { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-img { height: 110px; width: auto; display: block; mix-blend-mode: multiply; }
.nav-area { padding-right: 30px; }
nav ul { list-style: none; display: flex; gap: 25px; }
nav a { text-decoration: none; color: #3d2b1f; font-weight: 600; font-size: 14px; text-transform: uppercase; }

/* HERO */
#hero { height: 450px; background: url('../img/IMAGEM3.jpeg') no-repeat center center/cover; display: flex; align-items: center; justify-content: center; }
.hero-overlay { background: rgba(0, 0, 0, 0.45); width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; padding: 20px; }
#hero h1 { font-size: 42px; font-weight: 700; margin-bottom: 15px; }
.btn-hero-premium { background-color: #ffffff; color: #3d2b1f; padding: 16px 45px; text-decoration: none; font-weight: 700; border-radius: 4px; transition: 0.4s; }

/* SERVIÇOS E GALERIA */
.section-title { font-size: 28px; margin-bottom: 40px; color: #3d2b1f; text-align: center; font-weight: 700; }
#servicos { padding: 80px 0; }
.services-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.service-card { background: #fff; padding: 40px; width: 320px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); text-align: center; }

.container-galeria { padding: 80px 20px; text-align: center; background-color: #fcfaf7; }
.gallery-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 1200px; margin: 0 auto; }
.gallery-grid img { max-width: 480px; width: 100%; height: auto; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.btn-instagram { display: inline-block; padding: 12px 30px; border: 1.5px solid #3d2b1f; color: #3d2b1f; text-decoration: none; font-weight: 600; border-radius: 50px; margin-top: 40px; }

/* FALE COM A GENTE - ESTILO SOLICITADO */
#contato { 
    padding: 100px 20px; 
    background-color: #fcfaf7; 
    text-align: center;
}
.contato-clean h2 { 
    font-size: 26px; 
    color: #2c1e14; 
    margin-bottom: 15px; 
}
.contato-clean p { 
    font-size: 16px; 
    color: #666; 
    margin-bottom: 5px; 
}
.contato-info-list { margin-top: 20px; }
.contato-info-list p { 
    font-size: 14px; 
    color: #444; 
    margin-bottom: 8px; 
}
.contato-info-list strong { color: #000000; }

/* RODAPÉ ESCURO COM BOTÃO WHATSAPP */
footer { 
    background: #2c1e14; 
    color: #dccbb0; 
    text-align: center; 
    padding: 40px 20px; 
    position: relative;
    font-size: 13px;
}
.whatsapp-btn-footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}