﻿@charset "utf-8";

* {
	margin: 0;
	padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
}

/* HEADER
======================================================================================================================================================================================*/

.floatleft{
    float: left;
}

.displaynone{
    display:none;
}

.containerHEADER{
    float: left;
    width: 100vw;
    height: 100vh;
}

/* ANIMAÇÃO ONDAS ==========*/

.containerWAVES{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    height: 100vh;
    float: left;
}

.waves{
    position: absolute;
    left: -150px;
    right: 0;
    bottom: 0;
}
    
.wave-1{
    animation: moveWave1 3s ease-in-out infinite alternate;
}

@keyframes moveWave1 {
    from {
        transform: translateX(100px);
    }
}
    
.wave-2{
        animation: moveWave2 3s 1.2s ease-in-out infinite alternate;
}

@keyframes moveWave2 {
    from {
        transform: translateX(100px);
    }
}
    
.wave-3{
    animation: moveWave3 3s 0.7s ease-in-out infinite alternate;
}

@keyframes moveWave3 {
    from {
        transform: translateX(100px);
    }
}

/* NAV ==========*/

nav{
    width: 100vw;
    padding: 0.5%;
    float: left;
    position: fixed;
    background-color: white;
    z-index: 999;
}

nav #logo{
    width: 150px;
    float: left;
}

nav .btnContrate{
    float: right;
    padding: 0.5% 1%;
    font-size: 0.8em;
    margin-right: 1%;
    border-radius: 1.2em;
}

nav #hamburger img{
    width: 30px;
    float: right;
    padding: 0.5% 0 0 0;
        
}

nav #tell{
    float: right;
    padding: 0.5%;
    margin: 0 1%;
    border: 1px solid #0D9F90;
    border-radius: 12px;
    font-size: 1em;
}

nav #tell a{
    font-size: 0.8em;
    color: black;
}

/* MENU HIDDEN ==========*/

#menu{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
}

#menu ul{
    width: 16%;
    height: 100vh;
    float: right;
    background: linear-gradient(to top, #299390, #0D9F90);
    padding: 5% 2%;
}

#menu ul li{
    
    font-size: 1.5em;
    display: flex;
    text-align: center;
    justify-content: center;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

#menu img{
    width: 100%;
    position: relative;
    top: 50vh;
}

#menu a{
    color:white;
}

#menu a:hover{
    color: #299390;
    
}

#menu a:active{
    color: #00cba9;
    
}

#menu #close{
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    margin: 10px;
    float: right;
}

#menu #close:hover{
    cursor: pointer;
}

/* TEXTOS HEADER ==========*/

#containerTEXTO{
    width: 100vw;
    height: 100vh;
    float: left;
    position: absolute;
    padding: 10%;
    text-align: left;
    z-index: 99;
    
}

#containerTEXTO #textTittle{
    font-family: 'Abril+Fatface', 'sans-serif';
    color: #299390;
    font-size: 3em;
    width: 40%;
    padding: 0% 0 3% 0;
    font-weight: 600;
}

#containerTEXTO #textDesc{
    width: 40%;
    font-size: 1em;
    padding: 0 0 2% 0;
}

.btnContrate{
    font-size: 1em;
    border-radius: 1em;
    background: #299390;
    padding: 0.5% 2%;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}

.btnContrate:hover{
    transition: 250ms all;
    background:white;
    border: 1px solid black;
    color: #299390;
}

#txtSlogan{
    position: absolute;
    left: 3%;
    bottom: 3%;
    font-size: 4em;
    color: #0D9F90;
    font-family: 'Pacifico', 'cursive';
    z-index: 99;
    
}

/* SOCIAL MEDIA ==========*/
.socialMedia{
    position: fixed;
    top: 42%;
    right: 0;
    padding: 0.5%;
    background-color: white;
    border-radius: 1em 0 0 1em;
    
    
}
.socialMedia img{
    width: 25px;
    padding: 10% 0;
}

/* SERVIÇOS ======================================================================================================================================================================================*/

