/* ====================== RESET ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #857d60;
    /* off-white do site */
    /* off-white premium */
    color: #1F1F1F;
}


/* ====================== HEADER ====================== */
/* ====================== HEADER FIXO E CONSISTENTE ====================== */
/* ====================== HEADER ====================== */
.header {
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}





.logo img {
    height: 140px;
    width: auto;
}

.menu {
    display: flex;
    gap: 25px;
}

/* ====================== MENU SUPERIOR ====================== */
.menu a {
    text-decoration: none;
    color: #1f1f1f;
    /* cor premium */
    font-size: 16px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    /* fonte premium */
}

/* efeito elegante de sublinhado ao passar o mouse */
.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #c9b29b;
    /* cor de destaque */
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
    /* linha aparece ao passar o mouse */
}

/* muda a cor do texto ao passar o mouse */
.menu a:hover,
.menu a.ativo {
    color: #8b5e3c;
}


.social-header {
    display: flex;
    gap: 15px;
}

.social-header img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}






/* ====================== REDUZ ESPAÇOS ENTRE SEÇÕES ====================== */
main {
    padding-top: 50px;
    /* diminui o espaço do header */
    margin-bottom: 15px;
    /* espaço final antes do rodapé */
}

.cta-home {
    background-color: #5a3e2b;
    /* marrom premium do Fale Conosco */
    border-radius: 16px;
    padding: 60px 40px;
}


.cta-home * {
    background: transparent !important;
}


.cta-home-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 80px;
    background: transparent;
    /* IMPORTANTÍSSIMO */
}

/* Mantém o espaçamento normal entre seções */
section {
    margin-bottom: 20px;
    /* reduz de 100px para 60px */
}

/* Reduz ainda mais a margem da última seção de cada página */
main section:last-of-type {
    margin-bottom: 15px;
    /* ou outro valor que preferir */
}


h1,
h2,
h3,
h4 {
    font-weight: 400;
    letter-spacing: 1px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}


/* ====================== HOME ====================== */
.cta-home {
    width: 100%;
    background-color: #C9B29B;
    /* marrom premium da placa */
    border-radius: 16px;
    padding: 60px 40px;
}

.cta-home>* {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


.cta-home h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-home p {
    font-size: 18px;
}

.manifesto {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    color: #1c1c1c;
    margin-bottom: 15px;
}

/* Processo como selo de método premium */
.processo {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 35px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6f6a64;
}

/* Pontos dourados entre etapas */
.processo span {
    position: relative;
    padding: 0 12px;
}

.processo span:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: #c9b28a;
    font-size: 14px;
}


/* ====================== HOME SOBRE (VÍDEO) ====================== */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 54%;
    /* quase 16:9, um pouco mais alto */
    border-radius: 12px;
    overflow: hidden;
}


.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: #d8c3ad z-index: 2;
    transition: opacity 0.4s ease;
}

.video-overlay.hidden {
    display: none;
}

.video-logo {
    width: 180px;
}

.btn-play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: #5a3e2b;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-play:hover {
    transform: scale(1.08);
}

/* ====================== SOBRE ====================== */
/* ====================== SOBRE MIM - ESTILO PREMIUM ====================== */
.sobre-split {
    display: flex;
    justify-content: center;
    /* centraliza horizontalmente */
    align-items: center;
    /* centraliza verticalmente foto + texto */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
    flex-wrap: nowrap;
    /* força ficar em uma linha */
}

.sobre-foto {
    flex: 0 0 45%;
    /* foto ocupa 45% do container */
    min-width: 250px;
}

.sobre-foto img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.sobre-texto {
    flex: 0 0 45%;
    /* texto ocupa 45% do container */
    min-width: 250px;
    text-align: left;
    /* centraliza o texto verticalmente */
}

.sobre-texto h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.sobre-texto p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .sobre-split {
        flex-direction: column;
        /* texto abaixo da foto em telas médias */
        text-align: center;
    }

    .sobre-foto,
    .sobre-texto {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* ====================== CTA MARROM ====================== */
/* Reduz o espaço acima da CTA marrom */
.cta-marrom {
    margin-top: 40px;
    /* antes estava 60px ou margin da seção anterior */
    padding: 40px 30px;
    /* mantém padding interno mas reduz visualmente o “bloco” */
}

/* Se necessário, reduz margem das seções anteriores */
section {
    margin-bottom: 15px;
    /* antes 100px em algumas */
}

/* Ajuste específico para páginas que tiverem a CTA mais perto da seção anterior */
.manifesto,
.processo,
#formulario {
    margin-bottom: 20px;
    /* diminui gap antes da CTA */
}


.cta-marrom h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-marrom p {
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-marrom-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    background: #5a3e2b;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-marrom-btn:hover {
    background: #4b3124;
}

/* ====================== FORMULÁRIO ====================== */
/* ====================== SEÇÃO PREMIUM ATENDIMENTO ====================== */
#formulario {
    background-color: #7b552400;
    /* ou a cor que você quiser */
    padding: 80px 0;
    /* remove padding lateral, mantém só top/bottom */
    text-align: center;
    width: 100%;
}

#formLead {
    width: 100%;
    /* agora ocupa todo o container */
    max-width: 600px;
    /* mantém um limite confortável */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.form-lead input,
.form-lead button {
    height: 48px;
    border-radius: 10px;
}

#formLead input:focus {
    outline: none;
    border-color: #5a3e2b;
    box-shadow: 0 0 8px rgba(91, 62, 43, 0.4);
}

.btn-cta {
    background-color: #5a3e2b;
    color: #fff;
    border: none;
    padding: 18px 32px;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.btn-cta:hover {
    background-color: #4b3124;
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    #formulario {
        padding: 60px 20px;
    }

    #formulario h2 {
        font-size: 28px;
    }

    #formulario p {
        font-size: 16px;
    }
}


/* ====================== FOOTER SUPERIOR ====================== */
.footer-top {
    background-color: #3b2a23;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    /* altura fixa */
    width: 100%;
}

.footer-top .footer-logo {
    width: 160px;
    height: auto;
}

/* ====================== FOOTER INFERIOR ====================== */
.footer-bottom {
    background-color: #d8c3ad;
    padding: 40px 20px;
    width: 100%;
}

.footer-bottom .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}

.footer-bottom .footer-left,
.footer-bottom .footer-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom .footer-left .footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 10px;
    /* separa a logo dos dados */
}

.footer-bottom .social-icons {
    display: flex;
    gap: 14px;
}

