/*resets da página*/ *{ margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; color: #000000; } /*Definindo estilos gerais*/ .bottom-aside, .galeria-photo, .galeria-content, .content, .top-infocard, .page-banner-principal-mobile, .page-logo, .page-banner-principal-desktop{ width: 100%; } /*Estilo menu/header*/ .page-logo{ display: flex; align-items: center; justify-content: center; padding: 29px 0; background: #000000; } .logo-m3academy{ display: block; } /*Banner mobile*/ .page-banner-principal-mobile{ display: none; } /*Estilo do top infocard*/ .top-infocard{ display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 73px 0px 0px 0px; } .top-infocard-text{ width: 40%; } .top-infocard-text > h2,h1{ text-align: center; text-transform: uppercase; } .top-infocard-text h2{ font-weight: 400; font-size: 32px; line-height: 39px; } .top-infocard-text h1{ font-weight: 500; font-size: 48px; line-height: 58px; } .top-infocard-text p{ font-size: 16px; line-height: 24px; } .top-infocard-image{ width: 16%; padding: 65px 0 0 0; } /*Estilo do primeiro setor de boxes e do segundo*/ .content{ display: flex; align-content: center; justify-content: center; gap: 20px; padding: 129px 0; } .box{ display: flex; flex-direction: column; align-items: center; justify-items: center; background: #FFFFFF; box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23); } .box-text{ margin-top: 27px; width: 84%; text-align: center; font-size: 16px; line-height: 24px; } .box1{ width: 18%; padding: 35px 26px 27px 26px; } .box2{ width: 22%; padding: 35px 32px 65px 32px; } /*Estilo da galeria*/ .galeria-content{ display: grid; grid-template-columns: repeat(3, 1fr); justify-content: center; padding: 0 72px; gap: 36px; background: #E0E0E0; } .galeria-photo{ position: relative; bottom: -62px; } /*Estilo do aside de baixo*/ .bottom-aside{ display: flex; flex-direction: column; align-items: center; justify-content: center; } .bottom-text{ width: 28%; text-align: center; margin-bottom: 50px; } .bottom-text h3{ font-weight: 600; font-size: 32px; line-height: 39px; } .bottom-text p{ font-size: 16px; line-height: 24px; } .bottom-image-desktop{ display: block; margin: 0 auto; width: 70%; } .bottom-image-mobile{ display: none; } @media screen and (max-width: 280px){ .top-infocard-text{ width: 100%; } .box1{ width: 100%; } .box2{ width: 100%; } } @media screen and (max-width: 1024px){ .page-banner-principal-mobile{ display: block; } .page-banner-principal-desktop{ display: none; } .top-infocard{ padding: 73px 28px 0px 28px; } .top-infocard-text{ width: 86%; text-align: center; } .top-infocard-text h2{ font-size: 20px; line-height: 24px; } .top-infocard-text h1{ font-size: 28px; line-height: 34px; } .top-infocard-image{ width: 58%; } .content{ display: flex; flex-direction: column; padding: 90px 32px; row-gap: 20px; } .box{ width: 100%; } .galeria-content{ grid-template-columns: repeat(2, 1fr); column-gap: 14px; row-gap: 24px; padding: 0 23px; } .galeria-photo{ bottom: -32px; } .first{ grid-column: 2; } .second{ grid-column: 1; grid-row: 1; } .big{ grid-column: 1 / -1; } .bottom-aside{ display: flex; flex-direction: column-reverse; } .bottom-text { width: 84%; margin-bottom: 0; margin-top: 50px; } .bottom-text h3{ font-size: 24px; line-height: 29px; } .bottom-image-desktop{ display: none; } .bottom-image-mobile{ display: block; width: 100%; } } @media screen and (min-width: 2500px){ .top-infocard-text p{ font-size: 24px; line-height: 32px; } .box-text{ font-size: 24px; line-height: 32px; } .bottom-text p{ font-size: 24px; line-height: 32px } .bottom-image-desktop{ width: 100%; } } @media screen and (min-width: 4000px){ .top-infocard-text p{ font-size: 32px; line-height: 40px; } .box-text{ font-size: 32px; line-height: 40px; } .bottom-text p{ font-size: 32px; line-height: 40px; } }