/* ==========================================================================
   SODELEVE - ESTILOS DA VITRINE PÚBLICA (Catálogo e Portfólio)
   ========================================================================== */

/* Configuração Base */
body { 
    background-color: #F8F9FA; 
    color: #0B192C; 
}

/* Efeito de Sublinhado Elegante (Navegação) */
.link-linha { 
    position: relative; 
    text-decoration: none; 
}

.link-linha::after { 
    content: ''; 
    position: absolute; 
    width: 0; 
    height: 1px; 
    bottom: -4px; 
    left: 0; 
    background-color: #0B192C; 
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
}

.link-linha:hover::after { 
    width: 100%; 
}

/* Animação de Zoom Suave nas Miniaturas */
.img-obra { 
    transition: transform 0.8s ease; 
}

.group:hover .img-obra { 
    transform: scale(1.05); 
}

/* Sombra Premium para a Tela de Detalhes da Obra */
.moldura-obra {
    box-shadow: 0 20px 40px -15px rgba(11, 25, 44, 0.08);
}