.footer-bottom .social-icons img {
    width: 26px;
    height: 26px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom .footer-left .footer-logo {
        margin: 0 auto 10px auto;
    }
}


/* ====================== HOME SOBRE - ESTILO PREMIUM ====================== */
.home-sobre-container {
    display: flex;
    justify-content: center;
    /* centraliza horizontalmente o grupo vídeo+texto */
    align-items: center;
    /* centraliza verticalmente vídeo e texto */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
    flex-wrap: nowrap;
    /* força a ficar em uma linha */
}

.home-video {
    flex: 0 0 55%;
    /* vídeo ocupa 55% do container, deixa espaço pro texto */
    max-width: 500px;
    /* limita a largura do vídeo */
    min-width: 300px;
    /* mínimo para manter visível */
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 150%;
    /* vídeo vertical, altura maior que largura */
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.home-texto {
    flex: 0 0 35%;
    /* texto ocupa 35% do container */
    min-width: 250px;
    /* não fica muito pequeno */
    text-align: left;
    /* centraliza o texto verticalmente */
}

.home-texto h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.home-texto p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .home-sobre-container {
        flex-direction: column;
        /* texto abaixo do vídeo em telas médias */
        text-align: center;
    }

    .home-video,
    .home-texto {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .video-wrapper {
        padding-top: 150%;
        /* mantém proporção vertical */
    }
}

/* ====================== FONTES PREMIUM ====================== */
body {
    font-family: 'Inter', sans-serif;
    color: #1f1f1f;
}

.home-texto h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.home-texto p {
    font-family: 'Inter', sans-serif;
}


.home-texto .btn-cta {
    font-family: 'Playfair Display', serif;
    /* botão elegante */
    padding: 16px 28px;
    font-size: 18px;
    background: #5a3e2b;
    color: #fff;
    border-radius: 6px;
    transition: 0.3s;
}

.home-texto .btn-cta:hover {
    background: #4b3124;
}

/* ====================== SOBRE MIM ====================== */
.sobre-texto h1 {
    font-family: 'Playfair Display', serif;
    /* título premium */
    font-size: 36px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 20px;
}

.sobre-texto p {
    font-family: 'Inter', sans-serif;
    /* corpo do texto */
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 12px;
}

/* ====================== RESPONSIVO ====================== */
@media (max-width: 768px) {

    .home-texto h2,
    .sobre-texto h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .home-texto p,
    .sobre-texto p {
        font-size: 16px;
    }
}

/* ====================== AJUSTE ESPAÇO CTA MARROM ====================== */

/* Zera o espaço entre a seção anterior e a CTA marrom */
.cta-marrom {
    margin-top: 0;
    /* remove espaço extra */
    padding: 60px 40px;
    /* mantém padding interno */
}

/* Reduz margem da seção anterior */
.manifesto,
.processo,
#formulario {
    margin-bottom: 20px;
    /* diminui o gap antes da CTA */
}

.home-texto {
    flex: 1 1 400px;
    min-width: 300px;
    padding: 40px;
    background: #c9b29b;
    /* fundo elegante */
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* centraliza verticalmente */
}

.home-texto h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.home-texto p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.home-texto .btn-cta {
    padding: 16px 28px;
    font-size: 18px;
    align-self: flex-start;
    /* botão na esquerda do quadrado */
}

.reveal h1,
.reveal h2,
.reveal p {
    font-family: 'Inter', sans-serif;
    /* ou outra fonte premium */
    color: #1c1c1c;
    line-height: 1.6;
}

.sobre-foto img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.sobre-foto img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.home-texto {
    background: rgba(255, 255, 255, 0.05);
    /* leve transparência premium */
    padding: 20px;
    border-radius: 12px;
}

.sobre-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto;
    flex-wrap: wrap;
}

.sobre-foto,
.sobre-texto {
    flex: 1 1 400px;
    min-width: 300px;
}

.sobre-foto img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.sobre-foto img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.sobre-texto h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.sobre-texto p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.home-texto {
    flex: 1 1 400px;
    min-width: 300px;
    background-color: #c9b29b;
    /* mesma cor do "Bem-vindo à Balduíno" */
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover premium */
.home-texto:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Texto dentro */
.home-texto h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1c1c1c;
    /* texto escuro sobre o fundo */
}

.home-texto p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.home-texto .btn-cta {
    padding: 16px 28px;
    font-size: 18px;
}

.menu a {
    font-size: 20px;
    /* maior, mais destacado */
    font-weight: 300;
    /* mais premium */
    padding: 5px 8px;
    /* mantém proporção com o tamanho */
    transition: all 0.3s ease;
    /* mantém efeitos suaves */
}

.menu a:hover,
.menu a.ativo {
    background: rgba(201, 178, 155, 0.25);
    /* efeito de destaque ao passar o mouse */
    transform: translateY(-2px);
    /* efeito leve de elevação */
}

/* ====================== CAIXA BEM-VINDO ====================== */
.cta-home h1 {
    font-size: 28px;
    /* antes era 36px, reduzimos */
}

.cta-home p {
    font-size: 16px;
    /* antes era 18px, reduzimos */
}

/* ====================== TEXTO AO LADO DO VÍDEO ====================== */
.home-texto h2 {
    font-size: 26px;
    /* antes era 32px */
}

.home-texto p {
    font-size: 15px;
    /* antes era 18px */
}

.home-texto .btn-cta {
    font-size: 16px;
    /* botão menor, mais proporcional */
    padding: 14px 24px;
}


/* Logo */
.logo {
    flex: 0 0 auto;
    /* ocupa espaço necessário, sem crescer */
}

/* Menu centralizado */
.menu {
    display: flex;
    gap: 25px;
    flex: 1 1 auto;
    /* ocupa o espaço restante */
    justify-content: center;
    /* centraliza os links */
}

/* Ícones sociais à direita */
.social-header {
    flex: 0 0 auto;
    /* ocupa só o que precisa */
    display: flex;
    gap: 15px;
}

.sobre-texto {
    flex: 1 1 350px;
    /* largura mínima de 350px, flexível */
    max-width: 500px;
    /* limita o bloco de texto */
    margin: 0 auto;
    /* centraliza verticalmente em relação à foto */
}

.sobre-texto h1 {
    font-size: 28px;
    /* título menor, mais elegante */
    margin-bottom: 15px;
}

.sobre-texto p {
    font-size: 15px;
    /* reduz texto */
    line-height: 1.5;
    margin-bottom: 12px;
}

