-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassistente.html
93 lines (83 loc) · 3.61 KB
/
assistente.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Keywords" content="Seguros, Vida, Saúde, Assistências, Astuta">
<meta name="Description" content="Proteja o que você ama, de forma simples e rápida com a Astuta Seguros">
<title>Astuta Seguros - Faça sua cotação!</title>
<!-- FAV -->
<link rel="icon" type="image/png" href="images/favi.png">
<!-- CSS -->
<link rel="stylesheet" href="styles/global.css">
<link rel="stylesheet" href="styles/nav.css">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/card.css">
<!-- icones -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- Hotjar Tracking Code for Portal Astuta -->
<script>
(function (h, o, t, j, a, r) {
h.hj = h.hj || function () { (h.hj.q = h.hj.q || []).push(arguments) };
h._hjSettings = { hjid: 5066734, hjsv: 6 };
a = o.getElementsByTagName('head')[0];
r = o.createElement('script'); r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
</script>
</head>
<body>
<!-- Menu -->
<header class="cabecalho">
<a href="index.html"><img src="images/ASTUTA_branco.png" alt="Marca" class="logo"></a>
<input type="checkbox" id="check">
<label for="check" class="icons">
<i class='bx bx-menu' id="menu_icon"></i>
<i class='bx bx-x' id="close_icon"></i>
</label>
<nav class="navigation">
<a href="seguros.html" style="--i:0;">Seguros</a>
<a href="sobre.html" style="--i:1;">Sobre</a>
<a href="assistente.html" style="--i:2;">Assistente</a>
<a href="faq.html" style="--i:3;">FAQs</a>
<a href="faleconosco.html" style="--i:4;">Contato</a>
</nav>
</header>
<div id="box_perguntas">
<div id="questionario">
<div class="chamada">
Responda as questões abaixo
</div>
<div class="question" id="question1">
<p>Qual a sua Idade?</p>
<input type="text" id="answer1" placeholder="|">
</div>
<div class="question" id="question2" style="display: none;">
<p>Qual o seu estado civil?</p>
<input type="text" id="answer2" placeholder="|">
</div>
<div class="question" id="question3" style="display: none;">
<p>Onde você mora?</p>
<input type="text" id="answer3" placeholder="|">
</div>
<div class="question" id="question4" style="display: none;">
<p>Quantas pessoas dependem de você?</p>
<input type="text" id="answer4" placeholder="|">
</div>
<button id="next">Avançar</button>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script/perguntas.js"></script>
<div id="foto_lateral">
<img src="images/homem_1.png" alt="foto_familia">
</div>
</div>
<div class="aviso">
<p>Aviso: Todo o conteúdo deste site é meramente ilustrativo e não possui vínculo com qualquer organização. As
informações aqui apresentadas são de caráter informativo e não devem ser consideradas como aconselhamento
profissional ou institucional.</p>
</div>
</body>
</html>