-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
117 lines (102 loc) · 2.17 KB
/
Copy pathstyles.css
File metadata and controls
117 lines (102 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
:root {
--text: #f7f7f2;
--text-muted: rgba(247, 247, 242, 0.88);
--overlay-top: rgba(18, 17, 14, 0.25);
--overlay-bottom: rgba(18, 17, 14, 0.62);
--cta-bg: #25d366;
--cta-bg-hover: #1fb85a;
--cta-text: #ffffff;
--cta-border: rgba(255, 255, 255, 0.35);
}
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
min-height: 100%;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f3f2ef;
}
.hero {
position: relative;
min-height: 100vh;
display: grid;
align-content: end;
padding: clamp(1.5rem, 3vw, 2.5rem);
background-color: #dcd8d1;
background-image: url("./inicial.jpg"), url("/inicial.jpg"), url("./assets/inicial.jpg"), url("/assets/inicial.jpg");
background-size: cover;
background-position: center;
isolation: isolate;
}
.overlay {
position: absolute;
inset: 0;
z-index: -1;
background: linear-gradient(to bottom, var(--overlay-top), var(--overlay-bottom));
}
.content {
max-width: 40rem;
}
h1 {
margin: 0;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--text);
font-weight: 600;
line-height: 1.05;
font-size: clamp(2rem, 7vw, 4.25rem);
}
h1 span {
display: block;
}
p {
margin-top: 0.85rem;
color: var(--text-muted);
font-size: clamp(0.88rem, 2.2vw, 1rem);
}
.whatsapp-cta {
position: fixed;
right: 1rem;
bottom: 1rem;
z-index: 5;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 3rem;
padding: 0.8rem 1.3rem;
border-radius: 999px;
border: 1px solid var(--cta-border);
background: var(--cta-bg);
color: var(--cta-text);
text-decoration: none;
font-size: 0.95rem;
font-weight: 700;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.whatsapp-cta:hover {
transform: translateY(-1px);
background: var(--cta-bg-hover);
}
.whatsapp-cta:focus-visible {
outline: 3px solid #fff;
outline-offset: 2px;
}
.copyright {
margin-top: 1.5rem;
color: rgba(247, 247, 242, 0.8);
font-size: 0.72rem;
letter-spacing: 0.03em;
}
@media (min-width: 768px) {
.hero {
padding: clamp(2.2rem, 4vw, 3.5rem);
}
.whatsapp-cta {
right: 2rem;
bottom: 2rem;
}
}