/* ====================== CTA IMÓVEIS - ESTILO PREMIUM ====================== */
.cta-marrom-container {
    background-color: #c9b29b;
    /* fundo premium */
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 900px;
    margin: 60px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-marrom-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-marrom-container h2 {
    font-size: 24px;
    font-weight: 500;
    color: #3b2a23;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.cta-marrom-container p {
    font-size: 14px;
    color: #1f1f1f;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-marrom-btn {
    display: inline-block;
    background-color: #5a3e2b;
    color: #fff;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.cta-marrom-btn:hover {
    background-color: #4b3124;
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .cta-marrom-container {
        padding: 40px 20px;
    }

    .cta-marrom-container h2 {
        font-size: 28px;
    }

    .cta-marrom-container p {
        font-size: 16px;
    }

    .cta-marrom-btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}

/* ====================== SOBRE MIM - BOX PREMIUM ====================== */

/* ====================== BASE ====================== */
body {
    font-family: 'Inter', sans-serif;
    background-color: #e2cfbc;
    /* off-white premium */
    color: #1f1f1f;
}

/* ====================== CTA HOME ====================== */
.cta-home {
    width: 100%;
    background-color: #81604b;
    /* marrom premium */
    border-radius: 16px;
    padding: 60px 40px;
}

.cta-home>* {
    max-width: 1200px;
    margin: 0 auto;
}

/* ====================== SOBRE MIM ====================== */
.sobre-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.sobre-foto img {
    width: 100%;
    max-width: 450px;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* BOX PREMIUM */
.sobre-texto {
    background: #5a3e2b;
    /* marrom do botão */
    padding: 40px 45px;
    border-radius: 16px;
    max-width: 520px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.sobre-texto:hover {
    transform: translateY(-4px);
}

/* TÍTULO */
.sobre-texto h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 500;
    color: #f6e9dd;
    margin-bottom: 22px;
}

/* TEXTO */
.sobre-texto p {
    font-size: 16px;
    line-height: 1.7;
    color: #f3ede7;
    margin-bottom: 14px;
}

/* NEGRITO PREMIUM */
.sobre-texto p strong {
    color: #ffffff;
    font-weight: 600;
}

/* STATEMENT PREMIUM */
.sobre-texto .statement {
    margin-top: 26px;
    padding-left: 18px;
    border-left: 2px solid #d2b48c;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #f6e9dd;
}

/* Linha dourada premium no topo da placa Bem-vindo */
.cta-home {
    position: relative;
}

.cta-home::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            #d6b27c,
            #f1d9a7,
            #d6b27c,
            transparent);
    opacity: 0.85;
    border-radius: 2px;
}

/* FORÇA ESTILO PREMIUM DO PROCESSO */
.processo span {
    color: #4a3a2a !important;
    /* marrom escuro sofisticado */
    font-weight: 500;
    letter-spacing: 2px;
}

/* Pontos dourados entre as etapas */
.processo span:not(:last-child)::after {
    content: "•";
    color: #c9b28a !important;
    margin-left: 18px;
    font-size: 14px;
}

/* ================== Catálogo de Imóveis ================== */
.secao-imoveis #lista-imoveis {
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.card-imovel {
    background: #f6f1ec;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.imagens-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 5px;
    padding: 10px;
}

.imagens-container img.img-miniatura {
    width: 100%;
    aspect-ratio: 1/1;
    /* garante quadrado */
    object-fit: cover;
    /* preenche sem esticar */
    border-radius: 8px;
}

.info-imovel {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.valor {
    font-weight: 600;
    color: #5a3e2b;
}

.detalhes {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.btn-imovel {
    margin-top: 10px;
    padding: 10px;
    background: #6b4a2b;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
}

/* ====================== CATÁLOGO DE IMÓVEIS ====================== */
.secao-imoveis #lista-imoveis {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.secao-imoveis .card-imovel {
    background: #f6f1ec;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.secao-imoveis .imagens-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 5px;
    padding: 10px;
}

.secao-imoveis .img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* quadrado */
    overflow: hidden;
    border-radius: 8px;
}

.secao-imoveis .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cobre o quadrado sem distorcer */
}

.secao-imoveis .info-imovel {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.secao-imoveis .valor {
    font-weight: 600;
    color: #5a3e2b;
}

.secao-imoveis .detalhes {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.secao-imoveis .btn-imovel {
    margin-top: 10px;
    padding: 10px;
    background: #6b4a2b;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.secao-imoveis .btn-imovel:hover {
    background: #4b3124;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .secao-imoveis #lista-imoveis {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .secao-imoveis .imagens-container {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    }
}

/* ====================== IMÓVEIS / CATÁLOGO ====================== */
.secao-imoveis #lista-imoveis {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.secao-imoveis .card-imovel {
    background: #f6f1ec;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.secao-imoveis .imagens-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 5px;
    padding: 10px;
}

.secao-imoveis .imagens-container .img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    /* quadrado garantido */
    overflow: hidden;
    border-radius: 8px;
}


/* Slider do catálogo */
.secao-imoveis .slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    /* quadrado */
    overflow: hidden;
    border-radius: 12px;
}

.secao-imoveis .slider-wrapper img.img-principal {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.secao-imoveis .slider-wrapper .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.secao-imoveis .slider-wrapper .prev {
    left: 10px;
}

.secao-imoveis .slider-wrapper .next {
    right: 10px;
}

.secao-imoveis .slider-wrapper .contador {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
}

.secao-imoveis #lista-imoveis {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 0 20px;
}

