* { margin: 0; padding: 0; box-sizing: border-box; } .body { font-family: 'Inter', sans-serif; color: black; } /*CABEƇALHO*/ .header { display: grid; background-color: black; justify-content: center; align-items: center; height: 101px; } /*BANNER PRINCIPAL*/ .imagem-banner-principal { width: 100%; } .imagem-banner-principal-mobile { display: none; } /*TEXTO PRINCIPAL*/ .texto-principal { display: grid; width: 100%; align-items: center; justify-items: center; justify-content: center; padding: 4% 0% 4% 0%; } .titulo1 { font-weight: 400; font-size: 32px; line-height: 39px; } .titulo2 { font-weight: 500; font-size: 48px; line-height: 58px; text-align: center; } .paragrafo-principal { font-weight: 400; font-size: 16px; line-height: 24px; max-width: 53%; margin-top: 28px; text-align: center; } /*RESPONSIVIDADE*/ @media (min-width: 2500px) { .imagem-banner-principal-mobile { display: none; } } @media (max-width: 1024px) { .imagem-banner-principal { display: none; } .imagem-banner-principal-mobile { display: block; width: 100%; } } @media (max-width: 820px) { } @media (max-width: 320px) { }