-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
120 lines (109 loc) · 2.28 KB
/
Copy pathestilo.css
File metadata and controls
120 lines (109 loc) · 2.28 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
118
119
120
/* Fonte principal */
body {
font-family: 'Segoe UI', Roboto, sans-serif;
background-color: #0a0a0a;
color: #f5f5f5;
margin: 0;
padding: 0;
}
/* Estilo da seção principal */
.custom-hero {
background: linear-gradient(160deg, #0a0a0a 60%, #111111 100%);
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 1.5rem;
}
/* Título */
.main-title {
color: #ffc300; /* Dourado vibrante */
font-size: 3rem;
margin-bottom: 1rem;
}
/* Subtítulo */
.main-subtitle {
color: #cfcfcf;
font-size: 1.5rem;
margin-bottom: 2rem;
}
/* Botão principal dourado */
.custom-button {
background-color: #ffc300;
color: #0a0a0a;
border: none;
transition: all 0.3s ease;
font-weight: bold;
padding: 1rem 2rem;
font-size: 1.25rem;
border-radius: 6px;
cursor: pointer;
text-decoration: none;
display: inline-block;
}
.custom-button:hover,
.custom-button:focus {
background-color: #ffb800; /* dourado escuro */
box-shadow: 0 0 12px #ffc300;
transform: scale(1.05);
outline: none;
color: #0a0a0a;
}
/* Rodapé */
.footer {
background-color: #0a0a0a;
padding: 1rem 0;
color: #888;
font-size: 0.875rem;
border-top: 1px solid #222;
text-align: center;
}
/* Botões sociais personalizados flat/clean */
.social-links {
margin-top: 1.5rem;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}
.social-links .button {
background-color: transparent;
color: #ffc300;
border: 2px solid #ffc300;
font-weight: 600;
transition: background-color 0.3s, color 0.3s, transform 0.3s;
border-radius: 6px;
padding: 0.5rem 1rem;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
min-width: 130px;
font-size: 1rem;
text-decoration: none;
cursor: pointer;
}
.social-links .button:hover,
.social-links .button:focus {
background-color: #ffc300;
color: #0a0a0a;
box-shadow: none;
transform: scale(1.05);
outline: none;
text-decoration: none;
}
.social-links .button .icon {
font-size: 1.3em;
display: flex;
align-items: center;
justify-content: center;
}
/* Responsividade para telas pequenas */
@media (max-width: 480px) {
.social-links .button {
min-width: 100%;
font-size: 1.1rem;
padding: 0.75rem 0;
justify-content: center;
}
}