/*
Theme Name: Kadence Child
Template: kadence
Description: Tema filho para customizações do Condobens
Version: 1.0
Author: Alan - Condobens
*/

/* ========================================
   ARQUIVO DE IMÓVEIS - GRID
======================================== */

.arquivo-imoveis {
    padding: 60px 20px;
    background: #f8f9fa;
}

.arquivo-imoveis .container {
    max-width: 1200px;
    margin: 0 auto;
}

.titulo-arquivo {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #003366;
    text-align: center;
}

.term-description {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

/* Grid de cards */
.grid-imoveis {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Card individual */
.card-imovel {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-imovel a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Imagem do card */
.card-imagem {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e9ecef;
}

.card-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Conteúdo do card */
.card-conteudo {
    padding: 20px;
}

.card-conteudo h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #003366;
    line-height: 1.4;
    min-height: 60px;
}

.card-conteudo .endereco {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
}

.card-conteudo .preco {
    font-size: 1.3rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 15px;
}

.btn-ver-mais {
    display: inline-block;
    color: #003366;
    font-weight: 600;
    transition: color 0.3s;
}

.card-imovel:hover .btn-ver-mais {
    color: #0056b3;
}

/* Responsivo mobile */
@media (max-width: 768px) {
    .grid-imoveis {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .titulo-arquivo {
        font-size: 2rem;
    }
    
    .arquivo-imoveis {
        padding: 40px 15px;
    }
}
