2022-10-09 12:55:41 +00:00
|
|
|
/*Toda a Page*/
|
|
|
|
*{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2022-10-09 19:23:37 +00:00
|
|
|
|
2022-10-09 12:55:41 +00:00
|
|
|
/*Cabeçario*/
|
|
|
|
header{
|
|
|
|
background: black;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 29px 0px;
|
|
|
|
}
|
|
|
|
.logom3{
|
|
|
|
display:block;
|
|
|
|
}
|
2022-10-09 17:08:35 +00:00
|
|
|
|
2022-10-10 14:15:07 +00:00
|
|
|
/*Parte01, o banner principal*/
|
2022-10-09 17:08:35 +00:00
|
|
|
.imgbanner{
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-10-10 14:15:07 +00:00
|
|
|
.imgbannerpq{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Parte2,Parte2, escrito com imagem dos 3 computador*/
|
2022-10-09 19:23:37 +00:00
|
|
|
.parte2{
|
|
|
|
display:flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.tdtextopart2{
|
|
|
|
width: 40%;
|
|
|
|
padding: 73px 0px 0px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items:center ;
|
|
|
|
}
|
|
|
|
.subtitlepart2{
|
|
|
|
font-family: 'Inter';
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
.titlepart2{
|
|
|
|
font-family: 'Inter';
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
|
|
|
line-height: 58px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
.paragpart2{
|
|
|
|
padding: 28px 0px 0px;
|
|
|
|
font-family: 'Inter';
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
.imgparte2{
|
|
|
|
display: block;
|
|
|
|
padding: 73px 0px 0px;
|
|
|
|
}
|
2022-10-09 17:08:35 +00:00
|
|
|
|
2022-10-10 14:15:07 +00:00
|
|
|
/*Parte3, os 3 caixotes*/
|
|
|
|
.tdscaixotes{
|
|
|
|
display: grid;
|
2022-10-10 15:37:44 +00:00
|
|
|
grid-template-columns: repeat(3, 1fr);
|
2022-10-10 14:15:07 +00:00
|
|
|
gap: 21px;
|
|
|
|
justify-content: center;
|
|
|
|
background: #FFFFFF;
|
2022-10-10 15:37:44 +00:00
|
|
|
padding: 178px 414px 80px;
|
2022-10-10 14:15:07 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
.cadacaixote{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2022-10-10 15:37:44 +00:00
|
|
|
width: 99%;
|
2022-10-10 14:15:07 +00:00
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
|
|
|
}
|
|
|
|
.imgcaixote{
|
2022-10-10 15:37:44 +00:00
|
|
|
padding: 46px 0px 38px;
|
2022-10-10 14:15:07 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.legendcaixote{
|
|
|
|
padding: 0px 25px 28px;
|
|
|
|
font-family: 'Inter';
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
text-align: center;
|
|
|
|
color: black;
|
|
|
|
}
|
2022-10-09 17:08:35 +00:00
|
|
|
|
2022-10-10 14:15:07 +00:00
|
|
|
/*Parte4, imagens notebook*/
|
2022-10-09 17:08:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-10-09 12:55:41 +00:00
|
|
|
/*Modificações para os Varios tamanhos de tela */
|
2022-10-09 19:23:37 +00:00
|
|
|
@media screen and (max-width: 1024px)
|
|
|
|
{
|
2022-10-10 14:15:07 +00:00
|
|
|
/*Parte01, o banner principal*/
|
|
|
|
.imgbanner{
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-09 19:23:37 +00:00
|
|
|
|
2022-10-10 14:15:07 +00:00
|
|
|
.imgbannerpq{
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Parte 02*,Parte2, escrito com imagem dos 3 computador*/
|
2022-10-09 19:23:37 +00:00
|
|
|
.tdtextopart2{
|
|
|
|
width: 86%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.subtitlepart2{
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.titlepart2{
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 34px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.paragpart2{
|
|
|
|
padding: 1px 0px 0px;
|
|
|
|
font-family: 'Inter';
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
.imgparte2{
|
|
|
|
display: block;
|
|
|
|
padding: 65px 0px 0px;
|
2022-10-10 14:15:07 +00:00
|
|
|
width: 240px;
|
|
|
|
|
2022-10-09 19:23:37 +00:00
|
|
|
}
|
|
|
|
|
2022-10-10 14:15:07 +00:00
|
|
|
/*Parte3,os 3 caixotes*/
|
2022-10-10 15:37:44 +00:00
|
|
|
.tdscaixotes{
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
gap: 24px;
|
|
|
|
padding: 90px 32px 80px;
|
|
|
|
}
|
|
|
|
.cadacaixote{
|
|
|
|
width: 99%;
|
|
|
|
}
|
|
|
|
.imgcaixote{
|
|
|
|
padding: 46px 0px 38px;
|
|
|
|
display: block;
|
|
|
|
}
|
2022-10-10 14:15:07 +00:00
|
|
|
|
|
|
|
/*Parte4, imagens notebook*/
|
2022-10-09 12:55:41 +00:00
|
|
|
}
|