:root {
    /* Paleta premium preto e dourado */
    --color-primary: #050608;          /* fundo principal quase preto */
    --color-secondary: #0B0D10;        /* fundo seções alternadas */
    --color-dark: #F5F5F7;             /* títulos claros */
    --color-gold-light: #F3D9A4;
    --color-gold: #D4AF37;
    --color-gold-dark: #A98C24;
    --color-text-light: #E5E7EB;       /* texto padrão claro */
    --color-text-muted: #9CA3AF;       /* texto secundário */
    --color-white: #ffffff;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--color-primary); color: var(--color-text-light); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.5px; }
.gold-text { background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: var(--color-gold); }
.btn-gold { display: inline-block; background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)); color: var(--color-white); padding: 12px 28px; border-radius: 4px; font-weight: 500; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2); position: relative; overflow: hidden; z-index: 1; }
.btn-gold::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold)); transition: var(--transition); z-index: -1; }
.btn-gold:hover::before { left: 0; }
.btn-gold:hover { color: var(--color-white); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); transform: translateY(-2px); }
.btn-outline-gold { display: inline-block; background: transparent; color: var(--color-gold); padding: 10px 24px; border-radius: 4px; font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; border: 1px solid var(--color-gold); cursor: pointer; transition: var(--transition); }
.btn-outline-gold:hover { background: var(--color-gold); color: var(--color-primary); }
.btn-block { display: block; width: 100%; text-align: center; margin-top: 15px; }

.section { padding: 100px 0; position: relative; }
.bg-dark { background-color: var(--color-primary); }
.bg-dark-blue { background-color: var(--color-secondary); }
.bg-light-areas { background-image: url('../img/areas-bg-new.png'); background-position: center; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; background-color: var(--color-white); position: relative; }
.bg-light-areas::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255, 255, 255, 0.2); z-index: 0; }
.bg-light-areas .container { position: relative; z-index: 1; }
.bg-light-areas .section-title { color: var(--color-primary); }
.bg-light-areas .service-card { background-color: var(--color-white); box-shadow: 0 10px 30px rgba(0,0,0,0.06); border: 1px solid rgba(212, 175, 55, 0.3); border-bottom: 3px solid transparent; }
.bg-light-areas .service-card:hover { background-color: #fbfbfb; box-shadow: 0 15px 40px rgba(0,0,0,0.12); border-bottom: 3px solid var(--color-gold); transform: translateY(-10px); }
.bg-light-areas .service-card h3 { color: var(--color-primary); }
.bg-light-areas .service-card p { color: #333333; }
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 20px; color: var(--color-dark); }
.divider-gold { width: 60px; height: 3px; background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold-dark)); margin: 0 auto 40px auto; }
.divider-gold-left { width: 60px; height: 3px; background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold-dark)); margin: 0 0 30px 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }

