:root {
    --gold: #c5a059;
    --dark-bg: #0a0a0a;
    --orange: #d97706;
    --stats-bg: #7c2d12;
    --white: #ffffff;
    --wa-green: #25d366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; background-color: var(--dark-bg); }

/* WHATSAPP FLUTUANTE */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: var(--wa-green); color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.3); z-index: 1000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.3s ease; }

/* PARALLAX */
.hero-parallax { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: var(--dark-bg); color: var(--white); padding: 20px 10%; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
.main-content { position: relative; z-index: 2; margin-top: 100vh; background-color: var(--white); box-shadow: 0 -10px 40px rgba(0,0,0,0.6); }

/* NAV E LOGO */
.nav-container { position: absolute; top: 20px; left: 10%; right: 10%; display: flex; justify-content: space-between; align-items: center; z-index: 10; }
.logo-header { height: 120px; width: auto; filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5)); }
.btn-top { background-color: var(--orange); color: white; padding: 10px 18px; border-radius: 5px; text-decoration: none; font-weight: bold; font-size: 13px; }

/* HERO E TAG OAB */
.hero-main { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; margin-top: 80px; }
.hero-image-box { position: relative; flex: 1; min-width: 300px; text-align: center; }
.img-perfil { width: 100%; max-width: 380px; border-radius: 15px; border: 1px solid #333; }

.tag-adv { 
    position: absolute; 
    bottom: 20px; 
    left: -40px; 
    background-color: var(--orange); 
    padding: 12px 25px; 
    font-weight: bold; 
    border-radius: 20px; 
    color: #000; 
    box-shadow: 4px 4px 15px rgba(0,0,0,0.3); 
    font-size: 14px; 
    text-align: left;
    z-index: 5;
}
.oab-text { font-size: 11px; font-weight: normal; }

.hero-content { flex: 1.5; min-width: 300px; }
h1 { font-size: 3rem; margin: 15px 0; line-height: 1.1; }
h1 span { color: var(--gold); }
.gold-text { color: var(--gold); font-weight: bold; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; }

.hero-desc { 
    color: #aaa; 
    margin-bottom: 45px; 
    font-size: 1.1rem; 
    line-height: 1.7; 
}

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-whatsapp { background-color: var(--gold); color: #000; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: bold; display: flex; align-items: center; gap: 8px; }
.btn-outline { border: 1px solid #fff; color: #fff; padding: 12px 25px; border-radius: 50px; text-decoration: none; }

/* DEMAIS SEÇÕES */
.stats { background-color: var(--stats-bg); color: white; display: flex; justify-content: space-around; padding: 40px 10%; text-align: center; flex-wrap: wrap; gap: 20px; }
.about { padding: 80px 10%; text-align: center; }
.logo-about { height: 200px; width: auto; margin-bottom: 20px; }
.about-text { max-width: 800px; margin: 15px auto; color: #666; font-size: 1.1rem; }
.areas-tags span { display: inline-block; background: #f3f4f6; padding: 8px 15px; margin: 5px; border-radius: 5px; color: var(--orange); font-weight: bold; }
.services { padding: 60px 10%; text-align: center; background-color: #fcfcfc; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.service-card { padding: 30px; border: 1px solid #eee; border-radius: 10px; text-align: left; background: #fff; }
.service-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; display: block; }

/* FAQ */
.faq-section { padding: 80px 10%; text-align: center; background-color: #fff; }
.faq-container { max-width: 800px; margin: 40px auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid #eee; margin-bottom: 10px; }
.faq-question { width: 100%; background: none; border: none; padding: 20px 0; text-align: left; font-size: 1.1rem; font-weight: bold; color: #333; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question:after { content: '\f078'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 0.8rem; color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background-color: #fafafa; padding: 0 20px; }
.faq-answer p { padding: 20px 0; color: #666; }

/* FOOTER */
.footer-contact { background-color: #f9f9f9; padding: 80px 10%; text-align: center; }
.contact-links { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 20px; }
.ora-phone, .ora-email, .ora-insta { color: var(--orange); font-weight: bold; }

/* MOBILE AJUSTE PARA NÃO ENCUBRIR HERO */
@media (max-width: 768px) {
    .hero-parallax { position: relative; height: auto; padding: 60px 5% 40px; }
    .main-content { margin-top: 0; }
    .nav-container { position: relative; top: 0; left: 0; right: 0; flex-direction: column; gap: 20px; margin-bottom: 40px; }
    .logo-header { height: 90px; }
    .hero-main { margin-top: 0; }
    .img-perfil { max-width: 260px; }
    .tag-adv { left: -10px; bottom: 10px; font-size: 12px; }
    h1 { font-size: 2.2rem; }
    .hero-desc { margin-bottom: 30px; }
    .contact-links { flex-direction: column; gap: 30px; }
}