/* Configurações Gerais */
:root { 
    --gold: #c5a059; 
    --dark: #121212; 
    --soft: #f8f9fa; 
}

body { 
    background: var(--soft); 
    font-family: 'Inter', sans-serif; 
    color: var(--dark); 
    overflow-x: hidden; 
}

.navbar { background: var(--dark); }
.fw-800 { font-weight: 800; }

/* Hero e Busca */
.hero-premium { 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000'); 
    background-size: cover; 
    background-position: center; 
    height: 55vh; 
    display: flex; 
    align-items: center; 
    color: white; 
}

.search-glass { 
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(15px); 
    padding: 25px; 
    border-radius: 20px; 
    max-width: 850px; 
    margin: 30px auto; 
    border: 1px solid rgba(255,255,255,0.2); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
}

/* Seção de Contadores */
.counter-section { margin-top: -60px; position: relative; z-index: 20; }
.counter-card { 
    background: white; 
    border-radius: 20px; 
    padding: 30px; 
    text-align: center; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    height: 100%; 
    transition: 0.3s; 
}

/* Categorias */
.cat-item { 
    background: white; 
    border-radius: 15px; 
    padding: 20px; 
    text-decoration: none !important; 
    color: var(--dark); 
    display: block; 
    transition: 0.3s; 
    border: 1px solid #eee; 
    height: 100%; 
    text-align: center; 
}

.cat-item:hover, .cat-active { 
    background: #fffbf2; 
    border-color: var(--gold); 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.1); 
}

.cat-item i { font-size: 2rem; display: block; margin-bottom: 10px; color: var(--gold); }

/* Mural de Fotos (Pinterest Style) */
.mural { column-count: 3; column-gap: 20px; }
@media (max-width: 768px) { .mural { column-count: 1; } }

.card-p { 
    break-inside: avoid; 
    margin-bottom: 20px; 
    border-radius: 15px; 
    overflow: hidden; 
    position: relative; 
    background: white; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
}

.card-p img { width: 100%; display: block; transition: 0.5s; }
.card-p:hover img { transform: scale(1.08); }

.card-p .overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end; 
    padding: 20px; 
    color: white; 
    opacity: 0; 
    transition: 0.3s; 
}

.card-p:hover .overlay { opacity: 1; }

/* Títulos de Seção */
.section-title { 
    font-weight: 800; 
    border-left: 5px solid var(--gold); 
    padding-left: 15px; 
    margin: 60px 0 30px; 
    text-transform: uppercase; 
    font-size: 1.2rem; 
}

/* Efeito Hover nos Cards de Marcenaria */
.hover-shadow:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    border-color: var(--gold) !important;
}
/* Customizações para o Blog */
.blog-content {
    line-height: 1.8;
    color: #444;
}

/* Garante que imagens dentro do conteúdo não estourem */
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
}

/* Efeito de leitura focado */
.reading-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Melhoria nos botões de navegação */
.btn-outline-dark:hover {
    background-color: var(--dark);
    color: white;
}

/* Estilo para as linhas da lista de dicas */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateX(10px); /* Leve empurrão para a direita no hover */
    background-color: #fffdf9 !important;
}