/*
================================================================================
1. REGRAS DE OVERRIDE PARA WORDPRESS
Estas regras são a nossa "artilharia pesada" para garantir que o tema
do WordPress não interfira no nosso design customizado.
================================================================================
*/
/* Regra Agressiva para esconder o header e título do tema */
html body .site-header,
html body #masthead,
html body .entry-header,
html body .page-header,
html body .page-title,
html body .elementor-location-header {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

body.page-template-template-canvas { padding: 0 !important; }

.site-content > .ast-container, 
.site-content > .kadence-content-wrap > .content-container,
.wp-block-group__inner-container,
.wp-block-html { 
    max-width: 100% !important; 
    padding: 0 !important; 
    margin: 0 !important;
}

/*
================================================================================
2. ESTILOS GERAIS E VARIÁVEIS
================================================================================
*/
:root {
    --azul-marinho: #1B365D;
    --dourado-forte: #D4AF7A; 
    --grafite: #36454F;
    --branco: #FFFFFF;
    --off-white: #fdfdfd;
    --fundo-secao-clara: #F8F9FA;/*
================================================================================
1. REGRAS DE OVERRIDE PARA WORDPRESS
================================================================================
*/
html body .site-header,
html body #masthead,
html body .entry-header,
html body .page-header,
html body .page-title,
html body .elementor-location-header {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

body.page-template-template-canvas { padding: 0 !important; }

.site-content > .ast-container, 
.site-content > .kadence-content-wrap > .content-container,
.wp-block-group__inner-container,
.wp-block-html { 
    max-width: 100% !important; 
    padding: 0 !important; 
    margin: 0 !important;
}

/*
================================================================================
2. ESTILOS GERAIS E VARIÁVEIS
================================================================================
*/
:root {
    --azul-marinho: #1B365D;
    --dourado-forte: #D4AF7A; 
    --grafite: #36454F;
    --branco: #FFFFFF;
    --off-white: #fdfdfd;
    --fundo-secao-clara: #F8F9FA;
    --borda-suave: #eef2f6;
    --azul-fundo-dark: #0E1A2B;
    --header-height-initial: 120px;
    --header-height-sticky: 80px;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height-sticky); }
body { margin: 0; font-family: var(--font-body); background-color: var(--branco); color: var(--grafite); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; margin: 0; }
h2.section-title, h3 { color: var(--azul-marinho); }
h1, .color-white { color: var(--branco) !important; }
p { line-height: 1.7; margin: 0 0 1rem 0; }
a { text-decoration: none; color: inherit; }

.pill { display: inline-block; border: 1px solid var(--dourado-forte); color: var(--dourado-forte); padding: 8px 18px; border-radius: 50px; font-family: var(--font-sans); font-weight: 600; margin-bottom: 16px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 80px auto; }
.section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1.2; }

/*
================================================================================
3. HEADER
================================================================================
*/
.main-header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    height: var(--header-height-initial); 
    display: flex; 
    align-items: center; 
    background-color: var(--azul-marinho);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInDown 0.8s 0.2s ease-out backwards; 
}
.main-header.sticky { 
    background-color: rgba(27, 54, 93, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2); 
    height: var(--header-height-sticky);
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.header-logo { height: 60px; transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.main-header.sticky .header-logo { height: 45px; }
.main-nav a { 
    font-family: var(--font-sans); 
    font-weight: 600; 
    font-size: 16px; 
    color: var(--dourado-forte);
    margin-left: 36px; 
    position: relative; 
    padding: 5px 0; 
    transition: color 0.3s ease; 
}
.main-nav a:hover { color: var(--branco); }
.main-nav a::after { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 0; 
    width: 100%; 
    height: 2px; 
    background-color: var(--branco);
    transform: scaleX(0); 
    transform-origin: left; 
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1); 
}
.main-nav a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0; color: var(--dourado-forte); transition: color 0.3s ease; }
.nav-toggle:hover { color: var(--branco); }
.nav-toggle i.feather { width: 32px; height: 32px; }

body.admin-bar .main-header { top: 32px; }
@media screen and (max-width: 782px) {
    body.admin-bar .main-header { top: 46px; }
    body.admin-bar .main-nav.active { top: 46px; }
}