#containerServices{
    width: 100vw;
    height: 100vh;
    float: left;
    background: rgba(0,203,169,1);
    background: -moz-linear-gradient(top, rgba(0,203,169,1) 0%, rgba(41,147,143,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,203,169,1)), color-stop(100%, rgba(41,147,143,1)));
    background: -webkit-linear-gradient(top, rgba(0,203,169,1) 0%, rgba(41,147,143,1) 100%);
    background: -o-linear-gradient(top, rgba(0,203,169,1) 0%, rgba(41,147,143,1) 100%);
    background: -ms-linear-gradient(top, rgba(0,203,169,1) 0%, rgba(41,147,143,1) 100%);
    background: linear-gradient(to bottom, rgba(0,203,169,1) 0%, rgba(41,147,143,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cba9', endColorstr='#29938f', GradientType=0 );
    padding: 5% 0;
}

/* BLOCK ONE ==========*/
#containerServices #serviceBlockOne{
    position: relative;
    right: 15%;
    width: 30%;
    height: 29%;
    float: right;
    background: #4D4D4D;
    color: white;
    padding: 1% 1% 1% 9%;
}
#containerServices #serviceBlockOne p:nth-last-child(1){
    position: relative;
    top: -30%;
    left: -135%;
    font-weight: 600;
    font-size: 3em;
    letter-spacing: 0.05em;
    font-family: 'Abril+Fatface', 'sans-serif';
    text-align: right;
    line-height: 1em;
}

#containerServices #serviceBlockOne p:nth-child(1){
    text-align: right;
    letter-spacing: 0.3em;
    font-size: 0.8em;
    font-weight: 100;
    line-height: 20px;
    
}

/* BLOCK TWO ==========*/
#containerServices .serviceBlockTwo{
    padding: 5% 20%;
    float: left;
    
}

#containerServices .serviceBlockTwo a{
    display: block;
    float: left;
    width: 24%;
    height: 300px;
    background:white;
    border-radius: 1em;
    padding: 2%;
    margin: 0.5%;
    overflow: hidden;
    color: #0D9F90;
}

#containerServices .serviceBlockTwo p{
    font-family: 'Abril+Fatface', 'sans-serif';
    font-size: 1.2em;
    font-weight: 600;
    padding: 15% 0 0;
}

#containerServices .serviceBlockTwo p:nth-last-child(1){
    font-family: 'Roboto', 'Sans-serif';
    font-size: 0.9em;
    font-weight: 300;
    padding: 10% 0 0;
}

#containerServices .serviceBlockTwo img{
    width: 60px;
}

#containerServices .serviceBlockTwo a:hover{
    
    background: linear-gradient(to top, #299390, #0D9F90);
    color: white;
}

/* BLOCK THREE ==========*/

#containerServices #serviceBlockThree{
    position: relative;
    left: 15%;
    width: 30%;
    height: 15%;
    bottom: 1%;
    float: left;
    background: #4D4D4D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#containerServices #serviceBlockThree p{
    font-size: 1em;
    font-weight: 100;
    text-transform: uppercase;
    color: #0D9F90;
    letter-spacing: 6px;
}

/* SOBRE/ABOUT ======================================================================================================================================================================================*/

#containerAbout{
    width: 100vw;
    height: 100vh;
    padding: 6% 35%;
    float: left;
}

#containerAbout .aboutBlockOne{
    border-radius: 2em;
    border: 1px solid #4d4d4d;
    padding: 10%;
    float: left;
}

#containerAbout .aboutBlockOne #aboutOne{
    font-size: 2.2em;
    padding: 0 0 5% 0;
    font-family: 'Abril+Fatface', 'sans-serif';
    font-weight: 600;
    color: #0D9F90;
}

#containerAbout .aboutBlockOne #aboutTwo{
    font-size: 0.7em;
    letter-spacing: 2px;
    line-height: 30px;
}

#containerAbout .aboutBlockTwo{
    padding: 5%;
    float: left;
}

#containerAbout .aboutBlockTwo #aboutThree{
    font-family: 'Abril+Fatface', 'sans-serif';
    font-weight: 600;
    color: #0D9F90;
    font-size: 2.2em;
    margin: 0 0 8% 0;
    letter-spacing: 1px;
}

#containerAbout .aboutBlockTwo #aboutFour{
    font-size: 0.7em;
    letter-spacing: 2px;
    line-height: 30px;
    border-left: 3px solid #0D9F90;
    padding: 0 0 0 5%;
    margin: 10%;
}

