/* ============================================
   CSS Específico - Home
   Compatibilidade com classes Tailwind
   ============================================ */

/* Background colors */
.bg-background-light { background-color: var(--bg-light) !important; }
.bg-background-dark { background-color: var(--bg-dark) !important; }
.dark .bg-background-dark,
.dark\:bg-background-dark { background-color: var(--bg-dark) !important; }
.bg-white { background-color: #ffffff !important; }
.dark .bg-\[#1E293B\],
.dark\:bg-\[#1E293B\] { background-color: #1E293B !important; }
.dark .bg-\[#020617\],
.dark\:bg-\[#020617\] { background-color: #020617 !important; }

/* Text colors - Fundo claro: textos escuros */
.text-\[#0F172A\] { color: #0F172A !important; } /* Texto principal em fundo claro - muito escuro */
.text-gray-600 { color: #4b5563 !important; } /* Texto secundário em fundo claro - escuro */
.text-gray-500 { color: #6b7280 !important; } /* Texto terciário em fundo claro - médio-escuro */
.text-gray-400 { color: #9ca3af !important; } /* Texto quaternário em fundo claro */
.text-blue-800 { color: #1e40af !important; } /* Azul escuro para badges em fundo claro */

/* Garantir que cabeçalhos em cards brancos sejam escuros (exceto h1 no header) */
.bg-white h3,
.bg-white h2,
.bg-white h4,
.bg-white h5,
.bg-white h6 {
    color: #0F172A !important;
}

/* Garantir que cabeçalhos em cards com fundo claro sejam escuros (exceto h1 no header) */
.bg-background-light h3,
.bg-background-light h2,
.bg-background-light h4,
.bg-background-light h5,
.bg-background-light h6 {
    color: #0F172A !important;
}

/* Não forçar cor em h1 - deixar usar classes do HTML (text-[#0F172A] dark:text-white) */

/* Card do banner principal - fundo branco com opacidade */
.bg-white\/95 h3,
.bg-white\/95 h2,
.bg-white\/95 h1,
.bg-white\/95 h4,
.bg-white\/95 h5,
.bg-white\/95 h6 {
    color: #0F172A !important;
}

/* Garantir que textos em bg-white/95 sejam escuros */
.bg-white\/95 p.text-gray-500 {
    color: #6b7280 !important; /* gray-500 mais escuro para melhor contraste */
}

/* Texto "TotalEnergies & NTCNZA" abaixo de "Parceria" - garantir que seja escuro */
.bg-white\/95 p.text-\[#0F172A\],
.bg-white\/95 p.text-sm.font-bold.text-\[#0F172A\] {
    color: #0F172A !important;
}

/* Forçar texto escuro em bg-white/95 mesmo com dark:text-white (modo claro) */
.bg-white\/95 p.text-sm.font-bold {
    color: #0F172A !important;
}

/* Sobrescrever dark:text-white quando o fundo for branco (modo claro) */
.bg-white\/95 p.dark\:text-white:not(html.dark *) {
    color: #0F172A !important;
}

/* Garantir que o texto seja escuro quando não estiver em modo escuro */
html:not(.dark) .bg-white\/95 p.text-sm.font-bold.dark\:text-white {
    color: #0F172A !important;
}

/* Text colors - Fundo escuro: textos claros */
.dark .text-white,
.dark\:text-white { color: #ffffff !important; } /* Texto principal em fundo escuro - branco */
.dark .text-gray-100,
.dark\:text-gray-100 { color: #f3f4f6 !important; } /* Texto principal alternativo em fundo escuro */
.dark .text-gray-200,
.dark\:text-gray-200 { color: #e5e7eb !important; } /* Texto secundário em fundo escuro - muito claro */
.dark .text-gray-300,
.dark\:text-gray-300 { color: #d1d5db !important; } /* Texto secundário em fundo escuro - claro */
.dark .text-gray-400,
.dark\:text-gray-400 { color: #9ca3af !important; } /* Texto terciário em fundo escuro - médio-claro */
.dark .text-gray-500,
.dark\:text-gray-500 { color: #6b7280 !important; } /* Texto quaternário em fundo escuro */
.dark .text-primary,
.dark\:text-primary { color: var(--primary) !important; } /* Primary em fundo escuro */

/* Primary colors */
.bg-primary { background-color: var(--primary) !important; }
.text-primary { color: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }
.bg-primary-dark { background-color: var(--primary-dark) !important; }
.hover\:bg-primary-dark:hover { background-color: var(--primary-dark) !important; }

/* Brand colors */
.text-brand-red { color: var(--brand-red) !important; }
.text-brand-blue { color: var(--brand-blue) !important; }
.text-brand-orange { color: var(--brand-orange) !important; }
.text-brand-yellow { color: var(--brand-yellow) !important; }
.bg-brand-red { background-color: var(--brand-red) !important; }
.bg-brand-blue { background-color: var(--brand-blue) !important; }
.bg-brand-orange { background-color: var(--brand-orange) !important; }
.bg-brand-yellow { background-color: var(--brand-yellow) !important; }
.border-brand-red { border-color: var(--brand-red) !important; }
.border-brand-blue { border-color: var(--brand-blue) !important; }
.border-brand-orange { border-color: var(--brand-orange) !important; }
.border-brand-yellow { border-color: var(--brand-yellow) !important; }

/* Opacity variants */
.bg-primary\/10 { background-color: rgba(0, 94, 184, 0.1) !important; }
.bg-primary\/20 { background-color: rgba(0, 94, 184, 0.2) !important; }
.bg-brand-red\/10 { background-color: rgba(227, 29, 28, 0.1) !important; }
.bg-brand-blue\/20 { background-color: rgba(0, 94, 184, 0.2) !important; }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95) !important; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1) !important; }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2) !important; }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4) !important; }
.dark .bg-white\/10,
.dark\:bg-white\/10 { background-color: rgba(255, 255, 255, 0.1) !important; }
.dark .bg-white\/20,
.dark\:bg-white\/20 { background-color: rgba(255, 255, 255, 0.2) !important; }
.dark .bg-\[#1E293B\]\/95,
.dark\:bg-\[#1E293B\]\/95 { background-color: rgba(30, 41, 59, 0.95) !important; }
.dark .bg-blue-900\/20,
.dark\:bg-blue-900\/20 { background-color: rgba(30, 58, 138, 0.2) !important; }

/* Border colors */
.border-primary\/20 { border-color: rgba(0, 94, 184, 0.2) !important; }
.border-\[#E2E8F0\] { border-color: #E2E8F0 !important; }
.border-\[#CBD5E1\] { border-color: #CBD5E1 !important; }
.dark .border-\[#334155\],
.dark\:border-\[#334155\] { border-color: #334155 !important; }
.dark .border-\[#1E293B\],
.dark\:border-\[#1E293B\] { border-color: #1E293B !important; }
.dark .border-gray-700,
.dark\:border-gray-700 { border-color: #374151 !important; }
.border-gray-200 { border-color: #e5e7eb !important; }
.hover\:border-brand-red\/30:hover { border-color: rgba(227, 29, 28, 0.3) !important; }
.hover\:border-brand-blue\/30:hover { border-color: rgba(0, 94, 184, 0.3) !important; }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; }
.from-brand-red { --tw-gradient-from: var(--brand-red) !important; }
.via-brand-orange { --tw-gradient-to: var(--brand-orange) !important; }
.to-brand-blue { --tw-gradient-to: var(--brand-blue) !important; }
.bg-clip-text { -webkit-background-clip: text !important; background-clip: text !important; }
.text-transparent { color: transparent !important; }

/* Gradiente específico para texto */
.text-transparent.bg-clip-text.bg-gradient-to-r.from-brand-red.via-brand-orange.to-brand-blue,
span.bg-gradient-to-r.from-brand-red.via-brand-orange.to-brand-blue {
    background-image: linear-gradient(to right, #E31D1C, #FF6F00, #005EB8) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Gradientes de fundo */
.from-black\/40 { background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent) !important; }
.from-transparent { background-image: linear-gradient(to bottom, transparent, var(--tw-gradient-to)) !important; }
.via-\[#0F172A\]\/50 { background-image: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.5), var(--tw-gradient-to)) !important; }
.to-\[#0F172A\] { background-image: linear-gradient(to bottom, transparent, #0F172A) !important; }

/* Flexbox */
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-1 { flex: 1 1 0% !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.inline-flex { display: inline-flex !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-start { justify-content: flex-start !important; }
.justify-end { justify-content: flex-end !important; }
.self-center { align-self: center !important; }

/* Grid */
.grid { display: grid !important; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }

/* Spacing */
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.25rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }
.gap-10 { gap: 2.5rem !important; }
.gap-12 { gap: 3rem !important; }
.gap-16 { gap: 4rem !important; }
.gap-20 { gap: 5rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-10 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
.py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-5 { padding: 1.25rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-1\.5 { margin-top: 0.375rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-4 { padding: 1rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.p-16 { padding: 4rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mb-16 { margin-bottom: 4rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mr-2 { margin-right: 0.5rem !important; }
.ml-2 { margin-left: 0.5rem !important; }

/* Sizing */
.w-full { width: 100% !important; }
.w-12 { width: 3rem !important; }
.w-64 { width: 16rem !important; }
.h-10 { height: 2.5rem !important; }
.h-12 { height: 3rem !important; }
.h-14 { height: 3.5rem !important; }
.h-64 { height: 16rem !important; }
.h-auto { height: auto !important; }
.size-8 { width: 2rem !important; height: 2rem !important; }
.max-w-\[1280px\] { max-width: 1280px !important; }
.max-w-\[600px\] { max-width: 600px !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.min-h-\[200px\] { min-height: 200px !important; }
.min-h-\[220px\] { min-height: 220px !important; }
.min-h-\[260px\] { min-height: 260px !important; }
.min-h-\[300px\] { min-height: 300px !important; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3 !important; }
.md\:min-h-0 { min-height: 0 !important; }
@media (min-width: 768px) {
    .md\:min-h-\[320px\] { min-height: 320px !important; }
}
@media (min-width: 1024px) {
    .lg\:min-h-\[380px\] { min-height: 380px !important; }
}

/* Typography */
.text-xs { font-size: 0.75rem !important; }
.text-sm { font-size: 0.875rem !important; }
.text-base { font-size: 1rem !important; }
.text-lg { font-size: 1.125rem !important; }
.text-xl { font-size: 1.25rem !important; }
.text-2xl { font-size: 1.5rem !important; }
.text-3xl { font-size: 1.875rem !important; }
.text-4xl { font-size: 2.25rem !important; }
.text-5xl { font-size: 3rem !important; }
.text-6xl { font-size: 3.75rem !important; }
.text-8xl { font-size: 6rem !important; }
.text-9xl { font-size: 8rem !important; }
.font-medium { font-weight: 500 !important; }
.font-bold { font-weight: 700 !important; }
.font-black { font-weight: 900 !important; }
.font-normal { font-weight: 400 !important; }
.leading-\[1\.1\] { line-height: 1.1 !important; }
.leading-tight { line-height: 1.25 !important; }
.leading-relaxed { line-height: 1.625 !important; }
.tracking-\[-0\.033em\] { letter-spacing: -0.033em !important; }
.tracking-\[-0\.015em\] { letter-spacing: -0.015em !important; }
.tracking-wide { letter-spacing: 0.025em !important; }
.tracking-widest { letter-spacing: 0.1em !important; }
.uppercase { text-transform: uppercase !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }

/* Border radius */
.rounded-full { border-radius: 9999px !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.rounded-3xl { border-radius: 1.5rem !important; }
.rounded-lg { border-radius: 0.5rem !important; }

/* Shadows */
.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; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; }
.shadow-\[0_0_20px_rgba\(0\,94\,184\,0\.3\)\] { box-shadow: 0 0 20px rgba(0, 94, 184, 0.3) !important; }
.shadow-\[0_0_30px_rgba\(0\,94\,184\,0\.5\)\] { box-shadow: 0 0 30px rgba(0, 94, 184, 0.5) !important; }

/* Position */
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.sticky { position: sticky !important; }
.top-0 { top: 0 !important; }
.inset-0 { top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important; }
.bottom-6 { bottom: 1.5rem !important; }
.left-6 { left: 1.5rem !important; }
.right-6 { right: 1.5rem !important; }

/* Z-index */
.z-10 { z-index: 10 !important; }
.z-20 { z-index: 20 !important; }
.z-50 { z-index: 50 !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }
.overflow-x-hidden { overflow-x: hidden !important; }

/* Background properties */
.bg-center { background-position: center !important; }
.bg-cover { background-size: cover !important; }

/* Transitions */
.transition-all { transition-property: all !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.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-opacity { transition-property: opacity !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.transition-transform { transition-property: transform !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; }
.duration-700 { transition-duration: 700ms !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-y-1\/2 { transform: translateY(50%) !important; }
.translate-x-1\/2 { transform: translateX(50%) !important; }
.-translate-y-1\/2 { transform: translateY(-50%) !important; }
.-translate-x-1\/2 { transform: translateX(-50%) !important; }

/* Opacity */
.opacity-5 { opacity: 0.05 !important; }
.opacity-10 { opacity: 0.1 !important; }
.opacity-20 { opacity: 0.2 !important; }

/* Backdrop */
.backdrop-blur { backdrop-filter: blur(8px) !important; }
.backdrop-blur-sm { backdrop-filter: blur(4px) !important; }

/* Ring (borda sutil) */
.ring-1 { box-shadow: 0 0 0 1px currentColor !important; }
.ring-black\/5 { --tw-ring-color: rgba(0, 0, 0, 0.05) !important; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important; }
.dark .ring-white\/5,
.dark\:ring-white\/5 { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) !important; }
.blur-3xl { filter: blur(64px) !important; }

/* Pointer events */
.pointer-events-none { pointer-events: none !important; }

/* Group hover */
.group { position: relative !important; }
.group:hover .group-hover\:bg-brand-red { background-color: var(--brand-red) !important; }
.group:hover .group-hover\:bg-brand-blue { background-color: var(--brand-blue) !important; }
.group:hover .group-hover\:bg-brand-orange { background-color: var(--brand-orange) !important; }
.group:hover .group-hover\:bg-brand-yellow { background-color: var(--brand-yellow) !important; }
.group:hover .group-hover\:text-white { color: white !important; }
.group:hover .group-hover\:opacity-20 { opacity: 0.2 !important; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05) !important; }

/* Hover states */
.hover\:bg-primary-dark:hover { background-color: var(--primary-dark) !important; }
.hover\:bg-gray-50:hover { background-color: #f9fafb !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; }
.hover\:scale-105:hover { transform: scale(1.05) !important; }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem) !important; }
.hover\:text-primary:hover { color: var(--primary) !important; }
.dark .hover\:bg-white\/20:hover,
.dark\:hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2) !important; }
.hover\:shadow-\[0_0_30px_rgba\(0\,94\,184\,0\.5\)\]:hover { box-shadow: 0 0 30px rgba(0, 94, 184, 0.5) !important; }

/* Border */
.border-t { border-top-width: 1px !important; }
.border-b { border-bottom-width: 1px !important; }
.border-l-4 { border-left-width: 4px !important; }

/* Display */
.hidden { display: none !important; }

/* Responsive - SM */
@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
    .sm\:gap-4 { gap: 1rem !important; }
    .sm\:gap-3 { gap: 0.75rem !important; }
    .sm\:text-base { font-size: 1rem !important; }
    .sm\:h-8 { height: 2rem !important; }
    .sm\:bottom-5 { bottom: 1.25rem !important; }
    .sm\:left-5 { left: 1.25rem !important; }
    .sm\:right-5 { right: 1.25rem !important; }
    .sm\:p-4 { padding: 1rem !important; }
    .sm\:text-5xl { font-size: 3rem !important; }
    .sm\:text-3xl { font-size: 1.875rem !important; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

/* Responsive - MD */
@media (min-width: 768px) {
    .md\:flex { display: flex !important; }
    .md\:px-10 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
    .md\:py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
    .md\:py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .md\:text-xl { font-size: 1.25rem !important; }
    .md\:text-3xl { font-size: 1.875rem !important; }
    .md\:text-4xl { font-size: 2.25rem !important; }
    .md\:flex-row { flex-direction: row !important; }
    .md\:items-center { align-items: center !important; }
    .md\:w-2\/5 { width: 40% !important; }
    .md\:w-\[42\%\] { width: 42% !important; }
    .md\:rounded-l-3xl { border-top-left-radius: 1.5rem !important; border-bottom-left-radius: 1.5rem !important; }
    .md\:text-left { text-align: left !important; }
    .md\:hidden { display: none !important; }
    .md\:mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
    .md\:mb-4 { margin-bottom: 1rem !important; }
    .md\:mb-8 { margin-bottom: 2rem !important; }
    .md\:mb-12 { margin-bottom: 3rem !important; }
    .md\:p-6 { padding: 1.5rem !important; }
    .md\:p-8 { padding: 2rem !important; }
    .md\:p-12 { padding: 3rem !important; }
    .md\:text-base { font-size: 1rem !important; }
    .md\:gap-6 { gap: 1.5rem !important; }
}

/* Responsive - LG */
@media (min-width: 1024px) {
    .lg\:flex-row { flex-direction: row !important; }
    .lg\:gap-16 { gap: 4rem !important; }
    .lg\:gap-20 { gap: 5rem !important; }
    .lg\:text-left { text-align: left !important; }
    .lg\:text-5xl { font-size: 3rem !important; }
    .lg\:w-1\/2 { width: 50% !important; }
    .lg\:w-\[48\%\] { width: 48% !important; }
    .lg\:justify-end { justify-content: flex-end !important; }
    .lg\:self-start { align-self: flex-start !important; }
    .lg\:block { display: block !important; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .lg\:p-16 { padding: 4rem !important; }
}

/* Responsive - XL */
@media (min-width: 1280px) {
    .xl\:text-6xl { font-size: 3.75rem !important; }
    .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
}

/* Dark mode support */
[data-theme="dark"] .dark\:bg-background-dark,
[data-theme="dark"] .dark\:bg-\[#1E293B\],
[data-theme="dark"] .dark\:bg-\[#020617\] { background-color: inherit !important; }
[data-theme="dark"] .dark\:text-white,
[data-theme="dark"] .dark\:text-gray-100,
[data-theme="dark"] .dark\:text-gray-200,
[data-theme="dark"] .dark\:text-gray-300,
[data-theme="dark"] .dark\:text-gray-400,
[data-theme="dark"] .dark\:text-gray-500 { color: inherit !important; }
[data-theme="dark"] .dark\:border-\[#334155\],
[data-theme="dark"] .dark\:border-\[#1E293B\],
[data-theme="dark"] .dark\:border-gray-700 { border-color: inherit !important; }
/* Classes adicionais específicas */
.text-\[20px\] { font-size: 20px !important; }
.text-\[32px\] { font-size: 32px !important; }
.border-y { border-top-width: 1px !important; border-bottom-width: 1px !important; }
.bg-blue-50 { background-color: #eff6ff !important; }
.text-blue-700 { color: #1d4ed8 !important; }
.truncate { overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; }
.min-w-\[84px\] { min-width: 84px !important; }
.cursor-pointer { cursor: pointer !important; }

/* Links que funcionam como botões */
a.no-underline {
    text-decoration: none !important;
    display: inline-flex !important;
}
a.no-underline:hover {
    text-decoration: none !important;
}
