-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
159 lines (141 loc) · 3.07 KB
/
Copy pathstyle.css
File metadata and controls
159 lines (141 loc) · 3.07 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/* ================= RESET ================= */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background: #F1EDE4;
color: #64514E;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 24px;
}
/* ================= TÍTULO ================= */
.page-title {
text-align: center;
font-size: 2.0em;
color: #865027;
font-weight: 700;
margin-bottom: 30px;
}.subtitle{
text-align: center;
font-size: 1.9em;
color: #865027;
font-weight: 100PX;
margin-bottom: 30px;
}
/* ================= GRUPO DE IDADE ================= */
.title-age{
font-size: 1.4em;
background: #FFFFFF;
margin-bottom: 9px;
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.age-category {
font-size: 1.1em;
background: #FFFFFF;
border-radius: 22px;
padding: 27px;
margin-bottom: 29px;
box-shadow: 0 10px 25px rgba(134, 80, 39, 0.1);
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.age-category:hover {
transform: translateY(-3px);
box-shadow: 0 14px 30px rgba(134, 80, 39, 0.15);
}
/* ================= LISTA DE FÓRMULAS ================= */
.formula-list {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
/* ================= BOTÃO DA FÓRMULA ================= */
.formula-tag {
background: #FFF7ED;
border: 1.5px solid #DFAB69;
color: #64514E;
padding: 10px 18px;
border-radius: 999px;
font-size: 0.95em;
font-weight: 600;
cursor: pointer;
transition: all 0.25s ease;
white-space: nowrap;
}
.formula-tag:hover {
background: #FBBC5B;
color: #4a2f1b;
transform: translateY(-2px);
}
/* ================= BUSCA ================= */
.search-box {
background: #FFFFFF;
padding: 20px;
border-radius: 18px;
box-shadow: 0 8px 20px rgba(134, 80, 39, 0.08);
margin-bottom: 30px;
}
.search-container {
display: flex;
gap: 12px;
}
#searchInput {
flex: 1;
padding: 14px 18px;
border-radius: 12px;
border: 1.5px solid #DFAB69;
font-size: 15px;
}
#searchInput:focus {
outline: none;
border-color: #FBBC5B;
}
#searchBtn {
padding: 14px 26px;
background: #FBBC5B;
border: none;
border-radius: 12px;
font-weight: 700;
cursor: pointer;
color: #4a2f1b;
}
/* ================= RESPONSIVO ================= */
@media (max-width: 768px) {
.formula-list {
gap: 10px;
}
.search-container {
flex-direction: column;
}
#searchBtn {
width: 100%;
}
}
/* ================= HERO ================= */
.hero {
background: linear-gradient(
rgba(241, 237, 228, 0.85),
rgba(241, 237, 228, 0.95)
),
url("https://images.unsplash.com/photo-1546015720-b8b30df5aa27") center/cover no-repeat;
border-radius: 24px;
padding: 60px 30px;
margin-bottom: 40px;
text-align: center;
}
.hero-text h1 {
font-size: 2.4em;
color: #865027;
margin-bottom: 14px;
}
.hero-text p {
font-size: 1.1em;
color: #6d5a55;
max-width: 600px;
margin: 0 auto;
}