/* FOOTER
======================================================================================================================================================================================*/

#containerFooter{
    width: 100vw;
    height: 100vh;
    float: left;
    background: #4d4d4d;
    padding: 5% 0 0 0;
}

#logoverde{
    width: 100vw;
    padding: 0 3% 0 0; 
    float: left;
    text-align: right;
}

#logoverde img{
    width: 200px;
    padding: 0 0 5% 0;
}

.containerInfos{
    width: 100vw;
    float: left;
    position: relative;
    display: flex;
    justify-content: center;
    text-align: left;
    align-items: center;
}

.footerInfos{
    float: left;
    padding: 2%;
}

.infoTittle{
    font-size: 0.9em;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 0 8% 0;
    color: #0D9F90;
}

.footerInfos a{
    font-size: 0.8em;
    font-weight: 300;
    color: white;
    line-height: 20px;
}

.footerInfos a:hover{
    color: #0D9F90;
}

.footerInfos a img{
    width: 22px;
    margin: 0 5px 0 0; 
}

#lastBlock{
    width: 100vw;
    float: left;
    text-align: center;
    position: relative;
    top: 50vh;
    bottom: 0;
    z-index: 99;
}

#lastBlock p:nth-child(1){
    font-size: 2em;
    font-family: 'Pacifico', 'cursive';
    color: #262626;
}

#lastBlock p:nth-child(2){
    font-size: 0.8em;
}
/* ANIMAÇÃO ONDAS ==========*/

.containerWavesFooter{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    height: 53vh;
    float: left;
}

.wavesFooter{
    position: absolute;
    left: -150px;
    right: 0;
    bottom: 0;
}
    
.wave-1Footer{
    animation: moveWave4 3s ease-in-out infinite alternate;
}

@keyframes moveWave4 {
    from {
        transform: translateX(100px);
    }
}
    
.wave-2Footer{
        animation: moveWave5 3s 1.2s ease-in-out infinite alternate;
}

@keyframes moveWave5 {
    from {
        transform: translateX(100px);
    }
}
    
.wave-3Footer{
    animation: moveWave6 3s 0.7s ease-in-out infinite alternate;
}

@keyframes moveWave6 {
    from {
        transform: translateX(100px);
    }
}

/* MEDIA SCREEN 2160x1440p ======================================================================================================================================================================================*/

@media screen and (max-width:2560px) and (max-height:1440px){
    .waves{
    left: -250px;
}
    
    #containerTEXTO #textTittle{
    padding: 0% 0 3% 0;
}
    
    #containerTEXTO #textDesc{
    width: 30%;
}
    
    .wavesFooter{
    left: -250px;
}
}

/* MEDIA SCREEN 2160x1080p ======================================================================================================================================================================================*/

@media screen and (max-width:2560px) and (max-height:1080px){

#containerTEXTO{
    padding: 5% 10% 10% 10%;
    
}
    .waves{
    left: -250px;
}
    
    .wavesFooter{
    left: -250px;
}
}

/* MEDIA SCREEN 1920x1080p ======================================================================================================================================================================================*/

@media screen and (max-width:1920px){

#containerTEXTO{
    padding: 10%;
    
}

}


/* MEDIA SCREEN 1366x768p ======================================================================================================================================================================================*/

@media screen and (max-width:1366px){


/* HEADER
======================================================================================================================================================================================*/


/* NAV ==========*/

/* MENU HIDDEN ==========*/

#menu ul li{
    line-height: 30px;
}
    
#menu a{
    font-size: 0.6em;
}

#menu #close{
    width: 25px;
}

/* TEXTOS HEADER ==========*/
#containerTEXTO #textTittle{
    width: 50%;
    padding: 0% 0 3% 0;
}

/* SOCIAL MEDIA ==========*/
    
/* SERVIÇOS ======================================================================================================================================================================================*/

#containerServices{
}

/* BLOCK ONE ==========*/
#containerServices #serviceBlockOne p:nth-last-child(1){
    top: -80%;
    font-size: 2em;
}

#containerServices #serviceBlockOne p:nth-child(1){
    font-size: 0.7em;
    
}

/* BLOCK TWO ==========*/
#containerServices .serviceBlockTwo{
    padding: 3% 10%;
    
}