/*
================================================================================
4. SEÇÕES PRINCIPAIS
================================================================================
*/
.hero-section { position: relative; padding-top: var(--header-height-initial); height: 100vh; display: flex; align-items: center; text-align: left; color: var(--branco); background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(14, 26, 43, 0.85) 0%, rgba(14, 26, 43, 0.2) 100%); }
.hero-container { position: relative; z-index: 2; }
.hero-content { max-width: 650px; }
.hero-headline { font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 24px; }
.hero-subheadline { font-size: 1.2rem; margin-bottom: 40px; color: rgba(255,255,255,0.85); font-weight: 400; max-width: 550px; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; font-family: var(--font-sans); font-weight: 600; border-radius: 8px; transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background-color: var(--dourado-forte); color: var(--azul-marinho); border-color: var(--dourado-forte); }
.btn-primary:hover { background-color: var(--branco); color: var(--azul-marinho); border-color: var(--branco); }
.btn-secondary { background-color: transparent; color: var(--branco); border-color: var(--branco); }
.btn-secondary:hover { background-color: var(--branco); color: var(--azul-marinho); }
.scroll-down-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; }
.mouse { width: 25px; height: 40px; border: 2px solid var(--branco); border-radius: 60px; position: relative; }
.mouse::before { content: ''; width: 4px; height: 4px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); background-color: var(--branco); border-radius: 50%; opacity: 1; animation: wheel 1.5s infinite; }
@keyframes wheel { to { top: 20px; opacity: 0; } }

.diferenciais-section { padding: 120px 0; background-color: var(--off-white); }
.diferenciais-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.diferencial-item { border-left: 3px solid transparent; padding: 24px; cursor: pointer; transition: all 0.4s ease; }
.diferencial-item.active { border-left-color: var(--dourado-forte); background-color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateX(10px); }
.diferencial-header { display: flex; align-items: center; gap: 20px; }
.diferencial-icon-wrapper { width: 50px; height: 50px; flex-shrink: 0; color: var(--grafite); background-color: var(--borda-suave); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; }
.diferencial-item.active .diferencial-icon-wrapper { color: var(--dourado-forte); background-color: var(--azul-marinho); transform: scale(1.1); }
.diferencial-item h3 { font-size: 1.8rem; }
.diferencial-body { max-height: 0; overflow: hidden; transition: all 0.5s ease-out; opacity: 0; color: var(--grafite); }
.diferencial-item.active .diferencial-body { max-height: 200px; margin-top: 16px; opacity: 1; }
.diferencial-body p { margin: 0; }
.diferenciais-image-viewer { height: 550px; }
.image-viewer-frame { width: 100%; height: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px -10px rgba(54, 69, 79, 0.3); }
.image-viewer-frame img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s ease-in-out; }

.servicos-section { padding: 120px 0; background-color: var(--fundo-secao-clara); position: relative; }
.servicos-bg-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(212, 175, 122, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 122, 0.1) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.5; }
.servicos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; position: relative; z-index: 2; }
.servico-card { background-color: var(--branco); padding: 40px; border-radius: 12px; text-align: center; border: 1px solid var(--borda-suave); position: relative; overflow: hidden; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.servico-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(54, 69, 79, 0.1); }
.servico-icon { color: var(--dourado-forte); margin-bottom: 24px; position: relative; }
.servico-icon i.feather { width: 48px; height: 48px; stroke-width: 1.5; }
.servico-title { font-size: 1.5rem; margin-bottom: 12px; position: relative; }
.servico-description { color: var(--grafite); font-size: 1rem; position: relative; }

/*
================================================================================
4. NOVA SEÇÃO DE IMÓVEIS (GRID)
================================================================================
*/
.imoveis-grid-section { padding: 120px 0; background-color: var(--fundo-secao-clara); }
.imoveis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.imovel-card { background-color: var(--branco); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: all 0.3s ease-in-out; display: flex; flex-direction: column; }
.imovel-card:hover { transform: translateY(-8px); box-shadow: 0 12px 20px rgba(0,0,0,0.1); }
.imovel-card-image { position: relative; height: 220px; overflow: hidden; }
.imovel-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.imovel-card:hover .imovel-card-image img { transform: scale(1.05); }
.favorite-btn { position: absolute; top: 15px; right: 15px; background: rgba(255,255,255,0.8); backdrop-filter: blur(5px); border: none; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--grafite); transition: all 0.3s ease; }
.favorite-btn:hover { background: var(--dourado-forte); color: var(--branco); }
.favorite-btn .feather-heart { fill: transparent; }
.favorite-btn:hover .feather-heart { fill: var(--branco); }

