-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrotas.html
More file actions
94 lines (88 loc) · 4.06 KB
/
rotas.html
File metadata and controls
94 lines (88 loc) · 4.06 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
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Rotas — Jaisson Logistics</title>
<meta name="description" content="Rotas Itapoá → Los Angeles: escolha entre tempo e custo." />
<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 -->
<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">Containers</a></li>
<li><a href="frota.html">Frota</a></li>
<li><a href="portos.html">Portos</a></li>
<li><a href="rotas.html" aria-current="page">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>
<main class="page page-routes">
<section class="container page-head">
<h1>Rotas</h1>
<p class="sub">Itapoá → Los Angeles</p>
</section>
<section class="container routes-grid">
<!-- Canal do Panamá -->
<article class="route-card">
<div class="route-images">
<figure class="portrait" style="--ph:url('https://i.ibb.co/wZ3P1m0b/Screenshot-1292.png')">
<figcaption>Via Canal do Panamá</figcaption>
</figure>
<figure class="landscape" style="--ph:url('https://nautiluslive.org/sites/default/files/styles/facebook_open_graph/public/images/2015-05/panama_canal_map_en.png?itok=QzpeNViM')"></figure>
</div>
<p class="route-desc">
Rota mais curta, porém com custos de pedágio e longas filas. Faz a travessia de um oceano para o outro por eclusas e janelas de passagem programadas.
</p>
</article>
<!-- Cabo Horn -->
<article class="route-card">
<div class="route-images">
<figure class="portrait" style="--ph:url('https://i.ibb.co/Q37sghwZ/Screenshot-1293.png')">
<figcaption>Via Cabo Horn</figcaption>
</figure>
<figure class="landscape" style="--ph:url('https://cdn.sanity.io/images/38m5o3fc/production/d087364d3abe6d2a71bb1c0412e8fab5ed72cd81-1280x744.jpg')"></figure>
</div>
<p class="route-desc">
Alternativa sem pedágio e sem filas, porém mais longa e com águas agitadas. Faz a travessia de um oceano para o outro contornando o extremo sul da América do Sul.
</p>
</article>
</section>
</main>
<!-- Footer -->
<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>