.card-imovel {
    background: #f6f1ec;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Slider */
.slider-wrapper {
    position: relative;
    /* ESSENCIAL para que absolute funcione dentro do card */
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-wrapper .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.slider-wrapper .prev {
    left: 10px;
}

.slider-wrapper .next {
    right: 10px;
}

.slider-wrapper .contador {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
}

/* ===== ISOLAMENTO TOTAL DO SLIDER ===== */
.secao-imoveis .slider-wrapper {
    position: relative !important;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.secao-imoveis .slider-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

/* FORÇA ABSOLUTO DENTRO DO CARD */
.secao-imoveis .slider-wrapper .nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 999 !important;
}

/* POSIÇÃO DAS SETAS */
.secao-imoveis .slider-wrapper .prev {
    left: 10px !important;
}

.secao-imoveis .slider-wrapper .next {
    right: 10px !important;
}

/* CONTADOR */
.secao-imoveis .slider-wrapper .contador {
    position: absolute !important;
    bottom: 10px !important;
    right: 10px !important;
    z-index: 999 !important;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
}

/* ===== SLIDER IMÓVEIS (ISOLADO) ===== */
.secao-imoveis .slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.secao-imoveis .slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BOTÕES */
.secao-imoveis .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

.secao-imoveis .slider-prev {
    left: 10px;
}

.secao-imoveis .slider-next {
    right: 10px;
}

/* CONTADOR */
.secao-imoveis .slider-contador {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    z-index: 10;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-contador {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
}

.secao-imoveis .slider-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.secao-imoveis .slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.secao-imoveis .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 6px 10px;
    cursor: pointer;
    z-index: 2;
}

.secao-imoveis .slider-btn.prev {
    left: 10px;
}

.secao-imoveis .slider-btn.next {
    right: 10px;
}

.secao-imoveis .slider-contador {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

.secao-imoveis .slider-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.secao-imoveis .slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== SLIDER IMÓVEIS ===== */

.secao-imoveis .slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.secao-imoveis .slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Setas */
.secao-imoveis .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
}

.secao-imoveis .slider-arrow.prev {
    left: 10px;
}

.secao-imoveis .slider-arrow.next {
    right: 10px;
}

/* Contador */
.secao-imoveis .slider-contador {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
}

/* ===== SLIDER FUNCIONAL ===== */

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* SETAS */
/* ====================== RESET ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #857d60;
    /* off-white do site */
    /* off-white premium */
    color: #1F1F1F;
}


/* ====================== HEADER ====================== */
/* ====================== HEADER FIXO E CONSISTENTE ====================== */
/* ====================== HEADER ====================== */
.header {
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}





.logo img {
    height: 140px;
    width: auto;
}

.menu {
    display: flex;
    gap: 25px;
}

/* ====================== MENU SUPERIOR ====================== */
.menu a {
    text-decoration: none;
    color: #1f1f1f;
    /* cor premium */
    font-size: 16px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    /* fonte premium */
}

/* efeito elegante de sublinhado ao passar o mouse */
.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #c9b29b;
    /* cor de destaque */
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
    /* linha aparece ao passar o mouse */
}

/* muda a cor do texto ao passar o mouse */
.menu a:hover,
.menu a.ativo {
    color: #8b5e3c;
}


.social-header {
    display: flex;
    gap: 15px;
}

.social-header img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}






/* ====================== REDUZ ESPAÇOS ENTRE SEÇÕES ====================== */
main {
    padding-top: 50px;
    /* diminui o espaço do header */
    margin-bottom: 15px;
    /* espaço final antes do rodapé */
}

.cta-home {
    background-color: #5a3e2b;
    /* marrom premium do Fale Conosco */
    border-radius: 16px;
    padding: 60px 40px;
}


.cta-home * {
    background: transparent !important;
}


.cta-home-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 80px;
    background: transparent;
    /* IMPORTANTÍSSIMO */
}

/* Mantém o espaçamento normal entre seções */
section {
    margin-bottom: 20px;
    /* reduz de 100px para 60px */
}

/* Reduz ainda mais a margem da última seção de cada página */
main section:last-of-type {
    margin-bottom: 15px;
    /* ou outro valor que preferir */
}


h1,
h2,
h3,
h4 {
    font-weight: 400;
    letter-spacing: 1px;
}

/* Apenas os parágrafos dentro do container de informações do imóvel */
#container-infos p {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    /* branco só para os valores e descrições do imóvel */
}

/* Caso queira manter o estilo do footer */
.footer-bottom p {
    color: #333;
    /* ou outra cor desejada para o footer */
}


/* ====================== HOME ====================== */
.cta-home {
    width: 100%;
    background-color: #C9B29B;
    /* marrom premium da placa */
    border-radius: 16px;
    padding: 60px 40px;
}

.cta-home>* {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


.cta-home h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-home p {
    font-size: 18px;
}

.manifesto {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    color: #1c1c1c;
    margin-bottom: 15px;
}

/* Processo como selo de método premium */
.processo {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 35px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6f6a64;
}

/* Pontos dourados entre etapas */
.processo span {
    position: relative;
    padding: 0 12px;
}

.processo span:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: #c9b28a;
    font-size: 14px;
}


/* ====================== HOME SOBRE (VÍDEO) ====================== */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 54%;
    /* quase 16:9, um pouco mais alto */
    border-radius: 12px;
    overflow: hidden;
}


.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: #d8c3ad z-index: 2;
    transition: opacity 0.4s ease;
}

.video-overlay.hidden {
    display: none;
}

.video-logo {
    width: 180px;
}

.btn-play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: #5a3e2b;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-play:hover {
    transform: scale(1.08);
}

/* ====================== SOBRE ====================== */
/* ====================== SOBRE MIM - ESTILO PREMIUM ====================== */
.sobre-split {
    display: flex;
    justify-content: center;
    /* centraliza horizontalmente */
    align-items: center;
    /* centraliza verticalmente foto + texto */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
    flex-wrap: nowrap;
    /* força ficar em uma linha */
}

.sobre-foto {
    flex: 0 0 45%;
    /* foto ocupa 45% do container */
    min-width: 250px;
}

.sobre-foto img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.sobre-texto {
    flex: 0 0 45%;
    /* texto ocupa 45% do container */
    min-width: 250px;
    text-align: left;
    /* centraliza o texto verticalmente */
}

.sobre-texto h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.sobre-texto p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .sobre-split {
        flex-direction: column;
        /* texto abaixo da foto em telas médias */
        text-align: center;
    }

    .sobre-foto,
    .sobre-texto {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* ====================== CTA MARROM ====================== */
/* Reduz o espaço acima da CTA marrom */
.cta-marrom {
    margin-top: 40px;
    /* antes estava 60px ou margin da seção anterior */
    padding: 40px 30px;
    /* mantém padding interno mas reduz visualmente o “bloco” */
}

/* Se necessário, reduz margem das seções anteriores */
section {
    margin-bottom: 15px;
    /* antes 100px em algumas */
}

/* Ajuste específico para páginas que tiverem a CTA mais perto da seção anterior */
.manifesto,
.processo,
#formulario {
    margin-bottom: 20px;
    /* diminui gap antes da CTA */
}


.cta-marrom h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-marrom p {
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-marrom-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    background: #5a3e2b;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-marrom-btn:hover {
    background: #4b3124;
}

