/* ==========================================================================
   blog-styles.css
   CSS estático escrito à mão pra substituir o Tailwind via CDN nas páginas
   do blog. Contém só as classes utilitárias que essas páginas realmente
   usam -- sem nenhum JavaScript rodando no navegador pra gerar isso.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; }
img { display: block; max-width: 100%; }

/* --- Cores de marca --- */
.bg-ink { background-color: #0B1220; }
.bg-paper { background-color: #F7F8FB; }
.bg-white { background-color: #FFFFFF; }
.text-ink { color: #0B1220; }
.text-gold { color: #F2B84B; }
.text-white { color: #FFFFFF; }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-blue-600 { color: #2563EB; }
.text-slate-400 { color: #94A3B8; }
.text-slate-500 { color: #64748B; }
.border-slate-200 { border-color: #E2E8F0; }
.hover\:text-white:hover { color: #FFFFFF; }
.hover\:text-blue-700:hover { color: #1D4ED8; }
.hover\:text-slate-600:hover { color: #475569; }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }

/* --- Fontes --- */
.font-display { font-family: 'Space Grotesk', sans-serif; }
.font-700 { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.antialiased { -webkit-font-smoothing: antialiased; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }

/* --- Tamanhos de texto --- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-\[10px\] { font-size: 10px; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-center { text-align: center; }

/* --- Layout: flex / grid --- */
.flex { display: flex; }
.grid { display: grid; }
.block { display: block; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }

/* --- Espaçamento --- */
.p-5 { padding: 1.25rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pt-8 { padding-top: 2rem; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }

/* --- Tamanho de container --- */
.max-w-xl { max-width: 36rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.w-full { width: 100%; }

/* --- Bordas / cantos / sombra --- */
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-style: solid; }
.rounded-2xl { border-radius: 1rem; }
.overflow-hidden { overflow: hidden; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.transition { transition-property: color, background-color, border-color, box-shadow, transform; transition-duration: 150ms; }

/* --- Imagem --- */
.object-cover { object-fit: cover; }

/* --- Truncar texto em N linhas --- */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.col-span-full { grid-column: 1 / -1; }

/* --- Responsivo --- */
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
