├── .gitattributes ├── CSS └── style.css ├── README.md ├── contatos.html ├── img ├── 72165b8655e809c1fef7f2291566fab5.jpg ├── MicrosoftTeams-image (1).png ├── MicrosoftTeams-image (2).png ├── MicrosoftTeams-image.png ├── Proa_Tech_Fundo_Zoom.png ├── bx-shopping-bag.svg ├── cooler.jpg ├── daily_07-03.docx ├── firewall.jpg ├── free-office-wallpaper-26001-26685-hd-wallpapers.webp ├── gabinete.webp ├── headset.jpg ├── icons8-monitor-16.png ├── info.jpg ├── insta.png ├── mail.png ├── manun.jpg ├── mini_cabeamento_estruturado.jpg ├── mini_controle_de_internet.jpg ├── mini_manutencao_de_computador.jpg ├── mini_manutencao_hardware.jpg ├── mini_remoaao_virus_pc.jpg ├── mini_winconnection_controle_internet.jpg ├── monitor.webp ├── mouse.jpg ├── nuvem.jpg ├── placa de video.webp ├── placa mãe.webp ├── processador.jpg ├── ram.jpg ├── rede.jpg ├── site.jpg ├── ssd.jpg ├── teclado.webp ├── tecnico.jpg └── whats.png ├── index.html ├── produtos.html └── servicos.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /CSS/style.css: -------------------------------------------------------------------------------- 1 | /* RESET CSS */ 2 | * { 3 | margin: 0; 4 | padding: 0; 5 | font-size: 100%; 6 | font-family: "Open Sans", sans-serif; 7 | font-weight: normal; 8 | box-sizing: border-box; 9 | border: none; 10 | outline: none; 11 | } 12 | 13 | img { 14 | max-width: 100%; 15 | } 16 | 17 | ul { 18 | list-style: none; 19 | } 20 | 21 | a { 22 | text-decoration: none; 23 | } 24 | 25 | h2 { 26 | font-size: 1.5em; 27 | color: #333; 28 | } 29 | 30 | p { 31 | font-size: 1em; 32 | color: #777; 33 | } 34 | 35 | .cabecalho { 36 | width: 100%; 37 | float: left; 38 | padding: 50px 8%; 39 | background-color: #13c7ae; 40 | } 41 | 42 | .logo a { 43 | width: 221px; 44 | height: 48px; 45 | float: left; 46 | background: url(../img/MicrosoftTeams-image.png) no-repeat; 47 | font-size: 0; 48 | } 49 | 50 | .cabecalho form { 51 | width: 30%; 52 | float: right; 53 | } 54 | 55 | .cabecalho form input[type="text"] { 56 | width: 85%; 57 | float: left; 58 | padding: 15px 10px 15px 10px; 59 | border-radius: 12px 0 0 12px; 60 | } 61 | 62 | .cabecalho button { 63 | width: 15%; 64 | float: right; 65 | padding: 15px 10px; 66 | background-color: #0cae98; 67 | color: #fff; 68 | cursor: pointer; 69 | border-radius: 0 12px 12px 0; 70 | } 71 | 72 | .menu { 73 | width: 100%; 74 | float: left; 75 | background-color: #111; 76 | padding: 18px 8%; 77 | } 78 | 79 | .menu li { 80 | float: left; 81 | } 82 | 83 | .menu li a { 84 | color: #9d9d9d; 85 | margin-right: 25px; 86 | } 87 | 88 | .menu li a:hover { 89 | color: #fff; 90 | } 91 | 92 | .social-icons { 93 | float: right; 94 | } 95 | 96 | .social-icons a { 97 | color: #fff; 98 | float: left; 99 | margin-left: 12px; 100 | } 101 | 102 | .btn-facebook:hover { 103 | color: #3b5998; 104 | } 105 | 106 | .btn-twitter:hover { 107 | color: #54a4d6; 108 | } 109 | 110 | .btn-google:hover { 111 | color: #d73d32; 112 | } 113 | 114 | .principal { 115 | width: 100%; 116 | float: left; 117 | padding: 20px 8%; 118 | } 119 | .sobre { 120 | width: 70%; 121 | float: left; 122 | padding: 0 20px 20px 0; 123 | } 124 | .sobre h2 { 125 | margin-bottom: 15px; 126 | } 127 | .sobre img { 128 | width: 50%; 129 | float: left; 130 | border-radius: 5px; 131 | margin: 0 15px 15px 0; 132 | } 133 | .sobre p { 134 | text-align: justify; 135 | } 136 | 137 | .onde-estamos { 138 | width: 30%; 139 | float: right; 140 | padding: 10px 20px; 141 | background-color: #f5f5f5; 142 | border-radius: 5px; 143 | } 144 | .onde-estamos h2 { 145 | margin-bottom: 5px; 146 | } 147 | .onde-estamos iframe { 148 | width: 100%; 149 | height: 250px; 150 | margin: 20px 0px; 151 | } 152 | .onde-estamos li { 153 | color: #777; 154 | margin-bottom: 10px; 155 | } 156 | .onde-estamos i { 157 | margin-right: 5px; 158 | } 159 | 160 | .newsletter { 161 | width: 100%; 162 | float: left; 163 | background-color: #111; 164 | padding: 50px 8%; 165 | } 166 | .newsletter h3 { 167 | font-size: 1.8em; 168 | color: #fff; 169 | 170 | } 171 | .newsletter p { 172 | font-size: 1.2em; 173 | color: #fff; 174 | } 175 | .newsletter form { 176 | width: 100%; 177 | float: left; 178 | margin-top: 10px; 179 | } 180 | .newsletter form input { 181 | width: 40%; 182 | margin-right: 1%; 183 | padding: 15px 10px; 184 | border: 1px solid #fff; 185 | border-radius: 5px; 186 | color: #fff; 187 | background-color: initial; 188 | float: left; 189 | } 190 | .newsletter button { 191 | width: 18%; 192 | margin-top: 6px; 193 | background-color: #0cae98; 194 | border: 1px solid #ffffff; 195 | padding: 15px 10px; 196 | border-radius: 5px; 197 | position: flex; 198 | cursor: pointer; 199 | } 200 | .rodape { 201 | width: 100%; 202 | float: left; 203 | background-color: #13c7ae; 204 | padding: 20px 8%; 205 | } 206 | .rodape p { 207 | color: #fff; 208 | } 209 | 210 | /* Formatação dos Produtos */ 211 | 212 | .titulo { 213 | font-size: 1.5rem; 214 | font-weight: 600; 215 | text-align: center; 216 | margin-bottom: 2rem; 217 | background-color: #0cae98; 218 | border-radius: 8px; 219 | color: #fff; 220 | } 221 | 222 | .conteudo { 223 | display: grid; 224 | grid-template-columns: repeat(auto-fit, minmax(220px, auto)); 225 | gap: 1.5rem; 226 | cursor: pointer; 227 | } 228 | 229 | .box { 230 | position: relative; 231 | background-color: #f5f5f5; 232 | box-shadow: #111; 233 | } 234 | 235 | .box:hover { 236 | padding: 10px; 237 | border-radius: 8px; 238 | transition: 0.4s; 239 | background-color: #0cae98; 240 | } 241 | 242 | .produto { 243 | width: 100%; 244 | height: auto; 245 | margin-bottom: 0.5rem; 246 | } 247 | 248 | .titulo-produto { 249 | font-size: 1.1rem; 250 | font-weight: 600; 251 | text-decoration: uppercase; 252 | margin-bottom: 0.5rem; 253 | } 254 | 255 | .preco { 256 | font-weight: 500; 257 | } 258 | 259 | .container { 260 | padding: 20px 8%; 261 | } 262 | 263 | .btn2 { 264 | font-size: 1.2rem; 265 | font-weight: 550; 266 | text-decoration: uppercase; 267 | margin-bottom: 0.5rem; 268 | border-radius: 8px; 269 | size: 15px; 270 | padding: 10px; 271 | background-color: #0cae98; 272 | position: center; 273 | cursor: pointer; 274 | } 275 | 276 | 277 | .box-button{ 278 | position: relative; 279 | } 280 | 281 | .box img{ 282 | border-radius: 8; 283 | } 284 | 285 | .btn3 { 286 | font-size: 1.2rem; 287 | font-weight: 550; 288 | text-decoration: uppercase; 289 | margin-bottom: 0.5rem; 290 | border-radius: 8px; 291 | size: 15px; 292 | padding: 10px; 293 | background-color: #000000; 294 | position: center; 295 | cursor: pointer; 296 | color: #0cae98; 297 | } 298 | 299 | input[type=text], select, textarea { 300 | width: 100%; /* Full width */ 301 | padding: 12px; /* Some padding */ 302 | border: 1px solid #0cae98; /* Gray border */ 303 | border-radius: 8px; /* Rounded borders */ 304 | box-sizing: border-box; /* Make sure that padding and width stays in place */ 305 | margin-top: 6px; /* Add a top margin */ 306 | margin-bottom: 16px; /* Bottom margin */ 307 | resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */ 308 | } 309 | 310 | input[type=submit]:hover { 311 | background-color: #45a049; 312 | } 313 | 314 | .contain { 315 | border-radius: 5px; 316 | background-color: #e4e4e4; 317 | padding: 100px; 318 | 319 | } 320 | 321 | .center{ 322 | text-align: center; 323 | cursor: pointer; 324 | } 325 | 326 | 327 | /* Justify content */ 328 | 329 | 330 | 331 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Projeto02 2 | Projeto de site que vende e oferece serviços de informática. 3 | -------------------------------------------------------------------------------- /contatos.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 20 | Loja de Informática do Obama 21 | 22 | 23 | 24 |
25 |

26 | Loja de informática do Obama 27 |

28 |
29 | 30 | 31 |
32 |
33 | 46 | 47 |
48 |

Fale Conosco

49 |
50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 |
80 | 81 |
82 | 83 | 84 | 85 |
86 | 87 | 88 |
89 | 90 |
91 |

Newsletter

92 |

Receba nossas promoções por e-mail.

93 |
94 | 95 | 96 | 97 |
98 |
99 | 102 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /img/72165b8655e809c1fef7f2291566fab5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/72165b8655e809c1fef7f2291566fab5.jpg -------------------------------------------------------------------------------- /img/MicrosoftTeams-image (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/MicrosoftTeams-image (1).png -------------------------------------------------------------------------------- /img/MicrosoftTeams-image (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/MicrosoftTeams-image (2).png -------------------------------------------------------------------------------- /img/MicrosoftTeams-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/MicrosoftTeams-image.png -------------------------------------------------------------------------------- /img/Proa_Tech_Fundo_Zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/Proa_Tech_Fundo_Zoom.png -------------------------------------------------------------------------------- /img/bx-shopping-bag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/cooler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/cooler.jpg -------------------------------------------------------------------------------- /img/daily_07-03.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/daily_07-03.docx -------------------------------------------------------------------------------- /img/firewall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/firewall.jpg -------------------------------------------------------------------------------- /img/free-office-wallpaper-26001-26685-hd-wallpapers.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/free-office-wallpaper-26001-26685-hd-wallpapers.webp -------------------------------------------------------------------------------- /img/gabinete.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/gabinete.webp -------------------------------------------------------------------------------- /img/headset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/headset.jpg -------------------------------------------------------------------------------- /img/icons8-monitor-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/icons8-monitor-16.png -------------------------------------------------------------------------------- /img/info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/info.jpg -------------------------------------------------------------------------------- /img/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/insta.png -------------------------------------------------------------------------------- /img/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/mail.png -------------------------------------------------------------------------------- /img/manun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/manun.jpg -------------------------------------------------------------------------------- /img/mini_cabeamento_estruturado.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/mini_cabeamento_estruturado.jpg -------------------------------------------------------------------------------- /img/mini_controle_de_internet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/mini_controle_de_internet.jpg -------------------------------------------------------------------------------- /img/mini_manutencao_de_computador.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/mini_manutencao_de_computador.jpg -------------------------------------------------------------------------------- /img/mini_manutencao_hardware.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/mini_manutencao_hardware.jpg -------------------------------------------------------------------------------- /img/mini_remoaao_virus_pc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/mini_remoaao_virus_pc.jpg -------------------------------------------------------------------------------- /img/mini_winconnection_controle_internet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/mini_winconnection_controle_internet.jpg -------------------------------------------------------------------------------- /img/monitor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/monitor.webp -------------------------------------------------------------------------------- /img/mouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/mouse.jpg -------------------------------------------------------------------------------- /img/nuvem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/nuvem.jpg -------------------------------------------------------------------------------- /img/placa de video.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/placa de video.webp -------------------------------------------------------------------------------- /img/placa mãe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/placa mãe.webp -------------------------------------------------------------------------------- /img/processador.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/processador.jpg -------------------------------------------------------------------------------- /img/ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/ram.jpg -------------------------------------------------------------------------------- /img/rede.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/rede.jpg -------------------------------------------------------------------------------- /img/site.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/site.jpg -------------------------------------------------------------------------------- /img/ssd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/ssd.jpg -------------------------------------------------------------------------------- /img/teclado.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/teclado.webp -------------------------------------------------------------------------------- /img/tecnico.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/tecnico.jpg -------------------------------------------------------------------------------- /img/whats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaizen2ba2/LojaDoObama-HTML-CSS/5f50c185a602d8b388737309e61796c9cefe1774/img/whats.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 20 | Loja de Informática do Obama 21 | 22 | 23 | 24 |
25 |

26 | Loja de informática do Obama 27 |

28 |
29 | 30 | 31 |
32 |
33 | 49 |
50 |
51 |

Sobre nós

52 | Imagem de uma Loja de Informática com três pessoas, sendo dois homens e uma mulher. Mulher vestida com social clara sendo abraçada por homem branco com camisa social azul escuro e homem vestido de camisa social branca com perfil de vendedor 54 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Nostrum maiores porro sunt voluptate dolorem 55 | tenetur, quaerat suscipit reprehenderit facilis minima sequi provident, non delectus enim veritatis 56 | necessitatibus natus ea unde! 57 | Hic minima quibusdam in nesciunt eius quod sapiente consequatur corporis dolore eos eum similique magnam 58 | fugit amet nam quae dolor, atque distinctio eveniet necessitatibus, ullam rem eligendi? Facere, quae 59 | reprehenderit!

60 |

Lorem ipsum dolor, sit amet consectetur adipisicing elit. Sequi dolores, velit accusamus doloribus dicta 61 | magnam aspernatur nulla impedit maiores placeat minima accusantium facere ipsum aliquid qui dolor enim 62 | laudantium voluptatibus!

63 |

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Corporis aspernatur nobis esse quisquam dignissimos, 64 | optio doloribus assumenda quis magni rem molestias ea veniam ipsam voluptatibus eaque est dicta temporibus 65 | ullam.

66 |

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Molestiae placeat ut quaerat, nostrum nulla aliquid, 67 | reiciendis laboriosam quidem maxime laborum cumque amet illum commodi iste consequatur pariatur repudiandae 68 | neque repellat?

69 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Vel vero accusamus voluptatem illo quos aperiam 70 | expedita fuga a architecto! Error quasi obcaecati rem doloremque quaerat in harum odit dolorem neque!

71 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Vel vero accusamus voluptatem illo quos aperiam 72 | expedita fuga a architecto! Error quasi obcaecati rem doloremque quaerat in harum odit dolorem neque!

73 |
74 | 87 |
88 |
89 |

Newsletter

90 |

Receba nossas promoções por e-mail.

91 |
92 | 93 | 94 | 95 |
96 |
97 | 100 | 101 | 102 | 103 | -------------------------------------------------------------------------------- /produtos.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 20 | Loja de Informática do Obama 21 | 22 | 23 | 24 |
25 |

26 | Loja de informática do Obama 27 |

28 |
29 | 30 | 31 |
32 |
33 | 46 | 47 |
48 |

Periféricos e Peças de Pc

49 |
50 | 51 |
52 | 53 |

Placa de Vídeo RTX 3060 Ti

54 | R$2799,99 55 | 56 |
57 | 58 |
59 | 60 |

61 | Placa Mãe Gigabyte H410M

62 | R$590,00 63 | 64 |
65 | 66 |
67 | 68 |

Redragon Impact RGB

69 | R$115,99 70 | 71 |
72 | 73 |
74 | 75 |

Monitor Gamer Acer Nitro

76 | R$970,90 77 | 78 |
79 | 80 |
81 | 82 |

Processador Intel Core-I3

83 | R$1235,36 84 | 85 |
86 | 87 |
88 | 89 |

Fonte Atx Pc 750w

90 | R$319,00 91 | 92 |
93 | 94 |
95 | 96 |

Headset Gamer HyperX Cloud

97 | R$499,99 98 | 99 |
100 | 101 |
102 | 103 |

Teclado Gamer Mecânico HP

104 | R$399,90 105 | 106 |
107 |
108 | 109 |

SSD 120 GB Gigabyte

110 | R$127,99 111 | 112 |
113 | 114 |
115 | 116 |

Memória RAM Corsair

117 | R$560,70 118 | 119 |
120 | 121 |
122 | 123 |

Water Cooler ML 240L V2

124 | R$840,00 125 | 126 |
127 | 128 |
129 | 130 |

Gabinete Gamer PCFort Lines

131 | R$210,80 132 | 133 |
134 | 135 |
136 | 137 |
138 | 139 |
140 |
141 | 142 |
143 |

Newsletter

144 |

Receba nossas promoções por e-mail.

145 |
146 | 147 | 148 | 149 |
150 |
151 | 154 | 155 | 156 | 157 | -------------------------------------------------------------------------------- /servicos.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 20 | Loja de Informática do Obama 21 | 22 | 23 | 24 |
25 |

26 | Loja de informática do Obama 27 |

28 |
29 | 30 | 31 |
32 |
33 | 46 | 47 |
48 |

Prestação de Serviços

49 |
50 | 51 |
52 | 53 |

Backup em Nuvem

54 | 55 |
56 | 57 |
58 | 59 |

Suportre em Informática

60 | 61 |
62 | 63 |
64 | 65 |

Proteção de Rede

66 | 67 |
68 | 69 |
70 | 71 |

Cabeamento Estruturado

72 | 73 |
74 | 75 |
76 | 77 |

Manuntenção de Pc's

78 | 79 |
80 | 81 |
82 | 83 |

Remoção de Vírus

84 | 85 |
86 | 87 |
88 | 89 |

Manuntenção de Rede

90 | 91 |
92 | 93 |
94 | 95 |

Suporte Técnico

96 | 97 |
98 |
99 | 100 |

Desenvolvimento de Sites

101 | 102 |
103 | 104 |
105 | 106 |

Winconnection

107 | 108 |
109 | 110 |
111 | 112 |

Manuntenção de Hardware

113 | 114 |
115 | 116 |
117 | 118 |

Controle de Internet

119 | 120 |
121 | 122 | 123 |
124 |
125 | 126 |
127 |

Newsletter

128 |

Receba nossas promoções por e-mail.

129 |
130 | 131 | 132 | 133 |
134 |
135 | 138 | 139 | 140 | 141 | --------------------------------------------------------------------------------