/* ====================== FORMULÁRIO ====================== */
/* ====================== SEÇÃO PREMIUM ATENDIMENTO ====================== */
#formulario {
    background-color: #7b552400;
    /* ou a cor que você quiser */
    padding: 80px 0;
    /* remove padding lateral, mantém só top/bottom */
    text-align: center;
    width: 100%;
}



#formLead {
    width: 100%;
    /* agora ocupa todo o container */
    max-width: 600px;
    /* mantém um limite confortável */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


#formLead input {
    width: 100%;
    padding: 16px 18px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: 0.3s;
}

#formLead input:focus {
    outline: none;
    border-color: #5a3e2b;
    box-shadow: 0 0 8px rgba(91, 62, 43, 0.4);
}

.btn-cta {
    background-color: #5a3e2b;
    color: #fff;
    border: none;
    padding: 18px 32px;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.btn-cta:hover {
    background-color: #4b3124;
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    #formulario {
        padding: 60px 20px;
    }

    #formulario h2 {
        font-size: 28px;
    }

    #formulario p {
        font-size: 16px;
    }
}


/* ====================== FOOTER SUPERIOR ====================== */
.footer-top {
    background-color: #3b2a23;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    /* altura fixa */
    width: 100%;
}

.footer-top .footer-logo {
    width: 160px;
    height: auto;
}

/* ====================== FOOTER INFERIOR ====================== */
.footer-bottom {
    background-color: #d8c3ad;
    padding: 40px 20px;
    width: 100%;
}

.footer-bottom .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}

.footer-bottom .footer-left,
.footer-bottom .footer-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom .footer-left .footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 10px;
    /* separa a logo dos dados */
}

.footer-bottom .social-icons {
    display: flex;
    gap: 14px;
}

.footer-bottom .social-icons img {
    width: 26px;
    height: 26px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom .footer-left .footer-logo {
        margin: 0 auto 10px auto;
    }
}


/* ====================== HOME SOBRE - ESTILO PREMIUM ====================== */
.home-sobre-container {
    display: flex;
    justify-content: center;
    /* centraliza horizontalmente o grupo vídeo+texto */
    align-items: center;
    /* centraliza verticalmente vídeo e texto */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
    flex-wrap: nowrap;
    /* força a ficar em uma linha */
}

.home-video {
    flex: 0 0 55%;
    /* vídeo ocupa 55% do container, deixa espaço pro texto */
    max-width: 500px;
    /* limita a largura do vídeo */
    min-width: 300px;
    /* mínimo para manter visível */
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 150%;
    /* vídeo vertical, altura maior que largura */
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.home-texto {
    flex: 0 0 35%;
    /* texto ocupa 35% do container */
    min-width: 250px;
    /* não fica muito pequeno */
    text-align: left;
    /* centraliza o texto verticalmente */
}

.home-texto h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.home-texto p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .home-sobre-container {
        flex-direction: column;
        /* texto abaixo do vídeo em telas médias */
        text-align: center;
    }

    .home-video,
    .home-texto {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .video-wrapper {
        padding-top: 150%;
        /* mantém proporção vertical */
    }
}

/* ====================== FONTES PREMIUM ====================== */
body {
    font-family: 'Inter', sans-serif;
    color: #1f1f1f;
}

.home-texto h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.home-texto p {
    font-family: 'Inter', sans-serif;
}


.home-texto .btn-cta {
    font-family: 'Playfair Display', serif;
    /* botão elegante */
    padding: 16px 28px;
    font-size: 18px;
    background: #5a3e2b;
    color: #fff;
    border-radius: 6px;
    transition: 0.3s;
}

.home-texto .btn-cta:hover {
    background: #4b3124;
}

/* ====================== SOBRE MIM ====================== */
.sobre-texto h1 {
    font-family: 'Playfair Display', serif;
    /* título premium */
    font-size: 36px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 20px;
}

.sobre-texto p {
    font-family: 'Inter', sans-serif;
    /* corpo do texto */
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 12px;
}

/* ====================== RESPONSIVO ====================== */
@media (max-width: 768px) {

    .home-texto h2,
    .sobre-texto h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .home-texto p,
    .sobre-texto p {
        font-size: 16px;
    }
}

/* ====================== AJUSTE ESPAÇO CTA MARROM ====================== */

/* Zera o espaço entre a seção anterior e a CTA marrom */
.cta-marrom {
    margin-top: 0;
    /* remove espaço extra */
    padding: 60px 40px;
    /* mantém padding interno */
}

/* Reduz margem da seção anterior */
.manifesto,
.processo,
#formulario {
    margin-bottom: 20px;
    /* diminui o gap antes da CTA */
}

.home-texto {
    flex: 1 1 400px;
    min-width: 300px;
    padding: 40px;
    background: #c9b29b;
    /* fundo elegante */
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* centraliza verticalmente */
}

.home-texto h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.home-texto p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.home-texto .btn-cta {
    padding: 16px 28px;
    font-size: 18px;
    align-self: flex-start;
    /* botão na esquerda do quadrado */
}

.reveal h1,
.reveal h2,
.reveal p {
    font-family: 'Inter', sans-serif;
    /* ou outra fonte premium */
    color: #1c1c1c;
    line-height: 1.6;
}

.sobre-foto img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.sobre-foto img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.home-texto {
    background: rgba(255, 255, 255, 0.05);
    /* leve transparência premium */
    padding: 20px;
    border-radius: 12px;
}

.sobre-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto;
    flex-wrap: wrap;
}

.sobre-foto,
.sobre-texto {
    flex: 1 1 400px;
    min-width: 300px;
}

.sobre-foto img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.sobre-foto img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.sobre-texto h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.sobre-texto p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.home-texto {
    flex: 1 1 400px;
    min-width: 300px;
    background-color: #c9b29b;
    /* mesma cor do "Bem-vindo à Balduíno" */
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover premium */
.home-texto:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Texto dentro */
.home-texto h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1c1c1c;
    /* texto escuro sobre o fundo */
}

.home-texto p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.home-texto .btn-cta {
    padding: 16px 28px;
    font-size: 18px;
}

.menu a {
    font-size: 20px;
    /* maior, mais destacado */
    font-weight: 300;
    /* mais premium */
    padding: 5px 8px;
    /* mantém proporção com o tamanho */
    transition: all 0.3s ease;
    /* mantém efeitos suaves */
}

.menu a:hover,
.menu a.ativo {
    background: rgba(201, 178, 155, 0.25);
    /* efeito de destaque ao passar o mouse */
    transform: translateY(-2px);
    /* efeito leve de elevação */
}