.status-vendido { position: absolute; top: 25px; left: -35px; background-color: var(--dourado-forte); color: var(--azul-marinho); padding: 8px 40px; font-family: var(--font-sans); font-weight: 700; font-size: 14px; text-transform: uppercase; transform: rotate(-45deg); z-index: 2; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.imovel-card.vendido .imovel-card-image::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.3); z-index: 1; }
.imovel-card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.imovel-card-price { font-family: var(--font-sans); font-size: 1.8rem; font-weight: 700; color: var(--azul-marinho); margin-bottom: 8px; }
.imovel-card-title { font-size: 1.25rem; line-height: 1.3; margin-bottom: 4px; }
.imovel-card-location { font-size: 0.95rem; color: var(--grafite); margin-bottom: 20px; }
.imovel-card-stats { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-top: 1px solid var(--borda-suave); margin-top: auto; }
.imovel-card-stats span { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; color: var(--grafite); }
.imovel-card-stats i { color: var(--dourado-forte); width: 20px; height: 20px; }

/* Botão "ENTRE EM CONTATO" */
.btn-card-action { display: block; background-color: var(--azul-marinho); color: var(--branco); border: 2px solid var(--azul-marinho); text-align: center; padding: 12px 24px; margin-top: 20px; font-size: 0.9rem; font-weight: 600; font-family: var(--font-sans); border-radius: 8px; transition: all 0.3s ease; }
.btn-card-action:hover { background-color: var(--grafite); border-color: var(--grafite); }

/* Rótulo "VENDIDO" */
.btn-vendido { display: block; background-color: #e0e0e0; color: #757575; text-align: center; padding: 12px 24px; margin-top: 20px; font-size: 0.9rem; font-weight: 700; font-family: var(--font-sans); border-radius: 8px; text-transform: uppercase; letter-spacing: 1px; cursor: default; }

/* Lógica para mostrar/esconder os botões */
.imovel-card .btn-vendido { display: none; }
.imovel-card.vendido .btn-card-action { display: none; }
.imovel-card.vendido .btn-vendido { display: block; }

.cta-section { padding: 120px 0; background-color: var(--fundo-secao-clara); text-align: center; }
.btn-cta { background-color: var(--azul-marinho); color: var(--branco); border-color: var(--azul-marinho); font-size: 1.1rem; padding: 18px 40px; }
.btn-cta:hover { background-color: var(--grafite); border-color: var(--grafite); transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }

/*
================================================================================
5. FOOTER
================================================================================
*/
.section-divider-wrapper { background-color: var(--fundo-secao-clara); line-height: 0; }
.section-divider { display: block; width: 100%; height: auto; }

.footer-section { padding: 0; background-color: var(--azul-fundo-dark); color: rgba(255,255,255,0.7); }
.footer-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 60px 0; border-bottom: 1px solid rgba(212, 175, 122, 0.2); }
.footer-cta-title { font-size: 2rem; color: var(--dourado-forte); margin-bottom: 8px; }
.footer-cta-text { font-size: 1rem; color: rgba(255,255,255,0.8); margin: 0; }
.footer-cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer-contact-link { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-sans); font-weight: 500; font-size: 1.1rem; color: var(--branco); transition: color 0.3s ease; }
.footer-contact-link:hover { color: var(--dourado-forte); }
.footer-contact-link i { color: var(--dourado-forte); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding: 60px 0; }
.footer-identity .footer-logo { max-width: 140px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: var(--branco); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; transition: all 0.3s ease; }
.footer-socials a:hover { border-color: var(--dourado-forte); color: var(--dourado-forte); transform: translateY(-3px) scale(1.1); box-shadow: 0 5px 15px rgba(212, 175, 122, 0.2); }
.footer-col-title { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 600; color: var(--dourado-forte); margin-bottom: 24px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-links a:hover { color: var(--branco); padding-left: 5px; }
.footer-bottom { padding: 30px 0; border-top: 1px solid rgba(212, 175, 122, 0.2); text-align: center; }
.footer-bottom p { margin: 5px 0; font-size: 14px; color: rgba(255, 255, 255, 0.5); }

/*
================================================================================
6. RESPONSIVIDADE
================================================================================
*/
@media (max-width: 900px) {
    .diferenciais-wrapper { grid-template-columns: 1fr; }
    .diferenciais-image-viewer { height: 400px; margin-top: 60px; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-identity { grid-column: 1 / -1; margin-bottom: 30px; text-align: center; align-items: center; display: flex; flex-direction: column; }
}
@media (max-width: 768px) {
    :root { 
        --header-height-initial: 90px; 
        --header-height-sticky: 70px;
    }
    .header-logo { height: 50px; }
    .main-header.sticky .header-logo { height: 40px; }

    .main-nav { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: var(--azul-fundo-dark); flex-direction: column; padding: 20px; justify-content: center; align-items: center; z-index: 1000; transition: opacity 0.4s ease, visibility 0.4s ease; opacity: 0; visibility: hidden; }
    .main-nav.active { opacity: 1; visibility: visible; }
    .main-nav a { color: var(--branco); margin: 0 0 25px 0; text-align: center; font-size: 1.8rem; text-shadow: none; }
    .nav-toggle { display: block; z-index: 1001; }
    .hero-section { padding-top: var(--header-height-initial); }
    .hero-content { text-align: center; }
    .hero-cta-group { justify-content: center; }
    .footer-cta { grid-template-columns: 1fr; text-align: center; }
    .footer-cta-actions { align-items: center; }
    .footer-main { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-identity { margin-bottom: 0; }
    .imoveis-grid { grid-template-columns: 1fr; }
}
    --borda-suave: #eef2f6;
    --azul-fundo-dark: #0E1A2B;
    --header-height-initial: 120px; /* Altura inicial dominante */
    --header-height-sticky: 80px;  /* Altura no scroll */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height-sticky); }
body { margin: 0; font-family: var(--font-body); background-color: var(--branco); color: var(--grafite); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; margin: 0; }
h2.section-title, h3 { color: var(--azul-marinho); }
h1, .color-white { color: var(--branco) !important; }
p { line-height: 1.7; margin: 0 0 1rem 0; }
a { text-decoration: none; color: inherit; }

.pill { display: inline-block; border: 1px solid var(--dourado-forte); color: var(--dourado-forte); padding: 8px 18px; border-radius: 50px; font-family: var(--font-sans); font-weight: 600; margin-bottom: 16px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 80px auto; }
.section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1.2; }

