/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Cabeçalho */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Seção da capa/banner - ajuste principal */
.banner {
    margin-top: 0 !important; /* Remove qualquer margem superior */
    padding-top: 0 !important; /* Remove qualquer padding superior */
    height: 500px; /* Ajuste conforme necessário */
}

/* Container do banner */
.banner .container, 
.banner .overlay {
    height: 100%; /* Garante que ocupa toda a altura */
    margin: 0;
    padding: 0;
}

/* Restante do seu CSS permanece igual */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 90px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007bff;
}

.menu-mobile {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
/* Banner */
.banner {
    position: relative;
    margin-top: 80px;
    height: 500px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.overlay h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.overlay p {
    font-size: 1.2rem;
}

/* Barra de Pesquisa */
.search-bar {
    background-color: #0A0601;
    padding: 30px 0;
    margin-top: -5px;
}

.search-bar form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.search-bar select, .search-bar button {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.search-bar select {
    flex: 1;
    min-width: 200px;
}

.search-bar button {
    background-color: #ff6b00;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #e05d00;
}

/* Destaques */
.destaques {
    padding: 40px 20px;
}

.destaques h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #333;
}

.grid-imoveis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.imovel-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.imovel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.imovel-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.imovel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.imovel-card:hover .imovel-img img {
    transform: scale(1.05);
}

.tipo {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #E96928; /* Cor laranja para venda */
    color: white;
    padding: 8px 15px; /* Aumentei o padding para tornar o quadrado maior */
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem; /* Aumentei o tamanho da fonte */
    z-index: 1;
    text-transform: uppercase; /* Para deixar ALUGUEL e VENDA em maiúsculas */
}

.tipo.aluguel {
    background-color: #28a745; /* Cor verde para aluguel */
}

.preco {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 1;
}

.imovel-info {
    padding: 15px;
}

.imovel-info h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.imovel-info p {
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.imovel-info p i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.imovel-info ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.imovel-info ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    font-size: 0.8rem;
}

.imovel-info ul li i {
    font-size: 1rem;
    margin-bottom: 3px;
    color: #E96928;
}

.btn-detalhes {
    display: block;
    text-align: center;
    background-color: #0A0601;
    color: white;
    padding: 8px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-detalhes:hover {
    background-color: #333;
}

/* Media Queries para responsividade */
@media (max-width: 768px) {
    .destaques {
        padding: 30px 15px;
    }
    
    .destaques h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .grid-imoveis {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .imovel-img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .destaques {
        padding: 25px 10px;
    }
    
    .destaques h2 {
        font-size: 1.3rem;
    }
    
    .grid-imoveis {
        grid-template-columns: 1fr;
    }
    
    .imovel-info {
        padding: 12px;
    }
    
    .btn-detalhes {
        padding: 10px;
    }
}
/* Rodapé */
footer {
    background-color: #0A0601;
    color: #fff;
    padding: 60px 0 0;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.logo-footer {
    height: 40px;
    margin-bottom: 20px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 10px;
    color: #bbb;
    display: flex;
    align-items: center;
}

.footer-col p i {
    margin-right: 10px;
    color: #0A0601;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #007bff;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
}

/* Responsivo */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .banner {
        height: 400px;
    }
    
    .overlay h1 {
        font-size: 2rem;
    }
    
    .overlay p {
        font-size: 1rem;
    }
    
    .search-bar form {
        flex-direction: column;
    }
    
    .search-bar select, .search-bar button {
        width: 100%;
    }
}
/* Seção Compra ou Locação */
.compra-aluguel {
    padding: 60px 0;
    background-color: #ece8e8;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
}

.blocos-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.bloco {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bloco:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.bloco-content {
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.bloco i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bloco h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.bloco p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.btn-saiba-mais {
    background-color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

/* Cores específicas para cada bloco */
.comprar {
    background: linear-gradient(135deg, #0A0601, #00a1ff);
}

.alugar {
    background: linear-gradient(135deg, #0A0601, #5cb85c);
}

.comprar .btn-saiba-mais {
    color: #007bff;
}

.alugar .btn-saiba-mais {
    color: #28a745;
}

.comprar .btn-saiba-mais:hover {
    background-color: #0069d9;
    color: white;
}

.alugar .btn-saiba-mais:hover {
    background-color: #218838;
    color: white;
}

/* Responsivo */
@media (max-width: 768px) {
    .blocos-container {
        flex-direction: column;
    }
    
    .bloco {
        margin-bottom: 20px;
    }
    
    .bloco:last-child {
        margin-bottom: 0;
    }
}
/* Banner Interno */
.banner-interno {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
}

.banner-interno .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.banner-interno h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Filtros */
.filtros {
    background-color: #f5f5f5;
    padding: 30px 0;
}

.form-filtros {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.form-filtros select, 
.form-filtros button {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.form-filtros button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-filtros button:hover {
    background-color: #0069d9;
}

.faixa-preco {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 250px;
}

.faixa-preco input {
    flex: 1;
}

/* Item ativo no menu */
nav ul li a.active {
    color: #007bff;
    font-weight: bold;
}

/* Responsivo */
@media (max-width: 768px) {
    .banner-interno h1 {
        font-size: 2rem;
    }
    
    .form-filtros select, 
    .form-filtros button,
    .faixa-preco {
        width: 100%;
    }
}
.imovel-card {
    transition: all 0.3s ease;
}

/* Efeito quando o imóvel é filtrado */
.grid-imoveis:has(.imovel-card[style*="display: none"]) {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0.5; }
    to { opacity: 1; }
}
.contador-resultados {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Apenas os ajustes para deixar mais chamativo */
.banner {
    position: relative;
}

.banner img {
    filter: brightness(0.7); /* Escurece a imagem para destacar o texto */
}

.overlay h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para melhor contraste */
    margin-bottom: 15px;
}

.overlay p span {
    color: #E96928;
    font-weight: 600;
    font-size: 1.2rem;
}

/* ===== ESTILOS GERAIS ===== */
.lk-header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    position: static; /* Garante que não seja fixo */
    top: auto; /* Remove qualquer posicionamento fixo */
    left: auto;
    right: auto;
    z-index: auto;
}

.lk-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.lk-logo {
    display: flex;
    align-items: center;
}

.lk-logo-img {
    width: auto;
    transition: all 0.3s ease;
}

/* ===== ESTILOS GERAIS ===== */
.lk-header {
    background-color: #e6e5e1;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    padding: 20px 0;
}

.lk-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 20px;
}

.lk-logo {
    flex: 0 0 auto;
}

.lk-logo-img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.lk-contact-info {
    display: flex;
    justify-content: center;
    flex: 1;
    gap: 40px;
}

.lk-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== DESKTOP (769px ou mais) ===== */
@media (min-width: 769px) {
    .lk-header {
        padding: 10px 0;
    }
    
    .lk-container {
        padding: 0 40px;
    }
    
    .lk-logo-img {
        height: 130px;
    }
    
    .lk-contact-info {
        gap: 40px;
    }
}

/* ===== MOBILE (768px ou menos) - APENAS A LOGO ===== */
@media (max-width: 768px) {
    .lk-header {
        padding: 15px 0;
        height: auto;
        display: flex;
        justify-content: center;
    }
  
    .lk-container {
        padding: 0;
        width: 100%;
        max-width: 300px; /* Limita a largura para telas pequenas */
        justify-content: center;
    }
  
    .lk-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0;
    }
  
    .lk-logo-img {
        max-height: 100px;
        height: auto;
        width: auto;
        max-width: 100%;
    }
  
    /* Oculta TODOS os outros elementos no mobile */
    .lk-contact-info,
    .lk-contact-item,
    .lk-contact-icon,
    .lk-contact-text,
    .lk-contact-label,
    .lk-phone-numbers,
    .lk-working-hours {
        display: none !important;
    }
}

/* ===== EFEITOS HOVER (apenas desktop) ===== */
@media (hover: hover) and (min-width: 769px) {
    .lk-logo-img:hover {
        transform: scale(1.05);
    }

    .lk-contact-item:hover .lk-contact-icon {
        color: #1a3a5a;
        transform: scale(1.1);
    }
}
/* Estilos para imóvel indisponível */
.imovel-indisponivel {
    position: relative;
    opacity: 0.8;
}

.imovel-indisponivel .imovel-img {
    position: relative;
}

.overlay-indisponivel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.tipo.indisponivel {
    background-color: #6c757d;
    z-index: 2;
}

.btn-indisponivel {
    display: block;
    text-align: center;
    background-color: #6c757d;
    color: white;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    cursor: not-allowed;
}

.imovel-indisponivel .preco {
    text-decoration: line-through;
    color: #ccc;
    z-index: 2;
}

.imovel-indisponivel h3,
.imovel-indisponivel p,
.imovel-indisponivel .caracteristicas {
    color: #999;
}


/* Seção Opções de Busca */
.opcoes-busca {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.blocos-opcoes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.bloco-opcao {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bloco-opcao:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bloco-conteudo {
    padding: 30px;
    text-align: center;
    color: white;
}

.bloco-opcao i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bloco-opcao h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bloco-opcao p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Cores específicas */
.bloco-opcao.comprar {
    background: linear-gradient(135deg, #0A0601, #E96928);
}

.bloco-opcao.alugar {
    background: linear-gradient(135deg, #0A0601, #28a745);
}

/* Responsivo */
@media (max-width: 768px) {
    .blocos-opcoes {
        grid-template-columns: 1fr;
    }
    
    .bloco-conteudo {
        padding: 25px;
    }
}
/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  }
  
  /* Efeito de pulsação */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  .whatsapp-float {
    animation: pulse 2s infinite;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 20px;
      right: 20px;
      font-size: 25px;
    }
  }