/* ====================== CAIXA BEM-VINDO ====================== */
.cta-home h1 {
    font-size: 28px;
    /* antes era 36px, reduzimos */
}

.cta-home p {
    font-size: 16px;
    /* antes era 18px, reduzimos */
}

/* ====================== TEXTO AO LADO DO VÍDEO ====================== */
.home-texto h2 {
    font-size: 26px;
    /* antes era 32px */
}

.home-texto p {
    font-size: 15px;
    /* antes era 18px */
}

.home-texto .btn-cta {
    font-size: 16px;
    /* botão menor, mais proporcional */
    padding: 14px 24px;
}


/* Logo */
.logo {
    flex: 0 0 auto;
    /* ocupa espaço necessário, sem crescer */
}

/* Menu centralizado */
.menu {
    display: flex;
    gap: 25px;
    flex: 1 1 auto;
    /* ocupa o espaço restante */
    justify-content: center;
    /* centraliza os links */
}

/* Ícones sociais à direita */
.social-header {
    flex: 0 0 auto;
    /* ocupa só o que precisa */
    display: flex;
    gap: 15px;
}

.sobre-texto {
    flex: 1 1 350px;
    /* largura mínima de 350px, flexível */
    max-width: 500px;
    /* limita o bloco de texto */
    margin: 0 auto;
    /* centraliza verticalmente em relação à foto */
}

.sobre-texto h1 {
    font-size: 28px;
    /* título menor, mais elegante */
    margin-bottom: 15px;
}

.sobre-texto p {
    font-size: 15px;
    /* reduz texto */
    line-height: 1.5;
    margin-bottom: 12px;
}

/* ====================== CTA IMÓVEIS - ESTILO PREMIUM ====================== */
.cta-marrom-container {
    background-color: #c9b29b;
    /* fundo premium */
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 900px;
    margin: 60px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-marrom-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-marrom-container h2 {
    font-size: 24px;
    font-weight: 500;
    color: #3b2a23;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.cta-marrom-container p {
    font-size: 14px;
    color: #1f1f1f;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-marrom-btn {
    display: inline-block;
    background-color: #5a3e2b;
    color: #fff;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.cta-marrom-btn:hover {
    background-color: #4b3124;
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .cta-marrom-container {
        padding: 40px 20px;
    }

    .cta-marrom-container h2 {
        font-size: 28px;
    }

    .cta-marrom-container p {
        font-size: 16px;
    }

    .cta-marrom-btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}

/* ====================== SOBRE MIM - BOX PREMIUM ====================== */

/* ====================== BASE ====================== */
body {
    font-family: 'Inter', sans-serif;
    background-color: #e2cfbc;
    /* off-white premium */
    color: #1f1f1f;
}

/* ====================== CTA HOME ====================== */
.cta-home {
    width: 100%;
    background-color: #81604b;
    /* marrom premium */
    border-radius: 16px;
    padding: 60px 40px;
}

.cta-home>* {
    max-width: 1200px;
    margin: 0 auto;
}

/* ====================== SOBRE MIM ====================== */
.sobre-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.sobre-foto img {
    width: 100%;
    max-width: 450px;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* BOX PREMIUM */
.sobre-texto {
    background: #5a3e2b;
    /* marrom do botão */
    padding: 40px 45px;
    border-radius: 16px;
    max-width: 520px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.sobre-texto:hover {
    transform: translateY(-4px);
}

/* TÍTULO */
.sobre-texto h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 500;
    color: #f6e9dd;
    margin-bottom: 22px;
}

/* TEXTO */
.sobre-texto p {
    font-size: 16px;
    line-height: 1.7;
    color: #f3ede7;
    margin-bottom: 14px;
}

/* NEGRITO PREMIUM */
.sobre-texto p strong {
    color: #ffffff;
    font-weight: 600;
}

/* STATEMENT PREMIUM */
.sobre-texto .statement {
    margin-top: 26px;
    padding-left: 18px;
    border-left: 2px solid #d2b48c;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #f6e9dd;
}

/* Linha dourada premium no topo da placa Bem-vindo */
.cta-home {
    position: relative;
}

.cta-home::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            #d6b27c,
            #f1d9a7,
            #d6b27c,
            transparent);
    opacity: 0.85;
    border-radius: 2px;
}

/* FORÇA ESTILO PREMIUM DO PROCESSO */
.processo span {
    color: #4a3a2a !important;
    /* marrom escuro sofisticado */
    font-weight: 500;
    letter-spacing: 2px;
}

/* Pontos dourados entre as etapas */
.processo span:not(:last-child)::after {
    content: "•";
    color: #c9b28a !important;
    margin-left: 18px;
    font-size: 14px;
}

/* ================== Catálogo de Imóveis ================== */
.secao-imoveis #lista-imoveis {
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.card-imovel {
    background: #f6f1ec;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.imagens-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 5px;
    padding: 10px;
}

.imagens-container img.img-miniatura {
    width: 100%;
    aspect-ratio: 1/1;
    /* garante quadrado */
    object-fit: cover;
    /* preenche sem esticar */
    border-radius: 8px;
}

.info-imovel {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.valor {
    font-weight: 600;
    color: #5a3e2b;
}

.detalhes {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.btn-imovel {
    margin-top: 10px;
    padding: 10px;
    background: #6b4a2b;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
}

/* ====================== CATÁLOGO DE IMÓVEIS ====================== */
.secao-imoveis #lista-imoveis {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.secao-imoveis .card-imovel {
    background: #f6f1ec;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.secao-imoveis .imagens-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 5px;
    padding: 10px;
}

.secao-imoveis .img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* quadrado */
    overflow: hidden;
    border-radius: 8px;
}

.secao-imoveis .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cobre o quadrado sem distorcer */
}

.secao-imoveis .info-imovel {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.secao-imoveis .valor {
    font-weight: 600;
    color: #5a3e2b;
}

.secao-imoveis .detalhes {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.secao-imoveis .btn-imovel {
    margin-top: 10px;
    padding: 10px;
    background: #6b4a2b;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.secao-imoveis .btn-imovel:hover {
    background: #4b3124;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .secao-imoveis #lista-imoveis {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .secao-imoveis .imagens-container {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    }
}

/* ====================== IMÓVEIS / CATÁLOGO ====================== */
.secao-imoveis #lista-imoveis {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.secao-imoveis .card-imovel {
    background: #f6f1ec;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.secao-imoveis .imagens-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 5px;
    padding: 10px;
}

.secao-imoveis .imagens-container .img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    /* quadrado garantido */
    overflow: hidden;
    border-radius: 8px;
}


