.diogenes-tailwind .container {width: 100%;}@media (min-width: 640px) {.diogenes-tailwind .container {max-width: 640px;}}@media (min-width: 768px) {.diogenes-tailwind .container {max-width: 768px;}}
@media (min-width: 1024px) {.diogenes-tailwind .container {max-width: 1024px;}}@media (min-width: 1280px) {.diogenes-tailwind .container {max-width: 1280px;}}
@media (min-width: 1536px) {.diogenes-tailwind .container {max-width: 1536px;}}

/* Layout & Posição */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.top-4 { top: 1rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.left-0 { left: 0; }
.bottom-0 { bottom: 0; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

/* Flexbox & Alinhamento */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 2rem; }

/* Largura & Altura */
.w-full { width: 100%; }
.w-screen { width: 100vw; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.max-w-full { max-width: 100%; }
.max-w-md { max-width: 28rem; }
.h-full { height: 100%; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }

/* Espaçamento (Margin & Padding) */
.mx-auto { margin-left: auto; margin-right: auto; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mr-2 { margin-right: 0.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.pt-0 { padding-top: 0px; }
.pt-5 { padding-top: 1.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }

/* Tipografia */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.font-semibold { font-weight: 600; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }
.text-primary { color: var(--primary); }
.text-foreground { color: var(--foreground); }
.text-base-gray { color: var(--base-gray); }

/* Visuais (Cores, Bordas, Sombras) */
.bg-background { background-color: var(--background); }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* Transições & Efeitos */
.backdrop-blur { backdrop-filter: blur(8px); }
.transition { transition-property: all; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-opacity { transition-property: opacity; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.duration-200 { transition-duration: 200ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Estados (Hover & Focus) */
.hover\:text-base-gray:hover { color: var(--base-gray); }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px currentColor; }
.focus\:ring-white:focus { box-shadow: 0 0 0 2px #fff; }

/* Responsivo (sm) */
@media (min-width: 640px) {
    .sm\:max-w-md { max-width: 28rem; }
    .sm\:rounded-t-xl { border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; }
    .sm\:border-l { border-left-width: 1px; }
    .sm\:border-r { border-right-width: 1px; }
    .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
}