2022-10-11 23:16:23 +00:00
|
|
|
/* Mas legível quais tags eu declarei com propriedades padrão */
|
|
|
|
|
|
|
|
/* reset all tags */
|
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mas organização de cores, estilos, fonts, espaçamentos,etc. isso é um arquivo de configuração*/
|
|
|
|
:root {
|
|
|
|
--clr-black: #000;
|
|
|
|
--clr-gray-100: #BDBDBD;
|
|
|
|
|
|
|
|
--bg-clr-black: #000;
|
|
|
|
--bg-clr-gray: #E0E0E0;
|
|
|
|
--bg-clr-white: #fff;
|
|
|
|
|
|
|
|
--body-family: "Inter", Arial, Helvetica, sans-serif;
|
|
|
|
--title-family: "Inter", Arial, Helvetica, sans-serif;
|
|
|
|
|
|
|
|
/*----------------------*\
|
|
|
|
= Volatile Variables =
|
|
|
|
\*----------------------*/
|
|
|
|
--hs-flow-space: 1rem;
|
|
|
|
--hs-grid-space: 1rem;
|
|
|
|
--hs-flex-space: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* font styles for all body tags */
|
|
|
|
|
|
|
|
body * {
|
|
|
|
font-family: var(--body-family);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* font styles for page titles */
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6,
|
|
|
|
.title {
|
|
|
|
font-family: var(--title-family);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* a metodologia que vou usar será CUBE CSS <3*/
|
2022-10-08 22:09:09 +00:00
|
|
|
|
2022-10-09 07:08:48 +00:00
|
|
|
/* started styles */
|
|
|
|
|
|
|
|
/*--------*\
|
|
|
|
= HEADER =
|
|
|
|
\*--------*/
|
|
|
|
.l-header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
padding: 1.875rem 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-logo {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2022-10-09 07:57:33 +00:00
|
|
|
/*-------------*\
|
|
|
|
= MAIN BANNER =
|
|
|
|
\*-------------*/
|
|
|
|
.main-banner-image {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2022-10-09 10:29:56 +00:00
|
|
|
/*-------------*\
|
|
|
|
= INFORMATION =
|
|
|
|
\*-------------*/
|
|
|
|
.information {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
2022-10-11 23:16:23 +00:00
|
|
|
gap: 4rem;
|
|
|
|
padding: 4.625rem 1.875rem 90px;
|
2022-10-09 10:29:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.information-texts {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-10-11 23:16:23 +00:00
|
|
|
.information-subtitle,
|
|
|
|
.information-description {
|
|
|
|
line-height: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2022-10-09 10:29:56 +00:00
|
|
|
.information-subtitle {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.information-title {
|
|
|
|
font-weight: 500;
|
2022-10-11 23:16:23 +00:00
|
|
|
line-height: 3rem;
|
2022-10-09 10:29:56 +00:00
|
|
|
}
|
|
|
|
|
2022-10-09 12:23:07 +00:00
|
|
|
/*----------*\
|
|
|
|
= SERVICES =
|
|
|
|
\*----------*/
|
|
|
|
.services {
|
2022-10-11 23:16:23 +00:00
|
|
|
padding-bottom: 5.625rem;
|
2022-10-09 12:23:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.services-container {
|
2022-10-11 23:16:23 +00:00
|
|
|
--hs-flex-space: 1.25rem;
|
|
|
|
--hs-flow-space: 1.75rem;
|
2022-10-09 12:23:07 +00:00
|
|
|
|
2022-10-11 23:16:23 +00:00
|
|
|
padding: 0 1.625rem;
|
2022-10-09 12:23:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.services-container,
|
|
|
|
.card {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
flex-direction: column;
|
2022-10-11 23:16:23 +00:00
|
|
|
width: 100%;
|
2022-10-09 12:23:07 +00:00
|
|
|
min-height: 288px;
|
2022-10-11 23:16:23 +00:00
|
|
|
padding: 2.25rem 1.625rem 1.75rem;
|
2022-10-09 12:23:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-image {
|
2022-10-11 21:04:23 +00:00
|
|
|
width: 34.5%;
|
2022-10-09 12:23:07 +00:00
|
|
|
height: auto;
|
2022-10-11 23:16:23 +00:00
|
|
|
min-width: 103px;
|
2022-10-09 12:23:07 +00:00
|
|
|
}
|
|
|
|
|
2022-10-09 14:21:22 +00:00
|
|
|
/*---------*\
|
|
|
|
= GALLERY =
|
|
|
|
\*---------*/
|
|
|
|
.gallery {
|
2022-10-11 23:16:23 +00:00
|
|
|
--hs-grid-space: 1.5rem 0.875rem;
|
2022-10-09 14:21:22 +00:00
|
|
|
|
2022-10-11 23:16:23 +00:00
|
|
|
padding: 0 1.5rem;
|
|
|
|
margin-bottom: 7rem;
|
2022-10-09 14:21:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-container {
|
|
|
|
position: relative;
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
justify-content: center;
|
|
|
|
transform: translateY(2rem);
|
|
|
|
}
|
|
|
|
|
2022-10-11 21:04:23 +00:00
|
|
|
.gallery-image,
|
|
|
|
.gallery-image img {
|
2022-10-09 14:21:22 +00:00
|
|
|
width: 100%;
|
2022-10-12 20:24:09 +00:00
|
|
|
height: 100%;
|
2022-10-09 14:21:22 +00:00
|
|
|
}
|
|
|
|
|
2022-10-12 20:24:09 +00:00
|
|
|
.gallery-image-2 {
|
|
|
|
order: -1;
|
|
|
|
}
|
2022-10-09 14:21:22 +00:00
|
|
|
|
|
|
|
.gallery-image-3 {
|
|
|
|
grid-column: 1/2 span;
|
|
|
|
}
|
|
|
|
|
2022-10-09 18:38:51 +00:00
|
|
|
/*----------*\
|
|
|
|
= FEATURES =
|
|
|
|
\*----------*/
|
|
|
|
.features {
|
2022-10-11 23:16:23 +00:00
|
|
|
padding: 0 1.5rem;
|
2022-10-09 18:38:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.features-container {
|
|
|
|
--hs-flex-space: 1rem;
|
|
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
2022-10-11 23:16:23 +00:00
|
|
|
padding-bottom: 6rem;
|
2022-10-09 18:38:51 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.features .card {
|
|
|
|
width: 100%;
|
|
|
|
min-height: 332px;
|
|
|
|
}
|
|
|
|
|
2022-10-09 20:09:30 +00:00
|
|
|
/*------*\
|
|
|
|
= BLOG =
|
|
|
|
\*------*/
|
|
|
|
.blog {
|
2022-10-11 23:16:23 +00:00
|
|
|
--hs-flex-space: 3.125rem;
|
2022-10-11 21:48:24 +00:00
|
|
|
|
2022-10-09 20:09:30 +00:00
|
|
|
width: 100%;
|
2022-10-11 23:16:23 +00:00
|
|
|
padding-bottom: 5.5rem;
|
2022-10-09 20:09:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.blog-images-image {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blog-article {
|
2022-10-11 23:16:23 +00:00
|
|
|
padding: 0 1.5rem;
|
2022-10-09 20:09:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.blog-title {
|
|
|
|
font-weight: 500;
|
2022-10-11 23:16:23 +00:00
|
|
|
font-size: 1.5rem;
|
2022-10-09 20:09:30 +00:00
|
|
|
}
|
2022-10-09 18:38:51 +00:00
|
|
|
|
2022-10-10 15:04:44 +00:00
|
|
|
/*--------*\
|
|
|
|
= FOOTER =
|
|
|
|
\*--------*/
|
|
|
|
.footer {
|
|
|
|
flex-direction: column;
|
2022-10-11 23:16:23 +00:00
|
|
|
padding: 2.375rem 0;
|
2022-10-10 15:04:44 +00:00
|
|
|
}
|
|
|
|
|
2022-10-09 07:08:48 +00:00
|
|
|
/*CUBE CSS styles*/
|
|
|
|
|
2022-10-09 12:23:07 +00:00
|
|
|
/*-------------*\
|
|
|
|
= COMPOSITION =
|
|
|
|
\*-------------*/
|
|
|
|
.flow *+* {
|
|
|
|
margin-top: var(--hs-flow-space);
|
|
|
|
}
|
|
|
|
|
2022-10-09 14:21:22 +00:00
|
|
|
.grid-box {
|
|
|
|
display: grid;
|
|
|
|
gap: var(--hs-grid-space);
|
|
|
|
}
|
|
|
|
|
2022-10-09 12:23:07 +00:00
|
|
|
.flex-box {
|
|
|
|
display: flex;
|
|
|
|
gap: var(--hs-flex-space);
|
|
|
|
}
|
|
|
|
|
2022-10-09 20:09:30 +00:00
|
|
|
.flex-box[data-type="reversed"] {
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
}
|
|
|
|
|
2022-10-09 07:08:48 +00:00
|
|
|
/*-------*\
|
|
|
|
= UTILS =
|
|
|
|
\*-------*/
|
2022-10-09 12:23:07 +00:00
|
|
|
.center {
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2022-10-09 10:29:56 +00:00
|
|
|
.text-upper {
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
2022-10-09 12:23:07 +00:00
|
|
|
.text-center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box-shadow {
|
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
|
|
|
}
|
|
|
|
|
2022-10-10 15:04:44 +00:00
|
|
|
.clr-gray-100 {
|
|
|
|
color: var(--clr-gray-100);
|
|
|
|
}
|
|
|
|
|
2022-10-09 07:08:48 +00:00
|
|
|
.bg-clr-black {
|
|
|
|
background-color: var(--bg-clr-black);
|
2022-10-09 07:57:33 +00:00
|
|
|
}
|
|
|
|
|
2022-10-09 14:21:22 +00:00
|
|
|
.bg-clr-gray {
|
|
|
|
background-color: var(--bg-clr-gray);
|
|
|
|
}
|
|
|
|
|
2022-10-11 23:16:23 +00:00
|
|
|
/*---------------*\
|
|
|
|
= MEDIA QUERIES =
|
|
|
|
\*---------------*/
|
2022-10-09 07:57:33 +00:00
|
|
|
@media only screen and (max-width: 1024px) {
|
2022-10-11 23:16:23 +00:00
|
|
|
.services-container {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2022-10-09 07:57:33 +00:00
|
|
|
.image-mobile {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-desktop {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-11 23:16:23 +00:00
|
|
|
/*--------------------------------------*\
|
|
|
|
= MEDIA QUERIES LARGE DEVICES 1025px > =
|
|
|
|
\*--------------------------------------*/
|
|
|
|
@media screen and (min-width:1025px) {
|
|
|
|
|
|
|
|
.features,
|
|
|
|
.gallery {
|
|
|
|
padding: 0 4.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.information-texts,
|
|
|
|
.services,
|
|
|
|
.blog-article,
|
|
|
|
.blog-images {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.information {
|
|
|
|
padding: 4.675rem 0 9.875rem;
|
|
|
|
gap: 4.675rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.information-texts {
|
|
|
|
width: 40.5%;
|
|
|
|
text-align: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.information-title,
|
|
|
|
.information-subtitle {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.information-title {
|
|
|
|
font-size: 200%;
|
|
|
|
margin-bottom: 1.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.information-subtitle {
|
|
|
|
line-height: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.information-image {
|
|
|
|
width: 17%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.information-image img {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.services {
|
|
|
|
width: 57%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.services-container {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.services .card {
|
|
|
|
width: 34%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery {
|
|
|
|
--hs-grid-space: 2.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-container {
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
transform: translateY(4rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-image {
|
|
|
|
min-height: 530px;
|
|
|
|
}
|
|
|
|
|
2022-10-14 00:52:20 +00:00
|
|
|
.gallery-image-2 {
|
2022-10-12 20:24:09 +00:00
|
|
|
order: 0;
|
|
|
|
}
|
|
|
|
|
2022-10-11 23:16:23 +00:00
|
|
|
.gallery-image-3 {
|
|
|
|
grid-column: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.features-container {
|
|
|
|
flex-direction: row;
|
|
|
|
padding-bottom: 6.75rem;
|
|
|
|
}
|
|
|
|
|
2022-10-14 00:52:20 +00:00
|
|
|
.features-container .card {
|
|
|
|
max-height: 260px;
|
|
|
|
}
|
|
|
|
|
2022-10-11 23:16:23 +00:00
|
|
|
.card-image {
|
|
|
|
width: 29%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blog {
|
|
|
|
padding-bottom: 7.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blog-title {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blog-images-image {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blog .flex-box[data-type="reversed"] {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blog-article {
|
|
|
|
width: 30.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blog-description {
|
|
|
|
line-height: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blog-images {
|
|
|
|
width: 71%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2022-10-09 07:57:33 +00:00
|
|
|
.image-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-desktop {
|
|
|
|
display: flex;
|
|
|
|
}
|
2022-10-09 07:08:48 +00:00
|
|
|
}
|