/* Definição da Identidade Visual e Tipografia */
body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Cores de Fundo inspiradas em Fine Art Paper (Off-white aconchegante) */
.bg-studio {
  background-color: #fbfbfa !important;
}

.text-studio-dark {
  color: #1c1c1a !important;
}

/* Fonte dos Títulos Própria para Arte */
.font-artistic, h1, h2, h3, .artwork-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Efeito de Hover refinado para Links */
.text-hover-dark {
  transition: color 0.2s ease-in-out;
}
.text-hover-dark:hover {
  color: #1c1c1a !important;
}

/* Estilo da Grid de Obras (Efeito Galeria Minimalista) */
.gallery-card {
  background: none;
  border: none;
  border-radius: 0;
  transition: opacity 0.3s ease;
}

.gallery-card img {
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Sombra curtinha que imita papel na parede */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img {
  transform: scale(1.02); /* Zoom sutil e elegante */
}

.gallery-card-title {
  font-size: 1.15rem;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
  color: #1c1c1a;
}

.gallery-card-meta {
  font-size: 0.85rem;
  color: #767670;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Tamanho de Fonte customizado para o rodapé */
.fs-7 {
  font-size: 0.85rem;
}