-
Notifications
You must be signed in to change notification settings - Fork 0
/
seguranca.php
114 lines (90 loc) · 4.22 KB
/
seguranca.php
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
<!DOCTYPE HTML>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Segurança</title>
<meta name="author" content="Smartia" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<link rel="shortcut icon" href="static/v3/images/favico.ico">
<link rel="apple-touch-icon-precomposed" href="static/v3/images/layout/icon-ios.png">
<link rel="stylesheet" href="static/v3/styles/reset.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/bootstrap.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/inside.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/common.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/header.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/footer.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/inputs.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/select.css" media="all" />
<!--[if IE 8]>
<script type="text/javascript" src="static/v3/scripts/ie8.min.js"></script>
<![endif]-->
<!-- Typekit -->
<script type="text/javascript" src="//use.typekit.net/sxe8qvx.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script>
var WAIT_FONTS_INTERVAL = 10;
var WAIT_FONTS_TIMEOUT = 10000;
var WAIT_TIME = 0;
function waitFonts() {
WAIT_TIME += WAIT_FONTS_INTERVAL;
var html = document.getElementsByTagName('html')[0];
if (html.className.indexOf('wf-active') > -1 || WAIT_TIME > WAIT_FONTS_TIMEOUT) {
html.className = html.className.replace(/\bwaitfonts\b/,'');
} else {
window.setTimeout(waitFonts, WAIT_FONTS_INTERVAL);
}
}
waitFonts();
</script>
</head>
<body>
<?php include('includes/header.php'); ?>
<div class="page-title">
<div class="container single-page">
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li class="active">Segurança</li>
</ol>
<h1>Segurança</h1>
<a href="#" class="big-simule-button">Simule agora seu seguro</a>
</div>
</div>
<div class="container">
<span class="double-border"></span>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<section class="page-with-aside with-padding institucional">
<h3 class="yellow mb-15">Calcule o valor de seguro online com segurança</h3>
<p>A Smartia é um serviço que trabalha com as tecnologias mais avançadas de proteção de dados para que você possa realizar seus cálculos com tranquilidade e segurança.</p>
<p>Quando você solicita um cálculo, as informações são coletadas e processadas unicamente em nossos servidores e os dados são armazenados em um banco de dados totalmente protegido e sigiloso.</p>
<p>Nós desejamos que você se sinta confortável e seguro de que todas as informações fornecidas estão sendo protegidas com rigoroso cuidado por nosso site, com o objetivo de preservar sua privacidade.</p>
<h4 class="yellow mb-15">Segurança das informações</h4>
<p>Disponibilizamos os seguintes componentes de segurança nos nossos servidores:</p>
<p>
- Barreiras físicas de proteção (Firewall); <br />
- Criptografia avançada; <br />
- Protocolos de autenticação; <br />
- Certificados, assinaturas digitais e selos digitais; <br />
- Conexão segura (SSL) com protocolo HTTPS. Veja exemplos nos principais browsers:
</p>
<p>No Chrome:</p>
<img src="static/v3/images/seguranca-no-chrome.jpg" alt="Segurança no Chrome" />
<p>No Firefox:</p>
<img src="static/v3/images/seguranca-no-firefox.jpg" alt="Segurança no Firefox" />
<p>No Internet Explorer:</p>
<img src="static/v3/images/seguranca-no-internet-explorer.jpg" alt="Segurança no Internet Explorer" />
</section>
<aside class="aside-with-page">
<!-- Sidebar content -->
</aside>
<br />
</div>
</div>
</div>
<?php include('includes/footer.php'); ?>
<?php include('includes/modal.php'); ?>
<?php include('includes/scripts.php'); ?>
</body>
</html>