/* Reset básico e tipografia padrão */
* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji","Segoe UI Emoji"; }

/* Cores e fundo */
.bg-black { background-color: #000; }
.text-white { color: #fff; }
.text-black { color: #111827; } /* Tailwind gray-900 approx */
.text-blue-600 { color: #2563eb; } /* TW blue-600 */
.bg-white { background-color: #fff; }

/* Disposição */
.flex { display: flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }    /* 448px */
.max-w-lg { max-width: 32rem; }    /* 512px */

/* Espaçamentos */
.p-8 { padding: 2rem; }
.p-6 { padding: 1.5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.mt-1 { margin-top: .25rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mr-2 { margin-right: .5rem; }

/* Texto */
.text-center { text-align: center; }
.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; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.underline { text-decoration: underline; }

/* Borda e raio */
.border { border: 1px solid #d1d5db; } /* gray-300 */
.rounded { border-radius: .25rem; }
.rounded-md { border-radius: .375rem; }
.rounded-2xl { border-radius: 1rem; }

/* Sombra */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
}

/* Imagem */
.h-12 { height: 3rem; }

/* Grid/spacing utilitário */
.space-y-4 > * + * { margin-top: 1rem; }

/* Botões/links */
button { cursor: pointer; }
.bg-gray-900 { background-color: #111827; } /* hover de botão principal */
.hover-bg-gray-900:hover { background-color: #111827; }
.hover-bg-gray-800:hover { background-color: #1f2937; }

/* Inputs básicos */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="checkbox"] {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #111827;
}

/* Campos de texto */
input[type="text"],
input[type="email"],
input[type="password"] {
  background-color: #fff;
}

/* Focus states */
.focus-outline-none:focus { outline: none; }
.focus-ring-2:focus { box-shadow: 0 0 0 2px rgba(0,0,0,0.6); }
.focus-ring-black:focus { box-shadow: 0 0 0 2px rgba(0,0,0,0.8); }

/* Container do modal */
.fixed { position: fixed; }
.inset-0 { top:0; right:0; bottom:0; left:0; }
/* 🎯 Novo bloco — overlay menos transparente */
.bg-black.bg-opacity-70 {
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 1;
}

.z-50 { z-index: 50; }
.hidden { display: none; }

/* Caixa do modal */
.overflow-y-auto { overflow-y: auto; }
.max-h-64 { max-height: 16rem; } /* 256px */

/* Classes utilitárias adicionais do layout */
.block { display: block; }
.relative { position: relative; }

/* Acessibilidade/cores em botões */
.text-white { color: #fff; }

/* Observação sobre overlay: usamos .bg-black + .bg-opacity-70
   Para manter o mesmo efeito, aplicamos uma overlay com bg preto e opacity 0.7
   no próprio container. */

