As cores devem ser escuras.
Browse files- index.html +3 -4
- style.css +22 -24
index.html
CHANGED
|
@@ -48,8 +48,8 @@
|
|
| 48 |
|
| 49 |
<main>
|
| 50 |
<!-- Hero Section -->
|
| 51 |
-
<section class="relative bg-gradient-to-r from-primary-
|
| 52 |
-
|
| 53 |
<div class="max-w-3xl mx-auto text-center">
|
| 54 |
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6 executive-heading">
|
| 55 |
Executive Assistance with Elegance & Efficiency
|
|
@@ -201,9 +201,8 @@
|
|
| 201 |
<executive-timeline></executive-timeline>
|
| 202 |
</div>
|
| 203 |
</section>
|
| 204 |
-
|
| 205 |
<!-- CTA Section -->
|
| 206 |
-
<section class="py-20 bg-gradient-to-r from-primary-
|
| 207 |
<div class="container mx-auto px-6">
|
| 208 |
<div class="max-w-4xl mx-auto text-center">
|
| 209 |
<h2 class="text-3xl md:text-4xl font-bold mb-6">
|
|
|
|
| 48 |
|
| 49 |
<main>
|
| 50 |
<!-- Hero Section -->
|
| 51 |
+
<section class="relative bg-gradient-to-r from-primary-900 to-primary-700 text-white">
|
| 52 |
+
<div class="container mx-auto px-6 py-24 md:py-32 lg:py-40">
|
| 53 |
<div class="max-w-3xl mx-auto text-center">
|
| 54 |
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6 executive-heading">
|
| 55 |
Executive Assistance with Elegance & Efficiency
|
|
|
|
| 201 |
<executive-timeline></executive-timeline>
|
| 202 |
</div>
|
| 203 |
</section>
|
|
|
|
| 204 |
<!-- CTA Section -->
|
| 205 |
+
<section class="py-20 bg-gradient-to-r from-primary-800 to-primary-600 text-white">
|
| 206 |
<div class="container mx-auto px-6">
|
| 207 |
<div class="max-w-4xl mx-auto text-center">
|
| 208 |
<h2 class="text-3xl md:text-4xl font-bold mb-6">
|
style.css
CHANGED
|
@@ -2,27 +2,26 @@
|
|
| 2 |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
|
| 3 |
/* Color Variables */
|
| 4 |
:root {
|
| 5 |
-
--primary-50: #
|
| 6 |
-
--primary-100: #
|
| 7 |
-
--primary-200: #
|
| 8 |
-
--primary-300: #
|
| 9 |
-
--primary-400: #
|
| 10 |
-
--primary-500: #
|
| 11 |
-
--primary-600: #
|
| 12 |
-
--primary-700: #
|
| 13 |
-
--primary-800: #
|
| 14 |
-
--primary-900: #
|
| 15 |
-
--accent-100: #
|
| 16 |
-
--accent-200: #
|
| 17 |
-
--accent-300: #
|
| 18 |
-
--accent-400: #
|
| 19 |
-
--accent-500: #
|
| 20 |
-
--accent-600: #
|
| 21 |
-
--accent-700: #
|
| 22 |
-
--accent-800: #
|
| 23 |
-
--accent-900: #
|
| 24 |
}
|
| 25 |
-
|
| 26 |
/* Custom scrollbar */
|
| 27 |
::-webkit-scrollbar {
|
| 28 |
width: 8px;
|
|
@@ -30,18 +29,17 @@
|
|
| 30 |
}
|
| 31 |
|
| 32 |
::-webkit-scrollbar-track {
|
| 33 |
-
background: #
|
| 34 |
}
|
| 35 |
|
| 36 |
::-webkit-scrollbar-thumb {
|
| 37 |
-
background: #
|
| 38 |
border-radius: 4px;
|
| 39 |
}
|
| 40 |
|
| 41 |
::-webkit-scrollbar-thumb:hover {
|
| 42 |
-
background: #
|
| 43 |
}
|
| 44 |
-
|
| 45 |
/* Animation classes */
|
| 46 |
.animate-float {
|
| 47 |
animation: float 6s ease-in-out infinite;
|
|
|
|
| 2 |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
|
| 3 |
/* Color Variables */
|
| 4 |
:root {
|
| 5 |
+
--primary-50: #1a1a2e;
|
| 6 |
+
--primary-100: #16213e;
|
| 7 |
+
--primary-200: #0f3460;
|
| 8 |
+
--primary-300: #0d3b66;
|
| 9 |
+
--primary-400: #0a4b78;
|
| 10 |
+
--primary-500: #07689f;
|
| 11 |
+
--primary-600: #0582c7;
|
| 12 |
+
--primary-700: #039be5;
|
| 13 |
+
--primary-800: #0277bd;
|
| 14 |
+
--primary-900: #01579b;
|
| 15 |
+
--accent-100: #1e3d59;
|
| 16 |
+
--accent-200: #1a5276;
|
| 17 |
+
--accent-300: #154360;
|
| 18 |
+
--accent-400: #117a8b;
|
| 19 |
+
--accent-500: #0e6251;
|
| 20 |
+
--accent-600: #0b5345;
|
| 21 |
+
--accent-700: #083d3b;
|
| 22 |
+
--accent-800: #052e2e;
|
| 23 |
+
--accent-900: #031f1f;
|
| 24 |
}
|
|
|
|
| 25 |
/* Custom scrollbar */
|
| 26 |
::-webkit-scrollbar {
|
| 27 |
width: 8px;
|
|
|
|
| 29 |
}
|
| 30 |
|
| 31 |
::-webkit-scrollbar-track {
|
| 32 |
+
background: #1a1a2e;
|
| 33 |
}
|
| 34 |
|
| 35 |
::-webkit-scrollbar-thumb {
|
| 36 |
+
background: #0f3460;
|
| 37 |
border-radius: 4px;
|
| 38 |
}
|
| 39 |
|
| 40 |
::-webkit-scrollbar-thumb:hover {
|
| 41 |
+
background: #07689f;
|
| 42 |
}
|
|
|
|
| 43 |
/* Animation classes */
|
| 44 |
.animate-float {
|
| 45 |
animation: float 6s ease-in-out infinite;
|