/* Fallback mínimo de utilitários Tailwind usados no projeto */
/* Layout e containers */
.w-full{width:100%}
.min-h-dvh{min-height:100dvh}
.flex{display:flex}
.items-center{align-items:center}
.justify-between{justify-content:space-between}
.grid{display:grid}
.md\:grid-cols-3{grid-template-columns:repeat(1,minmax(0,1fr))}
@media (min-width:768px){.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}
.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}
.overflow-hidden{overflow:hidden}
.sticky{position:sticky}.top-0{top:0}

/* Espaçamentos */
.p-4{padding:1rem}.p-6{padding:1.5rem}
.px-3{padding-left:.75rem;padding-right:.75rem}
.px-4{padding-left:1rem;padding-right:1rem}
.px-5{padding-left:1.25rem;padding-right:1.25rem}
.py-1{padding-top:.25rem;padding-bottom:.25rem}
.py-2{padding-top:.5rem;padding-bottom:.5rem}
.py-3{padding-top:.75rem;padding-bottom:.75rem}
.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}
.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}
.h-60{height:15rem}
.w-6{width:1.5rem}.h-6{height:1.5rem}

/* Cores e tipografia */
.bg-white{background:#fff}
.bg-gray-50{background:#f9fafb}
.text-white{color:#fff}
.text-gray-900{color:#111827}
.text-gray-700{color:#374151}
.text-gray-600{color:#4b5563}
.text-gray-500{color:#6b7280}
.border{border-width:1px;border-style:solid}
.border-gray-200{border-color:#e5e7eb}
.rounded-2xl{border-radius:1rem}
.rounded-3xl{border-radius:1.5rem}
.rounded-full{border-radius:9999px}
.shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}
.object-cover{object-fit:cover}
.font-semibold{font-weight:600}.font-bold{font-weight:700}.font-black{font-weight:900}
.text-xs{font-size:.75rem;line-height:1rem}
.text-sm{font-size:.875rem;line-height:1.25rem}
.text-lg{font-size:1.125rem;line-height:1.75rem}
.text-2xl{font-size:1.5rem;line-height:2rem}
.tracking-tight{letter-spacing:-.015em}

/* Cores do tema integradas */
.bg-primaria{background-color:var(--cor-primaria)!important}
.text-primaria{color:var(--cor-primaria)!important}
.text-secundaria{color:var(--cor-secundaria)!important}
.border-primaria{border-color:var(--cor-primaria)!important}
