-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontainers.html
More file actions
123 lines (111 loc) · 4.5 KB
/
containers.html
File metadata and controls
123 lines (111 loc) · 4.5 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
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Containers — Jaisson Logistics</title>
<meta name="description" content="Tipos de contêineres: Dry 20’, Dry 40’ e Reefer 40’. Capacidades, dimensões e volumes." />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="logistics-styles.css" />
<link rel="icon" href="jaisson-logistics-logo-transp.png" />
</head>
<body>
<!-- Header (igual à landing) -->
<header class="site-header">
<div class="container header-inner">
<a class="brand" href="index.html">
<img src="jaisson-logistics-text-transp.png" alt="Jaisson Logistics" width="180" height="28" />
</a>
<input type="checkbox" id="nav-toggle" class="nav-toggle" aria-label="Abrir menu" />
<label for="nav-toggle" class="hamburger" aria-hidden="true">
<span></span><span></span><span></span>
</label>
<nav class="main-nav" aria-label="Principal">
<ul>
<li><a href="index.html#areas">Operações</a></li>
<li><a href="containers.html" aria-current="page">Containers</a></li>
<li><a href="frota.html">Frota</a></li>
<li><a href="portos.html">Portos</a></li>
<li><a href="rotas.html">Rotas</a></li>
<li><a href="rastreamento.html">Rastreamento</a></li>
<li><a href="sobre.html">Sobre</a></li>
<li><a href="esg.html">ESG</a></li>
<li class="sep"></li>
<li>
<a class="github-link" href="https://github.com/JaissonGroup/JaissonLogistics" target="_blank" rel="noopener">GitHub</a>
</li>
</ul>
</nav>
</div>
</header>
<!-- Título da página -->
<main class="page page-containers">
<section class="container page-head">
<h1>Tipos de Contêineres</h1>
</section>
<!-- Cards: um por “andar” -->
<section class="container ct-grid">
<!-- Dry 20 -->
<article class="ct-card">
<div class="ct-media" style="--ph: url('https://i.ibb.co/B5410Hh6/dry20.png')"></div>
<div class="ct-body">
<span class="ct-badge">Setor</span>
<h2>Dry Box 20’</h2>
<ul class="ct-specs">
<li><strong>Capacidade:</strong> 1 TEU | 28 t.</li>
<li><strong>Dimensões externas:</strong> 6,06 m × 2,44 m × 2,59 m.</li>
<li><strong>Volume interno:</strong> 33 m³.</li>
</ul>
</div>
</article>
<!-- Dry 40 -->
<article class="ct-card">
<div class="ct-media" style="--ph: url('https://i.ibb.co/Zps1hfg9/dry40.png')"></div>
<div class="ct-body">
<span class="ct-badge">Setor</span>
<h2>Dry Box 40’</h2>
<ul class="ct-specs">
<li><strong>Capacidade:</strong> 2 TEUs | 28 t.</li>
<li><strong>Dimensões externas:</strong> 12,19 m × 2,44 m × 2,59 m.</li>
<li><strong>Volume interno:</strong> 67 m³.</li>
</ul>
</div>
</article>
<!-- Reefer 40 -->
<article class="ct-card">
<div class="ct-media" style="--ph: url('https://i.ibb.co/q3SJ2KbT/reefer.png')"></div>
<div class="ct-body">
<span class="ct-badge">Setor</span>
<h2>Reefer 40’</h2>
<ul class="ct-specs">
<li><strong>Capacidade:</strong> 2 TEUs | 27 t.</li>
<li><strong>Dimensões externas:</strong> 12,19 m × 2,44 m × 2,59 m.</li>
<li><strong>Volume interno:</strong> 58 m³.</li>
</ul>
</div>
</article>
</section>
</main>
<!-- Footer (igual à landing) -->
<footer class="site-footer">
<div class="container footer-grid">
<div class="f-col">
<strong>JAISSON LOGISTICS</strong>
<p class="f-copy">© 2025. Todos os direitos reservados.</p>
</div>
<nav class="f-nav">
<a href="index.html#areas">Operações</a>
<a href="containers.html">Containers</a>
<a href="frota.html">Frota</a>
<a href="portos.html">Portos</a>
<a href="rotas.html">Rotas</a>
<a href="rastreamento.html">Rastreamento</a>
<a href="esg.html">ESG</a>
<a href="sobre.html">Sobre</a>
</nav>
<p class="f-small">feito com foco em <strong>resultado</strong></p>
</div>
</footer>
</body>
</html>