diff --git a/BRAND_GUIDELINES.md b/BRAND_GUIDELINES.md
new file mode 100644
index 0000000..53dfa8b
--- /dev/null
+++ b/BRAND_GUIDELINES.md
@@ -0,0 +1,28 @@
+# Brand Guidelines
+
+## Visual Language: "Modern Blueprint"
+The website follows a "Modern Blueprint" aesthetic, characterized by:
+- **Grid-based layouts**: Consistent use of 60px grids.
+- **Sharp Corners**: All containers, input fields, and buttons MUST have square corners (`rounded-none`).
+- **Precision Borders**: Use 2px borders (`border-2`) for primary elements.
+- **High Contrast**: Dark backgrounds with vibrant accent colors (Brilliant Blue).
+
+## Components
+
+### Buttons
+All buttons must follow these rules:
+1. **Square Corners**: Always use `rounded-none`.
+2. **Outlined by Default**: Buttons should have a 2px border and transparent background.
+3. **Filled on Hover**: On hover, the button should fill with the accent color and text should change color for contrast.
+4. **Typography**: Bold, often uppercase with wide tracking for a technical look.
+
+### Input Fields
+- **Corners**: Always `rounded-none`.
+- **Borders**: 2px border (`border-2`).
+- **Interaction**: Highlight border color on focus.
+
+## Color Palette
+Defined in `src/index.css`.
+- **Primary**: Brilliant Blue (#0b5ef3) - `hsl(221 91% 50%)`
+- **Background**: Off-white (#edeceb) - `hsl(30 14% 93%)`
+- **Foreground**: Dark Navy (#161B24) - `hsl(217 57% 13%)`
diff --git a/public/locales/en/common.json b/public/locales/en/common.json
index df401f0..4e4c6f3 100644
--- a/public/locales/en/common.json
+++ b/public/locales/en/common.json
@@ -39,8 +39,7 @@
"line1": "Transform Your",
"line2": "Digital Presence",
"description": "I create innovative and cutting-edge digital products, developing personalized solutions, websites, and extraordinary applications that offer unique experiences and maximize success in the market.",
- "ctaPrimary": "Start Your Project",
- "ctaSecondary": "Learn More"
+ "ctaPrimary": "Start Your Project"
},
"services": {
"title": "What I can do ",
@@ -126,7 +125,6 @@
"line2": "Ordosgoitty",
"description": "Frontend Developer, Full Stack Engineer, and passionate about software engineering.",
"ctaPrimary": "Start Your Project",
- "ctaSecondary": "Learn More",
"intro": "Hi, I'm Jesus Ordosgoitty. I design and build fast, accessible, and scalable digital products. This page is coming soon."
},
"experience": {
diff --git a/public/locales/es/common.json b/public/locales/es/common.json
index 2d6f796..a155c7d 100644
--- a/public/locales/es/common.json
+++ b/public/locales/es/common.json
@@ -39,8 +39,7 @@
"line1": "Transforma tu",
"line2": "presencia Digital",
"description": "Creo productos digitales innovadores y de vanguardia, desarrollando soluciones personalizadas, sitios web y aplicaciones extraordinarias que ofrecen experiencias únicas y maximizan el éxito en el mercado.",
- "ctaPrimary": "Comenzar tu Proyecto",
- "ctaSecondary": "Saber Más"
+ "ctaPrimary": "Comenzar tu Proyecto"
},
"services": {
"title": "Lo que puedo hacer ",
@@ -126,7 +125,6 @@
"line2": "Ordosgoitty",
"description": "Desarrollador Frontend, Ingeniero Full Stack y apasionado por la ingeniería de software.",
"ctaPrimary": "Comenzar tu Proyecto",
- "ctaSecondary": "Saber Más",
"intro": "Hola, soy Jesús Ordosgoitty. Diseño y desarrollo productos digitales rápidos, accesibles y escalables. Esta página estará disponible pronto."
},
"experience": {
diff --git a/src/components/AvailabilityBadge.astro b/src/components/AvailabilityBadge.astro
index 3451527..91dc8ed 100644
--- a/src/components/AvailabilityBadge.astro
+++ b/src/components/AvailabilityBadge.astro
@@ -16,7 +16,7 @@ const labels = {
const currentLabels = lang === 'es' ? labels.es : labels.en;
---
-