/* Tailwind CSS Production Build */
/* Este arquivo contém as classes Tailwind essenciais para o tema */

/* Base */
.bg-white { background-color: #ffffff !important; }
.bg-gray-50 { background-color: #f9fafb !important; }
.bg-brand-#06402B { background-color: #06402B !important; }
.bg-#06402B-600 { background-color: #ea580c !important; }
.bg-black { background-color: #000000 !important; }
.bg-opacity-10 { background-color: rgba(255, 255, 255, 0.1) !important; }
.bg-opacity-20 { background-color: rgba(255, 255, 255, 0.2) !important; }
.bg-opacity-95 { background-color: rgba(0, 0, 0, 0.95) !important; }

.text-white { color: #ffffff !important; }
.text-brand-brown { color: #00240d !important; }
.text-brand-dark { color: #1C1917 !important; }
.text-brand-#06402B { color: #06402B !important; }

.border { border-width: 1px !important; }
.border-b { border-bottom-width: 1px !important; }
.border-t { border-top-width: 1px !important; }
.border-gray-100 { border-color: #f3f4f6 !important; }
.border-transparent { border-color: transparent !important; }

.rounded-md { border-radius: 0.375rem !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-full { border-radius: 9999px !important; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !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; }

/* Layout */
.container { max-width: 100%; }
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1536px; } }

.max-w-7xl { max-width: 80rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.grid { display: grid !important; }
.hidden { display: none !important; }
.block { display: block !important; }

.flex-col { flex-direction: column !important; }
.flex-1 { flex: 1 1 0% !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }

.gap-2 { gap: 0.5rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-8 { gap: 2rem !important; }

/* Spacing */
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pb-4 { padding-bottom: 1rem !important; }

.m-0 { margin: 0 !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mb-4 { margin-bottom: 1rem !important; }

/* Typography */
.text-xs { font-size: 0.75rem !important; line-height: 1rem !important; }
.text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
.text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
.text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
.text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
.text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }

.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-sans { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; }
.antialiased { -webkit-font-smoothing: antialiased !important; -moz-osx-font-smoothing: grayscale !important; }

.text-center { text-align: center !important; }
.uppercase { text-transform: uppercase !important; }
.tracking-wide { letter-spacing: 0.025em !important; }

/* Positioning */
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.fixed { position: fixed !important; }
.sticky { position: sticky !important; }
.top-0 { top: 0px !important; }
.right-0 { right: 0px !important; }
.bottom-0 { bottom: 0px !important; }
.left-0 { left: 0px !important; }
.inset-0 { top: 0px !important; right: 0px !important; bottom: 0px !important; left: 0px !important; }
.z-50 { z-index: 50 !important; }

/* Sizing */
.h-6 { height: 1.5rem !important; }
.h-8 { height: 2rem !important; }
.h-10 { height: 2.5rem !important; }
.h-20 { height: 5rem !important; }
.w-6 { width: 1.5rem !important; }
.w-8 { width: 2rem !important; }
.w-auto { width: auto !important; }
.min-h-screen { min-height: 100vh !important; }

.object-contain { object-fit: contain !important; }

/* Transitions */
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.transition-all { transition-property: all !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.duration-200 { transition-duration: 200ms !important; }
.duration-300 { transition-duration: 300ms !important; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; }

/* Transform */
.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; }
.translate-x-full { --tw-translate-x: 100% !important; 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; }
.translate-x-0 { --tw-translate-x: 0px !important; 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; }

/* Effects */
.backdrop-blur-sm { --tw-backdrop-blur: blur(4px) !important; backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important; }

/* Interactivity */
.hover\:bg-#06402B-600:hover { background-color: #ea580c !important; }
.hover\:bg-opacity-20:hover { background-color: rgba(255, 255, 255, 0.2) !important; }
.hover\:text-brand-#06402B:hover { color: #06402B !important; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; }

.focus\:outline-none:focus { outline: 2px solid transparent !important; outline-offset: 2px !important; }
.focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; }
.focus\:ring-offset-2:focus { --tw-ring-offset-width: 2px !important; }
.focus\:ring-brand-#06402B:focus { --tw-ring-color: #06402B !important; }

/* Responsive */
@media (max-width: 767px) {
    .md\:hidden { display: none !important; }
}

@media (min-width: 768px) {
    .md\:flex { display: flex !important; }
    .md\:hidden { display: none !important; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
}

/* SVG styles */
svg { display: inline-block; vertical-align: middle; }
.fill-none { fill: none !important; }
.stroke-current { stroke: currentColor !important; }

/* Footer utility classes */
.w-4 { width: 1rem !important; }
.h-4 { height: 1rem !important; }
.w-5 { width: 1.25rem !important; }
.h-5 { height: 1.25rem !important; }
.w-10 { width: 2.5rem !important; }
.h-10 { height: 2.5rem !important; }
.w-12 { width: 3rem !important; }
.h-12 { height: 3rem !important; }
.w-full { width: 100% !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-12 { gap: 3rem !important; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem !important; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem !important; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem !important; }
.space-y-12 > :not([hidden]) ~ :not([hidden]) { margin-top: 3rem !important; }
.text-gray-500 { color: #6b7280 !important; }
.text-gray-600 { color: #4b5563 !important; }
.text-gray-900 { color: #111827 !important; }
.text-red-500 { color: #ef4444 !important; }
.bg-gray-100 { background-color: #f3f4f6 !important; }
.bg-blue-50 { background-color: #eff6ff !important; }
.leading-relaxed { line-height: 1.625 !important; }
.max-w-sm { max-width: 24rem !important; }
.justify-end { justify-content: flex-end !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.border-gray-200 { border-color: #e5e7eb !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.pt-8 { padding-top: 2rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.overflow-hidden { overflow: hidden !important; }

/* Responsive: md */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .md\:px-12 { padding-left: 3rem !important; padding-right: 3rem !important; }
}

/* Responsive: lg */
@media (min-width: 1024px) {
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
    .lg\:grid-cols-\[auto\,1fr\,auto\] { grid-template-columns: auto 1fr auto !important; }
    .lg\:gap-16 { gap: 4rem !important; }
    .lg\:gap-0 { gap: 0 !important; }
    .lg\:px-20 { padding-left: 5rem !important; padding-right: 5rem !important; }
    .lg\:text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
}

/* Body styles */
body { margin: 0; line-height: inherit; }
* { box-sizing: border-box; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; }

