/*Toda a Page*/ *{ margin: 0; padding: 0; box-sizing: border-box; } /*Cabeçario*/ header{ background: black; width: 100%; display: flex; align-items: center; justify-content: center; padding: 29px 0px; } .logom3{ display:block; } /*Parte01, o banner principal*/ .imgbanner{ display: block; width: 100%; } .imgbannerpq{ display: none; } /*Parte2,Parte2, escrito com imagem dos 3 computador*/ .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; } /*Parte3, os 3 caixotes*/ .tdscaixotes{ display: grid; grid-template-columns: repeat(3, max-content); gap: 21px; justify-content: center; background: #FFFFFF; } .cadacaixote{ display: flex; flex-direction: column; align-items: center; width: 350px; margin-bottom: 80px; margin-top: 178px; box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23); } .imgcaixote{ padding: 46px 124px 38px; display: block; margin-bottom: px; } .legendcaixote{ padding: 0px 25px 28px; font-family: 'Inter'; font-weight: 400; font-size: 16px; line-height: 24px; text-align: center; color: black; } /*Parte4, imagens notebook*/ /*Modificações para os Varios tamanhos de tela */ @media screen and (max-width: 1024px) { /*Parte01, o banner principal*/ .imgbanner{ display: none; } .imgbannerpq{ display: block; width: 100%; } /*Parte 02*,Parte2, escrito com imagem dos 3 computador*/ .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; width: 240px; } /*Parte3,os 3 caixotes*/ /*Parte4, imagens notebook*/ }