diff --git a/.Jules/palette.md b/.Jules/palette.md
new file mode 100644
index 0000000..5df04f2
--- /dev/null
+++ b/.Jules/palette.md
@@ -0,0 +1,3 @@
+## 2025-01-29 - [Spanish Linguistic Quality & Tooltip Foundation]
+**Learning:** Found a systemic pattern of missing Spanish accents (tildes) in button labels, ARIA labels, and form fields, which negatively impacts professionalism and screen reader pronunciation. Also discovered that `TooltipProvider` was missing from the global layout, preventing the use of accessible tooltips.
+**Action:** Always verify linguistic correctness in Spanish (check common words like 'Mañana', 'más', 'descripción', 'Título') and ensure `TooltipProvider` is available at the root level before implementing new tooltips.
diff --git a/frontend/app/layout.tsx b/frontend/app/layout.tsx
index 242af68..3b9b6d0 100644
--- a/frontend/app/layout.tsx
+++ b/frontend/app/layout.tsx
@@ -5,6 +5,7 @@ import "./globals.css";
import { Toaster } from "@/components/ui/toaster";
import { ThemeProvider } from "@/components/theme-provider";
import { PWAProvider } from "@/components/pwa";
+import { TooltipProvider } from "@/components/ui/tooltip";
const inter = Inter({ subsets: ["latin"] });
@@ -79,9 +80,11 @@ export default function RootLayout({
enableSystem
disableTransitionOnChange
>
- {children}
-
-
+
+ {children}
+
+
+