/*
================================================================================
3. HEADER DOMINANTE (REDESIGN FINAL)
================================================================================
*/
.main-header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    height: var(--header-height-initial); 
    display: flex; 
    align-items: center; 
    background-color: var(--azul-marinho); /* Fundo sólido por padrão */
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInDown 0.8s 0.2s ease-out backwards; 
}
/* Efeito Sticky ao rolar */
.main-header.sticky { 
    background-color: rgba(27, 54, 93, 0.9); /* Azul marinho semitransparente com glassmorphism */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2); 
    height: var(--header-height-sticky); /* Reduz a altura ao rolar */
}

.header-container { display: flex; justify-content: space-between; align-items: center; }
.header-logo { height: 60px; /* Logo grande inicial */ transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.main-header.sticky .header-logo { height: 45px; }

.main-nav a { 
    font-family: var(--font-sans); 
    font-weight: 600; 
    font-size: 16px; 
    color: var(--dourado-forte); /* Dourado por padrão */
    margin-left: 36px; 
    position: relative; 
    padding: 5px 0; 
    transition: color 0.3s ease; 
}
.main-nav a:hover { color: var(--branco); }
.main-nav a::after { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 0; 
    width: 100%; 
    height: 2px; 
    background-color: var(--branco); /* Sublinhado branco para o hover */
    transform: scaleX(0); 
    transform-origin: left; 
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1); 
}
.main-nav a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0; color: var(--dourado-forte); transition: color 0.3s ease; }
.nav-toggle:hover { color: var(--branco); }
.nav-toggle i.feather { width: 32px; height: 32px; }

/* CORREÇÃO PARA WORDPRESS ADMIN BAR */
body.admin-bar .main-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .main-header {
        top: 46px;
    }
    body.admin-bar .main-nav.active {
        top: 46px;
    }
}

/*
================================================================================
4. SEÇÕES PRINCIPAIS (HERO E DEMAIS)
================================================================================
*/

