/*
Theme Name: Mais Novos Feed Custom Styles
Description: Estilos personalizados e otimizados para as páginas de feed.
VERSÃO DEFINITIVA
*/

/* ================================================================ */
/* ESTILOS GERAIS PARA AS PÁGINAS DE FEED (ID 1810 e 2738)         */
/* ================================================================ */

/* Oculta o título H1 padrão na página de anúncios (ID 1810) */
/* .page-id-1810 .page-header { display: none !important; } */

/* Ajusta o título H1 na página de Lançamentos (ID 2738) */
.page-id-2738 .page-header h1.entry-title {
    font-size: 2.0rem !important;
    text-align: center !important;
    font-weight: 600;
    margin: 10px 0 20px 0;
    color: #333;
}

/* Remove botões flutuantes em ambas as páginas de feed */
.page-id-1810 .fixed-contact-buttons,
.page-id-2738 .fixed-contact-buttons {
    display: none !important;
}

/* Estilo base do card para ambas as páginas */
.imovel-card {
  background: #fff; border: 1px solid #eee; border-radius: 12px;
  overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease; display: flex; flex-direction: column; height: 100%;
}
.imovel-card:hover { transform: translateY(-5px); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.imovel-card-content { padding: 16px; flex-grow: 1; display: flex; flex-direction: column; }

/* ================================================================ */
/* ESTILIZAÇÃO DAS IMAGENS (REGRAS SEPARADAS E CORRIGIDAS)          */
/* ================================================================ */

/* --- PARA PÁGINA DE ANÚNCIOS (ID 1810): MANTÉM ALTURA FIXA E IMAGEM INTEIRA --- */
.page-id-1810 .imovel-card .imovel-card-thumbnail {
    width: 100%; height: auto; overflow: hidden; position: relative; border-radius: 12px;
}
.page-id-1810 .imovel-card .imovel-card-thumbnail img {
    width: 100%; height: 100%; object-fit: contain !important; background-color: #f0f0f0; object-position: center;
}

/* --- PARA PÁGINA DE LANÇAMENTOS (ID 2738): ALTURA 100% FLEXÍVEL (MASONRY) --- */
.page-id-2738 .imovel-card .imovel-card-thumbnail {
    width: 100%;
    height: auto !important; /* Força a altura a ser automática e flexível */
    overflow: hidden;
    position: relative;
    border-radius: 12px; 
}
.page-id-2738 .imovel-card .imovel-card-thumbnail img {
    width: 100%;
    height: auto !important; /* Garante que a imagem mantenha sua proporção */
    display: block;
}


/* ================================================================ */
/* ESTILIZAÇÃO DE TEXTOS E TAGS (REGRAS GERAIS E POR PÁGINA)      */
/* ================================================================ */

/* Textos e Preço (Geral para ambas as páginas) */
.imovel-card-title { font-family: 'Montserrat', sans-serif !important; font-weight: 700 !important; font-size: 1.25em !important; color: var(--secondary-color) !important; margin-bottom: 8px !important; line-height: 1.3 !important; }
.card-location { font-family: 'Roboto', sans-serif !important; font-size: 0.8em !important; color: var(--light-text-color); margin-top: 3px; margin-bottom: 10px; line-height: 1.4; }
.card-price { font-family: 'Montserrat', sans-serif !important; font-weight: 700 !important; font-size: 1.1em !important; color: #FD004C !important; display: flex; align-items: baseline; margin-top: auto; padding-top: 10px; }
.price-prefix { font-size: 0.6em; font-weight: 500; color: #666; margin-right: 4px; vertical-align: middle; }

/* Tags de Lançamentos (PÁGINA 2738) */
.page-id-2738 .tag-previsao-entrega { padding: 4px 10px; border-radius: 20px; font-size: 0.75em; font-weight: 500 !important; color: white !important; display: inline-block; }
.page-id-2738 .tag-previsao-entrega.tag-entregue { background-color: #cccccc !important; color: #333333 !important; }
.page-id-2738 .tag-previsao-entrega.tag-ate-12-meses-para-entrega { background-color: #E50000 !important; }
.page-id-2738 .tag-previsao-entrega.tag-de-13-a-24-meses-para-entrega { background-color: #F79500 !important; }
.page-id-2738 .tag-previsao-entrega.tag-de-25-a-36-meses-para-entrega { background-color: #F7F700 !important; color: #333333 !important; }
.page-id-2738 .tag-previsao-entrega.tag-acima-de-37-meses-para-entrega { background-color: #60F763 !important; color: #333333 !important; }
.page-id-2738 .tag-previsao-entrega.tag-data-invalida { background-color: #333333 !important; }

/* Contêiner das pílulas de detalhes (Lançamentos) com espaçamento corrigido */
.details-empreendimento { 
display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; 
}
.detail-tag {
  background-color: #e0e0e0 !important;
  color: #444 !important;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 500 !important;
  margin: 2px;
  white-space: nowrap; /* <-- ESSENCIAL para não quebrar o conteúdo da tag */
  display: inline-block; /* garante que se comporte como uma pílula */
}

/* Ícones de Anúncios (PÁGINA 1810) */
.details-anuncio {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
  align-items: center;
}

.icon-detail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #e0e0e0;
  color: #444;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 500;
  white-space: nowrap;
}

.icon-detail img.detail-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: grayscale(1); /* opcional, para manter neutro */
}
