-
Notifications
You must be signed in to change notification settings - Fork 0
/
asesoria-farmaceutica.html
166 lines (162 loc) · 3.98 KB
/
asesoria-farmaceutica.html
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
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Asesoría Farmacéutica</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap">
<style>
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
}
/* Header */
header {
background-color: #00b4d8;
color: white;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
z-index: 10;
}
.logo {
font-size: 24px;
font-weight: 500;
}
nav {
display: flex;
}
nav a {
color: white;
margin-left: 20px;
text-decoration: none;
font-weight: 500;
}
/* Menú desplegable en móvil */
.menu-icon {
display: none;
font-size: 30px;
cursor: pointer;
}
@media screen and (max-width: 768px) {
nav {
display: none;
flex-direction: column;
width: 100%;
position: absolute;
top: 60px;
left: 0;
background-color: #00b4d8;
padding: 20px;
}
nav a {
margin-left: 0;
margin-bottom: 15px;
}
.menu-icon {
display: block;
}
nav.show {
display: flex;
}
}
/* Hero Image */
.hero-image {
width: 100%;
height: auto;
display: block;
position: relative;
z-index: 1;
}
/* Content Section */
.content-section {
padding: 20px;
background: #f9f9f9;
}
.info-grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.info-item {
flex: 1 1 calc(33.333% - 20px);
background: white;
padding: 15px;
border: 1px solid #ddd;
border-radius: 5px;
text-align: center;
}
.info-item img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
.btn-primary {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #00b4d8;
color: white;
text-decoration: none;
border-radius: 5px;
}
footer {
background-color: #00b4d8;
color: white;
text-align: center;
padding: 10px;
}
</style>
</head>
<body>
<header>
<div class="logo">SANA SANA</div>
<nav>
<a href="index.html">Inicio</a>
<a href="muebles-melamina.html">Muebles de Melamina</a>
<a href="mision-vision.html">¿Por qué elegirnos?</a>
<a href="capacitaciones-certificadas.html">Capacitaciones certificadas</a>
</nav>
<div class="menu-icon" onclick="toggleMenu()">☰</div>
</header>
<img src="asesoria.jpg" alt="Asesoría Farmacéutica" class="hero-image">
<section class="content-section">
<h2>Nuestros Servicios</h2>
<div class="info-grid">
<div class="info-item">
<img src="cumpli.jpg" alt="Cumplimiento Normativo">
<h3>Cumplimiento Normativo</h3>
<p>Te aseguramos que tu negocio cumple con las leyes y normativas vigentes.</p>
</div>
<div class="info-item">
<img src="audi.jpg" alt="Auditorías">
<h3>Auditorías</h3>
<p>Realizamos auditorías periódicas para garantizar la calidad y el buen manejo de tu farmacia.</p>
</div>
<div class="info-item">
<img src="gesti.jpg" alt="Gestión de Trámites">
<h3>Gestión de Trámites</h3>
<p>Nos encargamos de los trámites legales necesarios para la apertura y operación.</p>
</div>
</div>
<a href="index.html" class="btn-primary">Volver al Inicio</a>
</section>
<footer>
<p>© 2024 SANA SANA. Todos los derechos reservados.</p>
</footer>
<script>
function toggleMenu() {
const nav = document.querySelector('nav');
nav.classList.toggle('show');
}
</script>
</body>
</html