/* --- HERO SECTION --- */
.hero-section { position: relative; padding-top: var(--header-height-initial); height: 100vh; display: flex; align-items: center; text-align: left; color: var(--branco); background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(14, 26, 43, 0.85) 0%, rgba(14, 26, 43, 0.2) 100%); }
.hero-container { position: relative; z-index: 2; }
.hero-content { max-width: 650px; }
.hero-headline { font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 24px; }
.hero-subheadline { font-size: 1.2rem; margin-bottom: 40px; color: rgba(255,255,255,0.85); font-weight: 400; max-width: 550px; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; font-family: var(--font-sans); font-weight: 600; border-radius: 8px; transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background-color: var(--dourado-forte); color: var(--azul-marinho); border-color: var(--dourado-forte); }
.btn-primary:hover { background-color: var(--branco); color: var(--azul-marinho); border-color: var(--branco); }
.btn-secondary { background-color: transparent; color: var(--branco); border-color: var(--branco); }
.btn-secondary:hover { background-color: var(--branco); color: var(--azul-marinho); }
.scroll-down-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; }
.mouse { width: 25px; height: 40px; border: 2px solid var(--branco); border-radius: 60px; position: relative; }
.mouse::before { content: ''; width: 4px; height: 4px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); background-color: var(--branco); border-radius: 50%; opacity: 1; animation: wheel 1.5s infinite; }
@keyframes wheel { to { top: 20px; opacity: 0; } }

/* --- Outras seções permanecem as mesmas --- */
.diferenciais-section { padding: 120px 0; background-color: var(--off-white); }
.diferenciais-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.diferencial-item { border-left: 3px solid transparent; padding: 24px; cursor: pointer; transition: all 0.4s ease; }
.diferencial-item.active { border-left-color: var(--dourado-forte); background-color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateX(10px); }
.diferencial-header { display: flex; align-items: center; gap: 20px; }
.diferencial-icon-wrapper { width: 50px; height: 50px; flex-shrink: 0; color: var(--grafite); background-color: var(--borda-suave); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; }
.diferencial-item.active .diferencial-icon-wrapper { color: var(--dourado-forte); background-color: var(--azul-marinho); transform: scale(1.1); }
.diferencial-item h3 { font-size: 1.8rem; }
.diferencial-body { max-height: 0; overflow: hidden; transition: all 0.5s ease-out; opacity: 0; color: var(--grafite); }
.diferencial-item.active .diferencial-body { max-height: 200px; margin-top: 16px; opacity: 1; }
.diferencial-body p { margin: 0; }
.diferenciais-image-viewer { height: 550px; }
.image-viewer-frame { width: 100%; height: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px -10px rgba(54, 69, 79, 0.3); }
.image-viewer-frame img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s ease-in-out; }

.servicos-section { padding: 120px 0; background-color: var(--fundo-secao-clara); position: relative; }
.servicos-bg-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(212, 175, 122, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 122, 0.1) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.5; }
.servicos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; position: relative; z-index: 2; }
.servico-card { background-color: var(--branco); padding: 40px; border-radius: 12px; text-align: center; border: 1px solid var(--borda-suave); position: relative; overflow: hidden; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.servico-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(54, 69, 79, 0.1); }
.servico-icon { color: var(--dourado-forte); margin-bottom: 24px; position: relative; }
.servico-icon i.feather { width: 48px; height: 48px; stroke-width: 1.5; }
.servico-title { font-size: 1.5rem; margin-bottom: 12px; position: relative; }
.servico-description { color: var(--grafite); font-size: 1rem; position: relative; }