#containerServices .serviceBlockTwo a{
    width: 24%;
    height: 250px;
}

#containerServices .serviceBlockTwo img{
    width: 40px;
}

/* BLOCK THREE ==========*/

#containerServices #serviceBlockThree{
    width: 35%;
    left: 8%;
}

#containerServices #serviceBlockThree p{
    font-weight: 300;
    font-size: 0.8em;
}

/* SOBRE/ABOUT ======================================================================================================================================================================================*/

#containerAbout{
    padding: 10% 5%;
}

#containerAbout .aboutBlockOne{
    padding: 5%;
    margin: 4% 0 0 0;
    width: 45vw;
}

#containerAbout .aboutBlockTwo{
    padding:  0 5%;
    width: 45vw;
}

#containerAbout .aboutBlockTwo #aboutThree{
    font-size: 1.8em;
}

/* FOOTER
======================================================================================================================================================================================*/

#lastBlock{
    top: 35vh;
}

#lastBlock p:nth-child(2){
    font-size: 0.8em;
}
/* ANIMAÇÃO ONDAS ==========*/

.containerWavesFooter{
    height: 40vh;
}

}

/* MEDIA SCREEN 1024x768p ======================================================================================================================================================================================*/

@media screen and (max-width:1024px){


/* HEADER
======================================================================================================================================================================================*/


/* NAV ==========*/

/* MENU HIDDEN ==========*/

/* TEXTOS HEADER ==========*/

#containerTEXTO #textTittle{
    width: 100%;
    padding: 15% 0 3% 0;
}
/* ANIMAÇÃO ONDAS ==========*/

.waves{
    left: -800px;
}
    
/* SOCIAL MEDIA ==========*/
    
/* SERVIÇOS ======================================================================================================================================================================================*/

/* BLOCK ONE ==========*/

/* BLOCK TWO ==========*/

/* BLOCK THREE ==========*/

/* SOBRE/ABOUT ======================================================================================================================================================================================*/


/* FOOTER
======================================================================================================================================================================================*/

#lastBlock{
    top: 50vh;
}

/* ANIMAÇÃO ONDAS ==========*/

.wavesFooter{
    left: -800px;
}
.containerWavesFooter{
    height: 55vh;
}

}

/* MEDIA SCREEN MOBILE UNDER 900px ======================================================================================================================================================================================*/
@media screen and (max-width:900px){


/* HEADER
======================================================================================================================================================================================*/
body{
    margin:0;
}
.waves{
    left: -1000px;
}

/* NAV ==========*/

nav .btnContrate{
    display: none;
}

nav #hamburger img{
    margin: 1.5% 0 0 0;
        
}

nav #tell{
    display: none;
}

/* MENU HIDDEN ==========*/

#menu ul{
    width: 100vw;
    padding: 25% 2%;
    margin:0;
}

#menu ul li{
    
    font-size: 2em;
    line-height: 50px;
}

#menu #logobranco{
    width: 100%;
    padding: 0 25%;
    display: flex;
    text-align: center;
    top: 30vh;
}

/* TEXTOS HEADER ==========*/

#containerTEXTO{
    padding: 20% 10%;
    
}

#containerTEXTO #textTittle{
    width: 100%;
    padding: 8% 0 3% 0;
}

#containerTEXTO #textDesc{
    width: 100%;
    padding: 0 0 6% 0;
}

.btnContrate{
    padding: 1.5% 6%;
}

#txtSlogan{
    
    text-align: center;
    width: 100vw;
    font-size: 2em;
    left:0;
    
}

/* SOCIAL MEDIA ==========*/
    .socialMedia {
        position: fixed;
        top: 42%;
        right: 0%;
        padding: 0.5% 1%;
        background-color: white;
        border-radius: 0.4em 0 0 0.4em;
    }
.socialMedia img{
    width: 25px;
    padding: 10% 0;
}

/* SERVIÇOS ======================================================================================================================================================================================*/
#containerServices{
    height: 150vh;
}

/* BLOCK ONE ==========*/
#containerServices #serviceBlockOne{
    left: 0%;
    right: 0%;
    width: 100vw;
    height: auto;
}
#containerServices #serviceBlockOne p:nth-last-child(1){
    top: 0%;
    left: 0%;
    text-align: center;
}