/* Slider do catálogo */
.secao-imoveis .slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    /* quadrado */
    overflow: hidden;
    border-radius: 12px;
}

.secao-imoveis .slider-wrapper img.img-principal {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.secao-imoveis .slider-wrapper .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.secao-imoveis .slider-wrapper .prev {
    left: 10px;
}

.secao-imoveis .slider-wrapper .next {
    right: 10px;
}

.secao-imoveis .slider-wrapper .contador {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
}

.secao-imoveis #lista-imoveis {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 0 20px;
}

.card-imovel {
    background: #f6f1ec;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Slider */
.slider-wrapper {
    position: relative;
    /* ESSENCIAL para que absolute funcione dentro do card */
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-wrapper .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.slider-wrapper .prev {
    left: 10px;
}

.slider-wrapper .next {
    right: 10px;
}

.slider-wrapper .contador {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
}

/* ===== ISOLAMENTO TOTAL DO SLIDER ===== */
.secao-imoveis .slider-wrapper {
    position: relative !important;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.secao-imoveis .slider-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

/* FORÇA ABSOLUTO DENTRO DO CARD */
.secao-imoveis .slider-wrapper .nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 999 !important;
}

/* POSIÇÃO DAS SETAS */
.secao-imoveis .slider-wrapper .prev {
    left: 10px !important;
}

.secao-imoveis .slider-wrapper .next {
    right: 10px !important;
}

/* CONTADOR */
.secao-imoveis .slider-wrapper .contador {
    position: absolute !important;
    bottom: 10px !important;
    right: 10px !important;
    z-index: 999 !important;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
}

/* ===== SLIDER IMÓVEIS (ISOLADO) ===== */
.secao-imoveis .slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.secao-imoveis .slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BOTÕES */
.secao-imoveis .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

.secao-imoveis .slider-prev {
    left: 10px;
}

.secao-imoveis .slider-next {
    right: 10px;
}

/* CONTADOR */
.secao-imoveis .slider-contador {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    z-index: 10;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-contador {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
}

.secao-imoveis .slider-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.secao-imoveis .slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.secao-imoveis .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 6px 10px;
    cursor: pointer;
    z-index: 2;
}

.secao-imoveis .slider-btn.prev {
    left: 10px;
}

.secao-imoveis .slider-btn.next {
    right: 10px;
}

.secao-imoveis .slider-contador {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

.secao-imoveis .slider-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.secao-imoveis .slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== SLIDER IMÓVEIS ===== */

.secao-imoveis .slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.secao-imoveis .slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Setas */
.secao-imoveis .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
}

.secao-imoveis .slider-arrow.prev {
    left: 10px;
}

.secao-imoveis .slider-arrow.next {
    right: 10px;
}

/* Contador */
.secao-imoveis .slider-contador {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
}

/* ===== SLIDER FUNCIONAL ===== */

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* SETAS */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0
    }

    #formLead input,
    .form-lead input {
        /* seu estilo atual */
    }

    #formLead button,
    .form-lead button {
        /* seu estilo atual */
    }

    form.form-lead input {
        width: 100%;
        padding: 14px 16px;
        border-radius: 8px;
        border: 1px solid #ccc;
    }

    form.form-lead button {
        padding: 15px;
        background: #8b5a2b;
        color: #fff;
        border: none;
        border-radius: 8px;
    }

    .contato-premium .form-lead {
        background: #ffffff;
        padding: 32px;
        border-radius: 14px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        max-width: 420px;
        width: 100%;
    }

    .contato-premium .form-lead input {
        width: 100%;
        padding: 15px 16px;
        border-radius: 10px;
        border: 1px solid #d0d0d0;
        margin-bottom: 16px;
        font-size: 15px;
        font-family: 'Inter', sans-serif;
        background: #fafafa;
    }

    .contato-premium .form-lead input:focus {
        outline: none;
        border-color: #8b5a2b;
        background: #fff;
    }

    .contato-premium .form-lead button {
        width: 100%;
        padding: 16px;
        background: #8b5a2b;
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
    }

    .contato-premium .form-lead button:hover {
        background: #6f4521;
    }

    /* REMOVE QUALQUER BORDA VERMELHA EXISTENTE */
    form,
    .form-lead,
    .contato-premium,

}

/* ESTILO FINAL DO FORMULÁRIO */
.contato-premium .form-lead {
    background: #ffffff !important;
    padding: 32px !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15) !important;
    max-width: 420px;
    width: 100%;
}

/* INPUTS */
.contato-premium .form-lead input {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ccc !important;
    margin-bottom: 16px;
    font-size: 15px;
    background: #f9f9f9;
}

