/* ==========================================================================
   CSS ESTÁTICO — substitui o Tailwind via CDN (modo "Play").
   Por quê: o CDN carrega um compilador inteiro e monta o CSS no navegador
   da pessoa, TODA VEZ que a página abre — isso é o que estava deixando o
   site lento. Esse arquivo já vem pronto, sem precisar compilar nada na
   hora, cobrindo só as classes que o sistema realmente usa.
   ========================================================================== */

*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; }
body { margin: 0; line-height: inherit; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; }
p { margin: 0; }
button, input, textarea, select { font-family: inherit; font-size: 100%; margin: 0; padding: 0; color: inherit; }
button { text-transform: none; cursor: pointer; background-color: transparent; background-image: none; }
a { color: inherit; text-decoration: inherit; }
img, svg { display: block; vertical-align: middle; max-width: 100%; }

/* ---------- Display / Layout ---------- */
.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.z-50 { z-index: 50; }
.overflow-y-auto { overflow-y: auto; }
.transform { transform: translateX(var(--tw-translate-x,0)) translateY(var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) skewX(var(--tw-skew-x,0)) skewY(var(--tw-skew-y,0)) scaleX(var(--tw-scale-x,1)) scaleY(var(--tw-scale-y,1)); }
.scale-95 { --tw-scale-x: .95; --tw-scale-y: .95; }

/* ---------- Tamanho ---------- */
.w-full { width: 100%; }
.h-8 { height: 2rem; }
.min-h-screen { min-height: 100vh; }
.max-h-96 { max-height: 24rem; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-6xl { max-width: 72rem; }
.container { width: 100%; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Espaçamento ---------- */
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.ml-2 { margin-left: 0.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }

/* ---------- Bordas ---------- */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-b-lg { border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }
.border { border-width: 1px; }
.border-gray-600 { border-color: #4b5563; }
.border-gray-700 { border-color: #374151; }
.border-\[\#2a303c\] { border-color: #2a303c; }

/* ---------- Tipografia ---------- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.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-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.font-normal { font-weight: 400; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-mono { font-family: ui-monospace, monospace; }
.leading-tight { line-height: 1.25; }
.whitespace-pre-line { white-space: pre-line; }

/* ---------- Cores de texto ---------- */
.text-white { color: #fff; }
.text-black { color: #000; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-green-50 { color: #f0fdf4; }
.text-green-100 { color: #dcfce7; }
.text-green-400 { color: #4ade80; }
.text-green-700 { color: #15803d; }
.text-yellow-200 { color: #fef08a; }
.text-yellow-400 { color: #facc15; }
.text-purple-600 { color: #9333ea; }
.hover\:text-white:hover { color: #fff; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:bg-purple-700:hover { background-color: #7e22ce; }

/* ---------- Fundos ---------- */
.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-gray-700 { background-color: #374151; }
.bg-green-600 { background-color: #16a34a; }
.bg-green-700 { background-color: #15803d; }
.bg-purple-600 { background-color: #9333ea; }
.bg-opacity-75 { --tw-bg-opacity: 0.75; }
.bg-\[\#1a1a1a\] { background-color: #1a1a1a; }
.bg-\[\#20242e\] { background-color: #20242e; }
.bg-\[\#2a303c\] { background-color: #2a303c; }
.bg-\[\#2b2b2b\] { background-color: #2b2b2b; }

/* ---------- Sombra ---------- */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.35), 0 4px 6px -4px rgba(0,0,0,.35); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,.4), 0 8px 10px -6px rgba(0,0,0,.4); }

/* ---------- Responsivo (só o que é usado) ---------- */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:h-\[450px\] { height: 450px; }
}

/* ---------- Complementos (segunda varredura) ---------- */
.bg-\[\#1f2430\] { background-color: #1f2430; }
.bg-gray-800 { background-color: #1f2937; }
.bg-red-600 { background-color: #dc2626; }
.bg-yellow-500 { background-color: #eab308; }
.bg-opacity-30 { --tw-bg-opacity: 0.3; }
.bg-opacity-80 { --tw-bg-opacity: 0.8; }
.border-\[\#2a303c\] { border-color: #2a303c; }
.col-span-full { grid-column: 1 / -1; }
.h-64 { height: 16rem; }
.h-auto { height: auto; }
.hover\:bg-green-800:hover { background-color: #166534; }
.hover\:bg-yellow-600:hover { background-color: #ca8a04; }
.line-through { text-decoration-line: line-through; }
.max-w-sm { max-width: 24rem; }
.min-h-\[1\.5rem\] { min-height: 1.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-12 { margin-top: 3rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.object-cover { object-fit: cover; }
.opacity-90 { opacity: 0.9; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.rounded-2xl { border-radius: 1rem; }
