first commit

This commit is contained in:
2026-02-10 17:51:21 +01:00
parent 079aa1da58
commit db00c3ec89
25 changed files with 1536 additions and 99 deletions

View File

@@ -1,26 +1,56 @@
/* src/app/globals.css */
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
}
@theme {
/* Paleta Surtilatino */
--color-accent: #5D9C59;
--color-dark: #1a1a1a;
--color-light: #f8f8f8;
--color-light-hover: #f0f0f0;
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
/* Bordes Boutique */
--radius-huge: 2rem;
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
/* Animaciones */
--animate-reveal: reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1);
--animate-fade-up: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
@keyframes reveal {
from { transform: scale(1); }
to { transform: scale(1.08); }
}
@keyframes fade-up {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
--animate-marquee: marquee 25s linear infinite;
@keyframes marquee {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
/* Clases utilitarias personalizadas */
@layer utilities {
.text-balance {
text-wrap: balance;
}
/* Ocultar scrollbar pero permitir scroll */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
}
@layer base {
body {
@apply bg-white text-dark antialiased selection:bg-accent selection:text-white;
}
}