diff --git a/assets/css/style.css b/assets/css/style.css index 5892dda..07ded15 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -20,8 +20,10 @@ body { display: block; } -.main-banner { +.main-banner, +.middle-banner { width: 100%; + display: block; } .top-infocard { @@ -55,12 +57,159 @@ body { line-height: 24px; } +.top-cards { + display: grid; + grid-template-columns: repeat(3, max-content); + gap: 20px; + justify-content: center; + padding: 74px 0; + background: #f0f0f0; +} +.top-card { + display: flex; + flex-direction: column; + align-items: center; + padding: 26px 26px 34px; + background: #ffffff; + box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23); +} + +.top-card-image { + display: block; + margin-bottom: 26px; +} + +.top-card-description { + max-width: 300px; + text-align: center; + line-height: 24px; + font-size: 16px; +} + +.bottom-cards { + margin-top: 140px; + background: linear-gradient(180deg, #00c8ff 0%, #15acd6 100%); +} + +.bottom-cards-wrapper { + display: grid; + grid-template-columns: repeat(2, max-content); + gap: 20px; + justify-content: center; + position: relative; + top: -60px; +} + +.bottom-card { + display: flex; + flex-direction: column; + align-items: center; + padding: 36px 32px 66px; + background: #ffffff; + box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15); +} + +.bottom-card-description { + max-width: 368px; + font-size: 16px; + line-height: 24px; +} + +.bottom-card-image { + display: block; + margin-bottom: 14px; +} + +.bottom-infocard { + display: flex; + align-items: center; + padding: 142px 0 180px; +} + +.bottom-infocard-text { + max-width: 550px; + justify-content: center; +} + +.bottom-infocard-image { + margin-right: 40px; +} + +.bottom-card-title { + margin-bottom: 18px; + line-height: 1; + font-size: 32px; + font-weight: 600; +} + +.bottom-infocard-description { + line-height: 24px; + font-size: 16px; +} + +.page-footer { + display: flex; + flex-direction: column; + align-items: center; + background: #000000; + padding: 38px 0 38px; +} + +.footer-icons { + display: flex; + list-style: none; + margin-bottom: 16px; +} + +.footer-icon { + margin: 0 8px; +} + +.footer-text { + font-size: 10px; + line-height: 12px; + text-transform: uppercase; + color: #bdbdbd; +} + @media screen and (max-width: 414px) { - .main-banner-desktop { + .main-banner-desktop, + .middle-banner-desktop { display: none; } } +@media screen and (min-width: 415px) { + .main-banner-mobile, + .middle-banner-mobile { + display: none; + } +} + +@media screen and(max-width:768px) { + .top-cards { + grid-template-columns: 1fr; + padding: 36px 26px; + } + + .bottom-cards { + margin-top: 114px; + padding: 0 26px; + } + + .bottom-cards-wrapper { + grid-template-columns: 1fr; + gap: 16px; + } + .bottom-card-description { + font-size: 14px; + } + .page-footer { + padding-bottom: 26px; + text-align: center; + } +} + @media screen and(max-width: 992px) { .top-infocard { flex-direction: column; @@ -80,6 +229,42 @@ body { width: 100%; max-width: 240px; } + + .bottom-infocard { + flex-direction: column; + padding: 80px 0 136px; + } + + .bottom-infocard-image { + width: 100%; + margin: 0 0 50px; + max-width: 596px; + } + + .bottom-infocard-text { + padding: 0 26px; + } + + .bottom-infocard-tittle { + font-size: 24px; + } + + .footer-text { + max-width: 280px; + text-align: center; + } +} + +@media screen and (min-width: 769px) and (max-width: 1200px) { + .top-cards { + grid-template-columns: repeat(2, max-content); + } +} + +@media screen and (min-width: 769px) and (max-width: 992px) { + .bottom-card-description { + max-width: 280px; + } } @media screen and (min-width: 993px) and (max-width: 1280px) { @@ -87,10 +272,11 @@ body { max-width: 520px; margin-right: 70px; } -} -@media screen and (min-width: 415px) { - .main-banner-mobile { - display: none; + .bottom-infocard-image { + max-width: 480px; + } + .bottom-infocard-text { + max-width: 400px; } } diff --git a/assets/imagens/bottom-card-image-01.png b/assets/imagens/bottom-card-image-01.png new file mode 100644 index 0000000..ef51e8e Binary files /dev/null and b/assets/imagens/bottom-card-image-01.png differ diff --git a/assets/imagens/bottom-card-image-02.png b/assets/imagens/bottom-card-image-02.png new file mode 100644 index 0000000..d243b1c Binary files /dev/null and b/assets/imagens/bottom-card-image-02.png differ diff --git a/assets/imagens/bottom-card-image-03.png b/assets/imagens/bottom-card-image-03.png new file mode 100644 index 0000000..fcf3a25 Binary files /dev/null and b/assets/imagens/bottom-card-image-03.png differ diff --git a/assets/imagens/bottom-card-image-04.png b/assets/imagens/bottom-card-image-04.png new file mode 100644 index 0000000..630b6be Binary files /dev/null and b/assets/imagens/bottom-card-image-04.png differ diff --git a/assets/imagens/bottom-infocard-image.png b/assets/imagens/bottom-infocard-image.png new file mode 100644 index 0000000..21e1dae Binary files /dev/null and b/assets/imagens/bottom-infocard-image.png differ diff --git a/assets/imagens/facebook-icon.png b/assets/imagens/facebook-icon.png new file mode 100644 index 0000000..34769d9 Binary files /dev/null and b/assets/imagens/facebook-icon.png differ diff --git a/assets/imagens/instagram-icon.png b/assets/imagens/instagram-icon.png new file mode 100644 index 0000000..a0129a3 Binary files /dev/null and b/assets/imagens/instagram-icon.png differ diff --git a/assets/imagens/middle-banner-desktop.png b/assets/imagens/middle-banner-desktop.png new file mode 100644 index 0000000..127cff9 Binary files /dev/null and b/assets/imagens/middle-banner-desktop.png differ diff --git a/assets/imagens/middle-banner-mobile.png b/assets/imagens/middle-banner-mobile.png new file mode 100644 index 0000000..1cb8c22 Binary files /dev/null and b/assets/imagens/middle-banner-mobile.png differ diff --git a/assets/imagens/top-card-image-01.png b/assets/imagens/top-card-image-01.png new file mode 100644 index 0000000..e9be04a Binary files /dev/null and b/assets/imagens/top-card-image-01.png differ diff --git a/assets/imagens/top-card-image-02.png b/assets/imagens/top-card-image-02.png new file mode 100644 index 0000000..fd9a49a Binary files /dev/null and b/assets/imagens/top-card-image-02.png differ diff --git a/assets/imagens/top-card-image-03.png b/assets/imagens/top-card-image-03.png new file mode 100644 index 0000000..825f21e Binary files /dev/null and b/assets/imagens/top-card-image-03.png differ diff --git a/assets/imagens/youtube 2@2x.png b/assets/imagens/youtube 2@2x.png new file mode 100644 index 0000000..aa91c5b Binary files /dev/null and b/assets/imagens/youtube 2@2x.png differ diff --git a/assets/imagens/youtube-icon.png b/assets/imagens/youtube-icon.png new file mode 100644 index 0000000..09d8cd6 Binary files /dev/null and b/assets/imagens/youtube-icon.png differ diff --git a/index.html b/index.html index f820982..8716922 100644 --- a/index.html +++ b/index.html @@ -11,7 +11,7 @@ M3 Landing Page @@ -45,7 +45,121 @@ Banner do Infocard do Topo + +
+
+ Imagem do Primeiro Card do Topo +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod + enim non dui fringilla + interdum. +

+
+ +
+ Imagem do Segundo Card do Topo +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod + enim non dui fringilla + interdum.

+
+ +
+ Imagem do Terceiro Card do Topo +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla + interdum. +

+
+
+
+ Banner do Meio-Desktop + Banner do Meio-Mobile +
+
+
+
+ Imagem do Primeiro Card de Baixo +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla + interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui + fringilla interdum. +

+
+
+ Imagem do Segundo Card de Baixo +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla + interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui + fringilla interdum. +

+
+
+ Imagem do Terceiro Card de Baixo +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla + interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui + fringilla interdum. +

+
+
+ Imagem do Quarto Card de Baixo +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla + interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui + fringilla interdum. +

+
+
+
+
+ Banner do Infocard de Baixo +
+

Lorem ipsum dolor sit amet

+

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vulputate sapien non libero faucibus + interdum. In eget tincidunt ipsum. + Quisque a tellus at lectus blandit tempor. Ut tristique auctor mi eget hendrerit. Curabitur + venenatis felis vitae sagittis venenatis. + Donec finibus turpis vitae lectus interdum rutrum vitae sed augue. +

+
+ +
+ +