.navbar { position: fixed; top: 0; left: 0; width: 100%; height: 130px; z-index: 1000; transition: var(--transition); background: #1C2125; backdrop-filter: blur(10px); box-shadow: 0 4px 15px rgba(0,0,0,0.6); border-bottom: 1px solid rgba(212, 175, 55, 0.25); }
.navbar.scrolled { height: 110px; background: #1C2125; box-shadow: 0 4px 25px rgba(0,0,0,0.9); }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 5%; height: 100%; }
.brand-logo { position: relative; height: 100%; width: 250px; display: flex; align-items: center; justify-content: flex-start; text-decoration: none; padding: 0; }
.logo-img { height: 110px; width: auto; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); transition: var(--transition); position: relative; max-width: 100%; }
.navbar.scrolled .logo-img { height: 90px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links li a:not(.btn-outline-gold) { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; position: relative; color: var(--color-text-light); }
.nav-links li a:not(.btn-outline-gold):hover { color: var(--color-gold); }

.hero { height: 100vh; min-height: 600px; background: url('../img/hero-imovel.png') center top/cover no-repeat; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent 75%), linear-gradient(135deg, rgba(5,6,8,0.26) 0%, rgba(11,13,16,0.35) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 1100px; width: 100%; text-align: center; margin-top: 0; opacity: 1; animation: fadeInUp 1s ease; padding: 0 20px; }
.hero-title { font-size: 7rem; line-height: 1.1; margin-bottom: 24px; color: var(--color-dark); }
.hero-subtitle { font-size: 2.4rem; color: var(--color-text-light); margin-bottom: 36px; }
.hero-buttons { display: flex; justify-content: center; gap: 20px; }
.mobile-menu-btn { display: none; background: transparent; border: none; color: var(--color-gold); font-size: 1.8rem; cursor: pointer; padding: 5px; }
.hero-inline-image { margin: 30px auto 0 auto; max-width: 320px; width: 100%; border-radius: 10px; box-shadow: 0 18px 45px rgba(0,0,0,0.9); border: 1px solid rgba(212, 175, 55, 0.35); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.grid-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
@media (min-width: 1000px) {
    .grid-services > .service-card:nth-child(7):last-child { grid-column: 2 / 3; }
}
@media (min-width: 660px) and (max-width: 999px) {
    .grid-services > .service-card:nth-child(7):last-child { grid-column: 1 / -1; justify-self: center; width: 100%; max-width: 450px; }
}
.service-card { background-color: #0F1217; padding: 40px 30px; border-radius: 8px; border: 1px solid rgba(212, 175, 55, 0.18); border-bottom: 3px solid transparent; transition: var(--transition); text-align: center; box-shadow: 0 18px 40px rgba(0,0,0,0.75); }
.service-card:hover { transform: translateY(-10px); border-bottom: 3px solid var(--color-gold); box-shadow: 0 22px 55px rgba(0, 0, 0, 0.95); background-color: #141820; }
.service-icon { font-size: 2.5rem; color: var(--color-gold); margin-bottom: 20px; transition: var(--transition); }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--color-dark); }
.service-card p { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.6; }

.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; max-width: 1000px; margin: 0 auto; text-align: left; }
.about-image img { width: 100%; max-width: 450px; border-radius: 8px; box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85); border: 1px solid rgba(212, 175, 55, 0.3); }
.about-text p { color: var(--color-text-muted); font-size: 1.05rem; }

.about-page-container { display: flex; flex-wrap: nowrap; gap: 0; align-items: stretch; justify-content: center; text-align: left; width: 100%; margin: 0; }
#sobre-page .container > .about-page-container + .about-page-container { margin-top: 15px; }
.about-page-image { flex: 0 0 50%; max-width: 50%; padding-right: 60px; padding-bottom: 60px; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center; border: none; border-right: 3px solid #C69C2F; border-bottom: 3px solid #C69C2F; }
.dr-photo { width: 100%; border-radius: 8px; box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85); border: 1px solid rgba(212, 175, 55, 0.3); position: relative; z-index: 2; }
.about-page-text { flex: 0 0 50%; max-width: 50%; padding-left: 60px; padding-bottom: 60px; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center; border: none; }
.about-page-text p { color: #4a4a4a; font-size: 1.05rem; line-height: 1.6; }
.about-page-text-large { flex: 0 0 50%; max-width: 50%; padding-right: 60px; padding-top: 60px; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center; border: none; }
.about-page-text-large p { color: #4a4a4a; font-size: 1.25rem; line-height: 1.8; }
.about-page-image-small { flex: 0 0 50%; max-width: 50%; padding-left: 60px; padding-top: 60px; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; border: none; border-left: 3px solid #C69C2F; border-top: 3px solid #C69C2F; }
.about-page-image-small .dr-photo { max-width: 70%; display: block; margin: 0 auto; }
.theme-light .container { max-width: 92%; margin-left: auto; margin-right: auto; }
.theme-light .about-page-text h3 { font-size: 1.5rem !important; }

.contact-grid { max-width: 600px; margin: 0 auto; }
.contact-form-wrapper { background: #0F1217; padding: 40px; border-radius: 8px; border: 1px solid rgba(212, 175, 55, 0.25); box-shadow: 0 18px 45px rgba(0,0,0,0.9); }
.form-control { width: 100%; padding: 15px; background: #050608; border: 1px solid #1F2933; border-radius: 4px; color: var(--color-text-light); font-family: var(--font-body); font-size: 1rem; transition: var(--transition); margin-bottom: 20px;}
.form-control:focus { outline: none; border-color: var(--color-gold); background: #050608; box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35); }
.form-control::placeholder { color: var(--color-text-muted); }
textarea.form-control { font-family: var(--font-body); resize: vertical; }

/* Media Queries for responsiveness */
@media (max-width: 991px) {
    .hero-title { font-size: 5rem; }
    .hero-subtitle { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; z-index: 1002; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 70%; height: 100vh; background: #1C2125; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px; transition: 0.5s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.5); border-left: 1px solid rgba(212, 175, 55, 0.2); z-index: 1001; }
    .nav-links.active { right: 0; }
    .nav-links li a { font-size: 1.1rem !important; }
    
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .section-title { font-size: 2.2rem; }
    
    .about-container, .about-page-container { flex-direction: column; gap: 30px; }
    .about-page-text, .about-page-text-large, .about-page-image, .about-page-image-small { flex: 0 0 100%; max-width: 100%; padding: 0 !important; text-align: center; border: none !important; }
    .about-page-image-small .dr-photo { max-width: 90%; margin: 20px auto; }
    
    .hero { height: auto; min-height: 500px; padding: 150px 0 80px 0; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    
    .footer-container { flex-direction: column; gap: 40px; text-align: center; }
    .footer-col { align-items: center !important; }
    .footer-logo { margin: 0 auto; }
    .footer-link { justify-content: center; width: 100%; }
    .footer-col p { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 1.8rem; }
    .navbar { height: 100px; }
    .logo-img { height: 70px; }
    .grid-services { grid-template-columns: 1fr; }
    .service-card { padding: 30px 15px; }
}

/* Header Spacer */
.header-spacer { height: 130px; background-color: var(--color-primary); }

@media (max-width: 768px) {
    .header-spacer { height: 110px; }
}
@media (max-width: 480px) {
    .header-spacer { height: 100px; }
}

/* Timeline connecting line */
.timeline-line { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 3px; background: #C69C2F; z-index: 0; }

/* White Theme (.theme-light) for Sobre Nós Page */
.theme-light { background-color: var(--color-white); color: var(--color-primary); }
.theme-light .bg-dark-blue, .theme-light .bg-dark { background-color: var(--color-white); }
.theme-light .section-title { color: var(--color-primary); }
.theme-light .about-page-text p { color: #4a4a4a; }
.theme-light .contact-form-wrapper { background: var(--color-white); border: 1px solid rgba(212, 175, 55, 0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.theme-light .form-control { background: #fdfdfd; border: 1px solid #ddd; color: var(--color-primary); }
.theme-light .form-control:focus { background: #fff; border-color: var(--color-gold); box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2); }
.theme-light .form-control::placeholder { color: #999; }

/* Custom Footer */
.footer-custom { background-color: #1C2125; color: var(--color-text-light); padding: 70px 0 20px 0; border-top: 1px solid rgba(212, 175, 55, 0.25); }
.footer-custom p { color: var(--color-text-light); }
.footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 50px; margin-bottom: 50px; }
.footer-col { flex: 1 1 250px; display: flex; flex-direction: column; gap: 8px; }
.footer-logo { max-width: 220px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); margin-bottom: 10px; }
.footer-title { color: var(--color-gold); font-size: 1.15rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-heading); }
.footer-col p { margin: 0; font-size: 0.95rem; line-height: 1.5; display: flex; align-items: flex-start; gap: 12px; }
.footer-col p i { color: var(--color-gold); width: 20px; text-align: center; margin-top: 3px; }
.footer-divider { width: 40px; height: 1px; background: rgba(212, 175, 55, 0.3); margin: 12px 0; }
.footer-link { color: var(--color-text-light); text-decoration: none; font-size: 0.95rem; display: flex; align-items: center; gap: 12px; padding: 6px 0; transition: var(--transition); width: fit-content; }
.footer-link i { color: var(--color-gold); width: 20px; text-align: center; font-size: 1.1rem; transition: var(--transition); }
.footer-link:hover { color: var(--color-gold); transform: translateX(5px); }
.footer-link:hover i { transform: scale(1.1); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 20px; padding-bottom: 20px; font-size: 0.9rem; color: var(--color-text-muted); }
.dev-link { color: var(--color-gold); font-weight: 500; font-family: var(--font-body); letter-spacing: 0.5px; transition: var(--transition); text-decoration: none; }
.dev-link:hover { color: var(--color-white); text-decoration: underline; }

/* Floating WhatsApp Button */
.float-whatsapp { position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4); z-index: 1001; transition: var(--transition); }
.float-whatsapp:hover { background-color: #128c7e; color: white; transform: translateY(-5px) scale(1.05); box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.6); }

@media (max-width: 768px) {
    .footer-container { flex-direction: column; justify-content: center; text-align: center; }
    .footer-info { justify-content: center; }
    .float-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 28px; }
}