.imoveis-showcase-section { padding: 120px 0; background-color: var(--azul-fundo-dark); }
.imoveis-showcase-section .section-header .pill { background: rgba(212, 175, 122, 0.1); border-color: rgba(212, 175, 122, 0.5); color: var(--dourado-forte); }
.imoveis-nav { display: flex; justify-content: center; gap: 20px; margin-bottom: 60px; flex-wrap: wrap; }
.imovel-nav-item { background-color: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 12px 24px; font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.7); cursor: pointer; border-radius: 50px; transition: all 0.3s ease; }
.imovel-nav-item:hover { background-color: rgba(212, 175, 122, 0.2); color: var(--branco); }
.imovel-nav-item.active { background-color: var(--dourado-forte); color: var(--azul-marinho); border-color: var(--dourado-forte); }
.imovel-stage { position: relative; min-height: 550px; border-radius: 20px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.imovel-content-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: flex-end; padding: 60px; opacity: 0; visibility: hidden; transition: opacity 0.8s ease, visibility 0.8s; }
.imovel-content-wrapper.active { opacity: 1; visibility: visible; }
.imovel-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.imovel-bg-image::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(14, 26, 43, 0.7) 0%, transparent 50%); }
.imovel-bg-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.imovel-content-wrapper:hover .imovel-bg-image img { transform: scale(1.03); }
.imovel-glass-card { position: relative; z-index: 2; width: 100%; max-width: 450px; background: rgba(14, 26, 43, 0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); padding: 30px; color: var(--branco); animation: slideUpFadeIn 0.8s 0.2s ease-out backwards; }
@keyframes slideUpFadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.imovel-status-pill { display: inline-block; background-color: var(--dourado-forte); color: var(--azul-marinho); padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 700; font-family: var(--font-sans); margin-bottom: 24px; }
.imovel-location { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.imovel-features-list { display: flex; gap: 24px; border-top: 1px solid rgba(212, 175, 122, 0.2); padding-top: 24px; margin: 30px 0; }
.feature-item { font-weight: 600; display: flex; align-items: center; gap: 8px; }
.feature-item i { color: var(--dourado-forte); }
.btn-showcase { background-color: var(--dourado-forte); color: var(--azul-marinho); border-color: var(--dourado-forte); }
.btn-showcase:hover { background-color: var(--branco); color: var(--azul-marinho); border-color: var(--branco); transform: translateY(-3px); }

.cta-section { padding: 120px 0; background-color: var(--fundo-secao-clara); text-align: center; }
.btn-cta { background-color: var(--azul-marinho); color: var(--branco); border-color: var(--azul-marinho); font-size: 1.1rem; padding: 18px 40px; }
.btn-cta:hover { background-color: var(--grafite); border-color: var(--grafite); transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }

/*
================================================================================
5. FOOTER
================================================================================
*/
.section-divider-wrapper { background-color: var(--fundo-secao-clara); line-height: 0; }
.section-divider { display: block; width: 100%; height: auto; }

.footer-section { padding: 0; background-color: var(--azul-fundo-dark); color: rgba(255,255,255,0.7); }
.footer-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 60px 0; border-bottom: 1px solid rgba(212, 175, 122, 0.2); }
.footer-cta-title { font-size: 2rem; color: var(--dourado-forte); margin-bottom: 8px; }
.footer-cta-text { font-size: 1rem; color: rgba(255,255,255,0.8); margin: 0; }
.footer-cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer-contact-link { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-sans); font-weight: 500; font-size: 1.1rem; color: var(--branco); transition: color 0.3s ease; }
.footer-contact-link:hover { color: var(--dourado-forte); }
.footer-contact-link i { color: var(--dourado-forte); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding: 60px 0; }
.footer-identity .footer-logo { max-width: 140px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: var(--branco); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; transition: all 0.3s ease; }
.footer-socials a:hover { border-color: var(--dourado-forte); color: var(--dourado-forte); transform: translateY(-3px) scale(1.1); box-shadow: 0 5px 15px rgba(212, 175, 122, 0.2); }
.footer-col-title { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 600; color: var(--dourado-forte); margin-bottom: 24px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-links a:hover { color: var(--branco); padding-left: 5px; }
.footer-bottom { padding: 30px 0; border-top: 1px solid rgba(212, 175, 122, 0.2); text-align: center; }
.footer-bottom p { margin: 5px 0; font-size: 14px; color: rgba(255, 255, 255, 0.5); }

/*
================================================================================
6. RESPONSIVIDADE
================================================================================
*/
@media (max-width: 900px) {
    .diferenciais-wrapper { grid-template-columns: 1fr; }
    .diferenciais-image-viewer { height: 400px; margin-top: 60px; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-identity { grid-column: 1 / -1; margin-bottom: 30px; text-align: center; align-items: center; display: flex; flex-direction: column; }
}
@media (max-width: 768px) {
    :root { 
        --header-height-initial: 90px; 
        --header-height-sticky: 70px;
    }
    .header-logo { height: 50px; }
    .main-header.sticky .header-logo { height: 40px; }

    .main-nav { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: var(--azul-fundo-dark); flex-direction: column; padding: 20px; justify-content: center; align-items: center; z-index: 1000; transition: opacity 0.4s ease, visibility 0.4s ease; opacity: 0; visibility: hidden; }
    .main-nav.active { opacity: 1; visibility: visible; }
    .main-nav a { color: var(--branco); margin: 0 0 25px 0; text-align: center; font-size: 1.8rem; text-shadow: none; }
    .nav-toggle { display: block; z-index: 1001; }
    .hero-section { padding-top: var(--header-height-initial); }
    .hero-content { text-align: center; }
    .hero-cta-group { justify-content: center; }
    .imovel-content-wrapper { padding: 30px; align-items: center; text-align: center; }
    .imovel-glass-card { padding: 20px; }
    .imovel-features-list { flex-direction: column; align-items: center; }
    .footer-cta { grid-template-columns: 1fr; text-align: center; }
    .footer-cta-actions { align-items: center; }
    .footer-main { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-identity { margin-bottom: 0; }
}