#containerServices #serviceBlockOne p:nth-child(1){
    text-align: center;
    padding: 5% 0 5%;
    
}

/* BLOCK TWO ==========*/
#containerServices .serviceBlockTwo{
    padding: 20% 2%;
    
}

#containerServices .serviceBlockTwo a{
    width: 47.5%;
    height: 250px;
    padding: 4%;
    margin: 1%;
}

#containerServices .serviceBlockTwo p{
    padding: 10% 0 0;
}

#containerServices .serviceBlockTwo p:nth-last-child(1){
    padding: 7% 0 0;
}

#containerServices .serviceBlockTwo img{
    width: 40px;
}

/* BLOCK THREE ==========*/

#containerServices #serviceBlockThree{
    left: 0%;
    width: 100vw;
    height: 8%;
    padding: 0 5%;
}

/* SOBRE/ABOUT ======================================================================================================================================================================================*/

#containerAbout{
    height: auto;
    padding: 35% 0 5%;
}

#containerAbout .aboutBlockOne{
    width: 100vw;
    margin: 0 0%;
}


#containerAbout .aboutBlockTwo{
    width: 100vw;
    padding: 5%;
}

/* FOOTER
======================================================================================================================================================================================*/

#containerFooter{
    height:120vh;
}

#logoverde{
    text-align: center;
}

#logoverde img{
    padding: 0 0 10% 0;
}

.containerInfos{
    display: block;
    text-align: center;
    z-index: 9;
}

.footerInfos{
    width: 100vw;
    padding: 5%;
}

.infoTittle{
    padding: 0 0 2% 0;
}

#lastBlock{
    top: 18vh;
}
    
/* ANIMAÇÃO ONDAS ==========*/

.containerWavesFooter{
    height: 20vh;
}

.wavesFooter{
    left: -1000px;
}
}


/* MEDIA SCREEN 3840x2160 ======================================================================================================================================================================================*/

@media screen and (min-width:3840px){
    @charset "utf-8";

/* HEADER
======================================================================================================================================================================================*/

.floatleft{
    float: left;
}
.containerHEADER{
    float: left;
    width: 100vw;
    height: 100vh;
}

/* ANIMAÇÃO ONDAS ==========*/

.containerWAVES{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    height: 100vh;
    float: left;
}

.waves{
    position: absolute;
    right: 0;
    bottom: 0;
    
    left: -1500px;
}
    
.wave-1{
    animation: moveWave1 3s ease-in-out infinite alternate;
}

@keyframes moveWave1 {
    from {
        transform: translateX(100px);
    }
}
    
.wave-2{
        animation: moveWave2 3s 1.2s ease-in-out infinite alternate;
}

@keyframes moveWave2 {
    from {
        transform: translateX(100px);
    }
}
    
.wave-3{
    animation: moveWave3 3s 0.7s ease-in-out infinite alternate;
}

@keyframes moveWave3 {
    from {
        transform: translateX(100px);
    }
}

/* NAV ==========*/

nav{
    width: 100vw;
    padding: 0.5%;
    float: left;
    position: fixed;
    background-color: white;
    z-index: 999;
}

nav #logo{
    float: left;
    
    width: 200px;
}

nav .btnContrate{
    float: right;
    padding: 0.5% 1%;
    margin-right: 1%;
    
    border-radius: 1.2em;
    font-size: 1.5em;
}

nav #hamburger img{
    float: right;
    padding: 0.5% 0 0 0;
    
    width: 45px;
        
}

nav #tell{
    float: right;
    padding: 0.5%;
    margin: 0 1%;
    border: 1px solid #0D9F90;
    
    border-radius: 1.2em;
}

nav #tell a{
    color: black;
    
    font-size: 1.5em;
}

/* MENU HIDDEN ==========*/

#menu{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
}

#menu ul{
    width: 16%;
    height: 100vh;
    float: right;
    background: linear-gradient(to top, #299390, #0D9F90);
    padding: 5% 2%;
}

#menu ul li{
    
    display: flex;
    text-align: center;
    justify-content: center;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    
    font-size: 1.5em;
}

#menu img{
    width: 100%;
    position: relative;
    top: 50vh;
}

