/* Fix para garantir que o Tailwind CSS funcione corretamente */

/* Importar Tailwind se não estiver carregado */
@import url('https://cdn.tailwindcss.com');

/* Garantir que as classes do Tailwind funcionem */
.gradient-bg {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    min-height: 100vh !important;
    padding: 20px !important;
}

.max-w-4xl {
    max-width: 56rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.rounded-2xl {
    border-radius: 1rem !important;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
}

.from-orange-500 {
    --tw-gradient-from: #f97316 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0)) !important;
}

.to-orange-600 {
    --tw-gradient-to: #ea580c !important;
}

.p-6 {
    padding: 1.5rem !important;
}

.text-white {
    color: #ffffff !important;
}

.text-center {
    text-align: center !important;
}

.text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
}

.font-bold {
    font-weight: 700 !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.opacity-90 {
    opacity: 0.9 !important;
}

.grid {
    display: grid !important;
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.gap-6 {
    gap: 1.5rem !important;
}

.space-y-4 > * + * {
    margin-top: 1rem !important;
}

.block {
    display: block !important;
}

.text-gray-700 {
    color: #374151 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.w-full {
    width: 100% !important;
}

.h-40 {
    height: 10rem !important;
}

.p-4 {
    padding: 1rem !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-gray-200 {
    border-color: #e5e7eb !important;
}

.rounded-xl {
    border-radius: 0.75rem !important;
}

.focus\:border-orange-500:focus {
    border-color: #f97316 !important;
}

.focus\:outline-none:focus {
    outline: none !important;
}

.resize-none {
    resize: none !important;
}

.py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.hover\:from-orange-600:hover {
    --tw-gradient-from: #ea580c !important;
}

.hover\:to-orange-700:hover {
    --tw-gradient-to: #c2410c !important;
}

.transition-all {
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
}

.duration-300 {
    transition-duration: 300ms !important;
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}

.text-gray-800 {
    color: #1f2937 !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.min-h-\[300px\] {
    min-height: 300px !important;
}

.flex {
    display: flex !important;
}

.items-center {
    align-items: center !important;
}

.justify-center {
    justify-content: center !important;
}

.text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
}

.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.bg-green-600 {
    background-color: #16a34a !important;
}

.hover\:bg-green-700:hover {
    background-color: #15803d !important;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5 !important;
}

.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed !important;
}

.border-t {
    border-top-width: 1px !important;
}

.border-gray-200 {
    border-color: #e5e7eb !important;
}

.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}

.top-full {
    top: 100% !important;
}

.left-0 {
    left: 0px !important;
}

.right-0 {
    right: 0px !important;
}

.border {
    border-width: 1px !important;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

.z-10 {
    z-index: 10 !important;
}

.hidden {
    display: none !important;
}

.max-h-40 {
    max-height: 10rem !important;
}

.overflow-y-auto {
    overflow-y: auto !important;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
    
    .gradient-bg {
        padding: 10px !important;
    }
    
    .p-6 {
        padding: 1rem !important;
    }
    
    .text-3xl {
        font-size: 1.5rem !important;
        line-height: 2rem !important;
    }
}