/* BOTÃO */
.contato-premium .form-lead button {
    width: 100%;
    padding: 16px;
    background: #8b5a2b;
    color: #fff;
    border: none !important;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.form-lead {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    max-width: 420px;
    width: 100%;
}

.form-lead input {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 16px;
    font-size: 15px;
}

.form-lead button {
    width: 100%;
    padding: 16px;
    background: #8b5a2b;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.slider-wrapper {
    position: relative;
    /* essencial para o absolute da marca d'água */
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.slider-wrapper img.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Marca d'água via ::after */
.slider-wrapper::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 150px;
    height: 150px;
    background-image: url('../img/marca-dagua.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 2;
    pointer-events: none;
    z-index: 10;
}

.codigo-imovel {
    font-size: 0.8rem;
    /* pequeno */
    color: #555;
    /* discreto */
    margin-top: 4px;
    /* separa do endereço */
    font-weight: 500;
}

.codigo-imovel {
    font-size: 0.75rem;
    color: #555;
    margin-top: 4px;
    font-weight: 500;
}

.detalhes-imovel {
    display: flex;
    flex-direction: row;
    /* garante lado a lado */
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

.detalhe {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    /* impede quebrar linha */
}

.detalhe .icone {
    font-size: 15px;
}

/* FORÇA os detalhes ficarem lado a lado */
.detalhes-imovel {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
}

/* FORÇA cada item a não quebrar */
.detalhes-imovel > * {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

/* Corrige ícones de dormitórios, banheiros etc */
.detalhes-imovel {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: nowrap !important;
}

.detalhes-imovel span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
}

/* ===== FORÇA ÍCONES DOS IMÓVEIS LADO A LADO ===== */

.card-imovel .detalhes-imovel {
    display: flex !important;
    gap: 16px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
}

.card-imovel .detalhe {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
}

.card-imovel .detalhe span {
    display: inline !important;
}

#formLead input,
.form-lead input {
    /* seu estilo atual */
}

#formLead button,
.form-lead button {
    /* seu estilo atual */
}

form.form-lead input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

form.form-lead button {
    padding: 15px;
    background: #8b5a2b;
    color: #fff;
    border: none;
    border-radius: 8px;
}

.contato-premium .form-lead {
    background: #ffffff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    max-width: 420px;
    width: 100%;
}

.contato-premium .form-lead input {
    width: 100%;
    padding: 15px 16px;
    border-radius: 10px;
    border: 1px solid #d0d0d0;
    margin-bottom: 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: #fafafa;
}

.contato-premium .form-lead input:focus {
    outline: none;
    border-color: #8b5a2b;
    background: #fff;
}

.contato-premium .form-lead button {
    width: 100%;
    padding: 16px;
    background: #8b5a2b;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.contato-premium .form-lead button:hover {
    background: #6f4521;
}

/* REMOVE QUALQUER BORDA VERMELHA EXISTENTE */
form,
.form-lead,
.contato-premium,


/* ESTILO FINAL DO FORMULÁRIO */
.contato-premium .form-lead {
    background: #ffffff !important;
    padding: 32px !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15) !important;
    max-width: 420px;
    width: 100%;
}

/* INPUTS */
.contato-premium .form-lead input {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ccc !important;
    margin-bottom: 16px;
    font-size: 15px;
    background: #f9f9f9;
}

/* BOTÃO */
.contato-premium .form-lead button {
    width: 100%;
    padding: 16px;
    background: #8b5a2b;
    color: #fff;
    border: none !important;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.form-lead {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    max-width: 420px;
    width: 100%;
}

.form-lead input {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 16px;
    font-size: 15px;
}

.form-lead button {
    width: 100%;
    padding: 16px;
    background: #8b5a2b;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.slider-wrapper {
    position: relative;
    /* essencial para o absolute da marca d'água */
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.slider-wrapper img.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Marca d'água via ::after */
.slider-wrapper::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 150px;
    height: 150px;
    background-image: url('../img/marca-dagua.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 2;
    pointer-events: none;
    z-index: 10;
}

.codigo-imovel {
    font-size: 0.8rem;
    /* pequeno */
    color: #555;
    /* discreto */
    margin-top: 4px;
    /* separa do endereço */
    font-weight: 500;
}

.codigo-imovel {
    font-size: 0.75rem;
    color: #555;
    margin-top: 4px;
    font-weight: 500;
}

.detalhes-imovel {
    display: flex;
    flex-direction: row;
    /* garante lado a lado */
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

.detalhe {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    /* impede quebrar linha */
}

.detalhe .icone {
    font-size: 15px;
}

/* ===== DETALHES DO IMÓVEL ===== */

.card-imovel .detalhes-imovel {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.card-imovel .detalhe {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.card-imovel .detalhe span {
    display: inline;
}

/* ===== FORÇAR ÍCONES EM LINHA ===== */

.card-imovel .info-imovel .detalhes-imovel {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
}

.card-imovel .info-imovel .detalhe {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

section#formulario .contato-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: linear-gradient(to bottom right,
        rgba(255, 255, 255, 0.18),
        transparent 55%);
    pointer-events: none;
}

section#formulario .contato-container::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

/* ===== BOX VALOR PREMIUM ===== */
.slider-wrapper {
    position: relative;
}

.box-valor {
    position: absolute;
    bottom: 12px;
    right: 12px;

    background: #6b4b2a;
    /* MESMA COR DO CTA MARROM */
    color: #fff;

    padding: 10px 16px;
    border-radius: 8px;

    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ===== BOX INTERNO – ATENDIMENTO ===== */

.box-botao-atendimento {
    margin-top: 18px;
    padding: 16px;

    background: rgba(255, 255, 255, 0.08);
    /* marrom fraco translúcido */
    border-radius: 14px;

    display: flex;
    justify-content: center;
}

.box-botao-atendimento button {
    width: 100%;
}

/* ================= MOBILE HEADER DEFINITIVO ================= */
@media (max-width: 768px) {

    header {
        padding: 10px 0;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 16px;
    }

    .logo img {
        height: 80px;
        /* reduz drasticamente no mobile */
    }

    .menu {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .menu a {
        font-size: 15px;
        padding: 10px 0;
    }

    .social-header {
        margin-top: 8px;
        gap: 18px;
    }

    .social-header img {
        width: 22px;
        height: 22px;
    }
}


/* ================= MOBILE FOOTER DEFINITIVO ================= */
@media (max-width: 768px) {

    .footer-bottom {
        padding: 30px 16px;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-bottom .footer-left,
    .footer-bottom .footer-right {
        align-items: center;
        gap: 8px;
    }

    .footer-bottom .footer-left p,
    .footer-bottom .footer-right p {
        font-size: 14px;
        line-height: 1.4;
    }

    .footer-bottom .footer-left .footer-logo {
        width: 130px;
        margin-bottom: 8px;
    }

    .footer-bottom .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    main,
    footer,
    header {
        width: 100%;
        max-width: 100%;
    }

    .footer-bottom,
    .footer-top {
        width: 100%;
    }

    .footer-container,
    .header-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 768px) {

    header,
    main,
    footer,
    section {
        width: 100%;
        max-width: 100%;
    }

    .container,
    .header-container,
    .footer-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    body {
        overflow-x: hidden;
    }
}

/* ===== FORÇAR MENU SEM HAMBURGER EM TODO MOBILE ===== */
@media (max-width: 900px) {
    .menu {
        display: flex !important;
    }

    .menu-toggle,
    .hamburger,
    .menu-mobile {
        display: none !important;
    }
}

/* ===== RESPONSIVO MOBILE ===== */
@media (max-width: 768px) {
    body, html {
        margin: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    /* Header */
    header {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px;
    }

    header nav {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 14px;
    }

    /* Banner / Card principal */
    .banner-card, .card-imovel {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 15px !important;
    }

    .banner-card p, .card-imovel p {
        font-size: 14px !important;
    }

    /* Imagens e sliders */
    img, .slider-wrapper {
        width: 100% !important;
        height: auto !important;
    }

    /* Filtros */
    .filtros-conteudo {
        width: 100% !important;
        padding: 10px !important;
    }
}