#menu a{
    color:white;
    
    font-size: 1.2em;
}

#menu a:hover{
    color: #299390;
    
}

#menu a:active{
    color: #00cba9;
    
}

#menu #close{
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    margin: 10px;
    float: right;
}

#menu #close:hover{
    cursor: pointer;
}

/* TEXTOS HEADER ==========*/

#containerTEXTO{
    width: 100vw;
    height: 100vh;
    float: left;
    position: absolute;
    padding: 10%;
    text-align: left;
    z-index: 99;
    
}

#containerTEXTO #textTittle{
    font-family: 'Abril+Fatface', 'sans-serif';
    color: #299390;
    font-size: 3.5em;
    width: 40%;
    padding: 5% 0 3% 0;
    font-weight: 600;
}

#containerTEXTO #textDesc{
    width: 20%;
    font-size: 1.2em;
    padding: 0 0 2% 0;
}

.btnContrate{
    font-size: 1.5em;
    border-radius: 1em;
    background: #299390;
    padding: 0.5% 2%;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}

.btnContrate:hover{
    transition: 250ms all;
    background:white;
    border: 1px solid black;
    color: #299390;
}

#txtSlogan{
    position: absolute;
    left: 3%;
    bottom: 3%;
    font-size: 4em;
    color: #0D9F90;
    font-family: 'Pacifico', 'cursive';
    z-index: 99;
    
}

/* SOCIAL MEDIA ==========*/
.socialMedia{
    position: fixed;
    top: 42%;
    right: 0;
    padding: 0.5%;
    background-color: white;
    border-radius: 1em 0 0 1em;
    
    
}
.socialMedia img{
    width: 25px;
    padding: 10% 0;
}

/* SERVIÇOS ======================================================================================================================================================================================*/

#containerServices{
    width: 100vw;
    height: 100vh;
    float: left;
    background: rgba(0,203,169,1);
    background: -moz-linear-gradient(top, rgba(0,203,169,1) 0%, rgba(41,147,143,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,203,169,1)), color-stop(100%, rgba(41,147,143,1)));
    background: -webkit-linear-gradient(top, rgba(0,203,169,1) 0%, rgba(41,147,143,1) 100%);
    background: -o-linear-gradient(top, rgba(0,203,169,1) 0%, rgba(41,147,143,1) 100%);
    background: -ms-linear-gradient(top, rgba(0,203,169,1) 0%, rgba(41,147,143,1) 100%);
    background: linear-gradient(to bottom, rgba(0,203,169,1) 0%, rgba(41,147,143,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cba9', endColorstr='#29938f', GradientType=0 );
    padding: 5% 0;
}

/* BLOCK ONE ==========*/
#containerServices #serviceBlockOne{
    position: relative;
    right: 15%;
    width: 30%;
    height: 29%;
    float: right;
    background: #4D4D4D;
    color: white;
    padding: 1% 1% 1% 9%;
}
#containerServices #serviceBlockOne p:nth-last-child(1){
    position: relative;
    left: -135%;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-family: 'Abril+Fatface', 'sans-serif';
    text-align: right;
    line-height: 1em;
    
    font-size: 3.5em;
    top: 0%;
}

#containerServices #serviceBlockOne p:nth-child(1){
    text-align: right;
    font-weight: 100;
    
    letter-spacing: 0.6em;
    font-size: 1.2em;
    line-height: 40px;
    
}

/* BLOCK TWO ==========*/
#containerServices .serviceBlockTwo{
    float: left;
    
    padding: 5% 30%;
    
}

#containerServices .serviceBlockTwo a{
    display: block;
    float: left;
    width: 24%;
    background:white;
    border-radius: 1em;
    padding: 2%;
    margin: 0.5%;
    overflow: hidden;
    color: #0D9F90;
    
    height: 400px;
}

#containerServices .serviceBlockTwo p{
    font-family: 'Abril+Fatface', 'sans-serif';
    font-weight: 600;
    padding: 15% 0 0;
    
    font-size: 1.6em;
}

#containerServices .serviceBlockTwo p:nth-last-child(1){
    font-family: 'Roboto', 'Sans-serif';
    font-weight: 300;
    padding: 10% 0 0;
    
    font-size: 1.2em;
}

