
:root{
    --green: #2ecc71;
    --red: #e74c3c;
    --main-color: #0682d1;
    --text-color: #FFFFFF;
    --text-dark: #C2CBE5;
    --background: #121725;
    --dark-grey: #2C344B;
    --light-grey: #5A668A;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html{
    font-size: 62.5%;
}

body{
    margin: 0 auto;
    background-color: var(--background);
    color: var(--text-color);
    font-family: 'chivo', sans-serif;
    font-size: 1.6rem;
    position: relative;
}

body::-webkit-scrollbar {
    display: none;
}

img{
    max-width: 100%;
    border-radius: 1-px;
    object-fit: cover;
}

nav{
    padding: 3rem 5rem;
}

.logo{
    display: none;
}

.container{
    margin: 0 auto;
    max-width: 100%;
    width: 1440px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 5rem;
    position: relative;
}

/***************************************************************/
.box-left_c{
    background-color: var(--background);
    width: 50%;
    padding: 20px;
    position: relative;
    z-index: 999;
}

.box-right{
    width: 40%;
    position: absolute;
    right: 0px;
}
.box-right img{
   max-height: 750px;
}

h1{
    margin-bottom: 30px;
    font-size: 4.5rem;
    font-weight: 300;
    text-transform: uppercase;
}
h3{
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
}

h1 > span{
    color: var(--main-color);
}

p{
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 1.8rem;
    width: 50rem;
    line-height: 2.8rem;
}
#footer{
    margin-top: 100px;
    padding: 30px;
    background-color: #000;
}
#footer p{
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 0s;
    width: 180rem;
    line-height: 2.8rem;
}
#footer h3{
    text-align: center;
}

.fieldForm{
    background-color: var(--dark-grey);
    font-family: inherit;
    font-size: 1.6rem;
    width: 50rem;
    margin-top: 12px;
    margin-bottom: 12px;
    border: none;
    border-radius: 50px;
    padding: 1.5rem 2rem;
    outline: none;
    color: #FFFFFF;
}
 

.fieldForm:focus{
    outline: 1.5px dashed var(--light-grey);
    outline-offset: .5rem;
}

::placeholder{
    font-family: inherit;
    color: var(--text-dark);
    opacity: .5;
}

button{
    background-color: var(--main-color);
    color: var(--background);
    font-weight: 600;
    font-size: 1.6rem;
    font-family: inherit;
    width: 18rem;
    margin-left: -190px;
    border: none;
    border-radius: 50px;
    padding: 1rem;
    cursor: pointer;
    transition: .3s;
}

button:hover{
    background-color: var(--light-grey);
    color: var(--text-color);
}

.box-left > form{
    display: block;
}

.box-message{
    font-size: 1.8rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.box-message > i{
    margin-left: 20px;
    margin-right: 5px;
    display: none;
}
.box-message small{
    visibility: hidden;
}

.error .fa-exclamation-circle{
    display: block;
    color: var(--red);
}

.error small{
    visibility: visible;
    color: var(--red);
}

.box-icons{
    width: 85%;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-icons > img{
    width: 11rem;
    padding-right: 20px;
}

.box-backgImage{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9999;
}

#about .image::before {
    content: '';
    height: 100%;
    width: 100%;
    background: var(--base-color-second);
    position: absolute;
    top: -8.3%;
    left: -33%;
    z-index: 0;
}

#about .image img {
    position: relative;
   
 }

 #about .image img,
 #about .image::before {
     border-radius: 0.25rem;
 }

 #about .text {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
 }
 .section-localizacao{
    margin-top: 100px;
 }
 .section{
    margin-top: 130px;
    padding-top: 50px;
    
 }
 
 h1 {
    color: var(--main-color);
 }
.image{ 
    padding-left: 10px;
    padding-right: 10px;
    max-width: 600px;
}
#slider img{
    box-shadow: 30%;
    max-width: 400px;
    min-width: 350px;
    opacity: 0;
    margin-top: -80px;
    position: absolute;
    transition: opacity 800ms;
}

#slider img.selected { 
    opacity: 1;
}

.section-avaliacao{ 
    margin-top: 100px;
}


@media (max-width: 1160px){
    #footer{
        margin-top: 40px;
    }
    .section-localizacao h1{
        padding-left: 10px;
     }
    .section-avaliacao{
        min-height: 400px;
       
    }
    .section-avaliacao img{
     
       padding-top: 300px;
    }
    .image{ 
        max-width: 500px;
    }
    .espacamento_conteudo{
        height: 670px;
    }
    .box-message{
        justify-content: center;
    }

    nav{
        display: none;
    }

    .box-right img{
        display: none;
    }

    body{
        background-image: url(assets/desktop/polimento-bmw.jpg);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center top;
    }

    .container{
        padding-left: 0;
        display: grid;
        align-items: center;
        justify-content: center;
    }

    .logo{
        width: 180px;
        display: block;
        margin: 5rem auto;
    }

    .box-left_c{
        margin: 0 auto;
        background-color: var(--background);
        opacity: .92;
        width: 100%;
        min-height: 100vh;
        display: grid;
        align-items: center;
        justify-content: center;
        padding: 5rem;
        text-align: center;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 999;
    }
    h1{
        font-size: 3rem;
    }
    h3{
        font-size: 2rem;
    }

    p{
        margin: 0 auto;
        max-width: 100%;
        width: 40rem;
        padding-bottom: 30px;
    }

    .box-icons{
        width: 100%;
        order: 2;
        justify-content: center;
    }

}

@media (max-width: 550px){
    #slider img{
        width: 300px;
        margin-top: 200px;
    }
    .section-avaliacao{
        margin-top: 30px;
        
     }
    .section-avaliacao img{
        padding-top: 0px;
     }
     .section-localizacao{
        margin-top: 30px;
     }
    .espacamento_conteudo{
        height: 750px;
    }
    p{
        margin-bottom: 20px;
        width: 35rem;
    }

    .fieldForm{
        max-width: 100%;
        width: 35rem;
        margin-bottom: 0;
    }
    
    button{
        max-width: 100%;
        width: 35rem;
        margin-top: 15px;
        margin-left: 0px;
        margin-bottom: 10px;
    }

    .box-left_c{
        padding: 5rem 2rem;
    }

    .box-icons{
        margin-top: 50px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    
    .box-icons > img{
        width: 15rem;
        padding: 20px;
    }

}

/* SLIDE ANIMATION */

.intro {
    background: black;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.hide {
    text-align: center;
    margin-bottom: 0 !important;
    background: transparent;
    overflow: hidden;
}

.hide > img{
    margin-bottom: 20px;
}

.hide > span {
    text-transform: uppercase;
    font-size: 3rem;
    transform: translateY(100%);
    display: inline-block;
}

.hide > .text_2{
    color: var(--text-color) !important;
}

.slider {
    background: var(--dark-grey);
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
}
.whatsIcon{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:20px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 1px 1px 2px #888;
    z-index:1000;
}

.fa-whatsapp{
    margin-top:16px
}

@media (max-width: 450px) {

    .whatsIcon{
        position:fixed;
        width:50px;
        height:50px;
    }
    .fa-whatsapp{
        margin:12px
    }
    
}