#containerServices .serviceBlockTwo img{
    width: 60px;
}

#containerServices .serviceBlockTwo a:hover{
    
    background: linear-gradient(to top, #299390, #0D9F90);
    color: white;
}

/* BLOCK THREE ==========*/

#containerServices #serviceBlockThree{
    position: relative;
    left: 15%;
    width: 30%;
    height: 15%;
    bottom: 1%;
    float: left;
    background: #4D4D4D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#containerServices #serviceBlockThree p{
    text-transform: uppercase;
    color: #0D9F90;
    letter-spacing: 6px;
    
    font-size: 1.5em;
    font-weight: 300;
}

/* SOBRE/ABOUT ======================================================================================================================================================================================*/

#containerAbout{
    width: 100vw;
    height: 100vh;
    padding: 12% 35%;
    float: left;
}

#containerAbout .aboutBlockOne{
    border-radius: 2em;
    border: 1px solid #4d4d4d;
    padding: 10%;
    float: left;
}

#containerAbout .aboutBlockOne #aboutOne{
    padding: 0 0 5% 0;
    font-family: 'Abril+Fatface', 'sans-serif';
    font-weight: 600;
    color: #0D9F90;
    
    font-size: 3em;
}

#containerAbout .aboutBlockOne #aboutTwo{
    letter-spacing: 2px;
    line-height: 30px;
    
    
    font-size: 1em;
}

#containerAbout .aboutBlockTwo{
    padding: 5%;
    float: left;
}

#containerAbout .aboutBlockTwo #aboutThree{
    font-family: 'Abril+Fatface', 'sans-serif';
    font-weight: 600;
    color: #0D9F90;
    margin: 0 0 8% 0;
    letter-spacing: 1px;
    
    
    font-size: 3em;
}

#containerAbout .aboutBlockTwo #aboutFour{
    letter-spacing: 2px;
    line-height: 30px;
    border-left: 3px solid #0D9F90;
    padding: 0 0 0 5%;
    margin: 10%;
    
    
    font-size: 1em;
}

/* FOOTER
======================================================================================================================================================================================*/

#containerFooter{
    width: 100vw;
    height: 100vh;
    float: left;
    background: #4d4d4d;
    padding: 5% 0 0 0;
}

#logoverde{
    width: 100vw;
    padding: 0 3% 0 0; 
    float: left;
    text-align: right;
}

#logoverde img{
    padding: 0 0 5% 0;
    
    width: 250px;
}

.containerInfos{
    width: 100vw;
    float: left;
    position: relative;
    display: flex;
    justify-content: center;
    text-align: left;
    align-items: center;
}

.footerInfos{
    float: left;
    padding: 2%;
}

.infoTittle{
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 0 8% 0;
    color: #0D9F90;
    
    font-size: 1.5em;
}

.footerInfos a{
    font-weight: 300;
    color: white;
    
    font-size: 1.4em;
    line-height: 30px;
}

.footerInfos a:hover{
    color: #0D9F90;
}

#lastBlock{
    width: 100vw;
    float: left;
    text-align: center;
    position: relative;
    bottom: 0;
    z-index: 99;
    
    top: 60vh;
}

#lastBlock p:nth-child(1){
    font-family: 'Pacifico', 'cursive';
    color: #262626;
    
    font-size: 3em;
}

#lastBlock p:nth-child(2){
    font-size: 1.2em;
}
/* ANIMAÇÃO ONDAS ==========*/

.containerWavesFooter{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    height: 65vh;
    float: left;
}

.wavesFooter{
    position: absolute;
    left: -1000px;
    right: 0;
    bottom: 0;
}
    
.wave-1Footer{
    animation: moveWave4 3s ease-in-out infinite alternate;
}

@keyframes moveWave4 {
    from {
        transform: translateX(100px);
    }
}
    
.wave-2Footer{
        animation: moveWave5 3s 1.2s ease-in-out infinite alternate;
}

@keyframes moveWave5 {
    from {
        transform: translateX(100px);
    }
}
    
.wave-3Footer{
    animation: moveWave6 3s 0.7s ease-in-out infinite alternate;
}

@keyframes moveWave6 {
    from {
        transform: translateX(100px);
    }
}
}

