*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --color-neutral-0: #000000;/*nav-bar e footer*/
    --color-neutral-1: #141414;/*fundo do site*/
    --color-neutral-2: #080533;/*botoes do site*/
    --color-neutral-3: #ffffff;
    
}

button{
    cursor: pointer;
}



header{
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: var(--color-neutral-0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 111;
    text-decoration: none;
}

.logo{
    font-size: 28px;
    color: #a8a29e; 
}


.logo img{
    width: 430px;
}

@media screen and (max-width: 1100px) {
    .logo img{
        width: 230px;
    }
}

@media screen and (max-width: 938px){
    .logo  img{
        padding-right: 20px;
        width: 270px;
    }
}

.hamburguer{
    display: none;
}

.nav-bar ul{
    display: flex;
}

.nav-bar ul li a{
    display: block;
    color: #fff;
    font-size: 20px;
    padding: 10px 25px;
    transition: 0.2s;
    margin: 0 5px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 40px;
}

.nav-bar ul li a:hover{
    color: #585656;
    transition: 0.4s;
}



.nav-bar button{ 
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    background-color: var(--color-neutral-2);
    border-radius: 18px;
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
}

button:hover{
    transition: 0.5s;
    transform: scale(1.1);
}


@media only screen and (max-width:1320px){
    header{
        padding: 0 50px;
    }
}

@media only screen and (max-width:1100px){
    header{
        padding: 0 30px;
    }
}

@media only screen and (max-width:950px){
    .hamburguer{
        display: block;
        cursor: pointer;
    }
    .hamburguer .line{
        width: 30px;
        height: 3px;
        background: #fff;
        margin: 6px 0;
    }
    .nav-bar{
        
        height: 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background: black;
        transition: 0.2s;
        z-index: 99;
        overflow: hidden;
    }

    .nav-bar.active{
        height: 450px;
    }

    .nav-bar ul{
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }


    .nav-bar.active ul{
        opacity: 1;
    }

    .nav-bar ul li a{
        margin-bottom: 12px;
    }
}
/*fim navbar*/

body{
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    height: 100vh;
    background-color: var(--color-neutral-1);
}

.carro img{
    width: 400px;
    margin-top: 60px;
    margin-left: 230px;
}

@media only screen and (max-width:1320px){
    .carro img{
        width: 140px;
        padding-top: 20px;
        margin-left: 110px;
        
        
    }
}

.services h1{
    font-size: 60px;
}

@media only screen and (max-width:1320px){
    .services h1{
        padding-top: 150px;
        padding-right: 50px;
    }
}

.services{
    color: white;
    text-align: center;
    margin-top: -190px;
    margin-left: 30px;
    margin-bottom: 80px;
}

.services img{
    width: 230px;
    height: 90px;
    margin-top: -40px;
    margin-left: -50px;
}

.servicos h2{
    text-align: center;
    color: white;
    margin-top: 20px;
    font-size: 40px;
}

.services p{
    color: white;
    display: grid;
    text-align: justify;
    
    padding-right: 20px;
}

.servicos .container{
    background-color: rgb(27, 27, 27);
}

.servicos .container  p{
    text-align: center;
    color: white;
    flex-wrap: wrap;
}

.container p{
    padding-left: 10px;
    padding-right: 10px;
}

.servicos .rows-cards{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.servicos .rows-cards img{
    width: 150px;
}

.servicos .row-card-item{
    background-color: rgb(36, 35, 35);
    width: 350px;
    padding: 20px;
    border-radius: 14px;
    margin: 20px;
    transition: 0.3s;
}

.row-card-item img{
    background-color: white;
    border-radius: 10%;
    align-items: center;
    justify-content: center;
    margin-left: 80px;
}

.row-card-item h5{
    color: white;
    font-size: 23px;
    text-align: center;
}

.row-card-item p{
    font-size: 15px;
}

.contact button{
    justify-content: center;
    align-items: center;
    margin-left: 740px;
    margin-bottom: 20px;
    color: #fff;
    background-color: var(--color-neutral-2);
    text-decoration: none;
    border: none;
    width: 200px;
    height: 50px;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.contact button a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

footer{
    width: 100%;
    color: white;
    text-decoration: none;
}

.footer-link{
    text-decoration: none;
}

#footer_content{
    background-color: var(--color-neutral-1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 3.5rem;
    gap: 80px;
}

#footer_contacts img{
    margin-bottom: 0.75rem;
    width: 300px;
    margin-top: -120px;
    margin-bottom: -100px;
}

#footer_social_media{
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

#footer_social_media .footer-link{
    height: 2.5rem;
    width: 2.5rem;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

#footer_social_media .footer-link:hover{
    opacity: 0.8;
}

#instagram{
    background: linear-gradient(#7f37c9, #ff2992, #ff9807);
}

#facebook{
    background-color: #4267b3;
}

#whatsapp{
    background-color: #25d366;
}

#footer_social_media .footer-link i{
    font-size: 1.25rem;
}

.footer-list{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-list i{
    cursor: pointer;
    background-color: white;
    color: var(--color-neutral-2);
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    
}

.footer-list i:hover{
    transform: scale(1.2);
}

.footer-list .footer-link{
    color: white;
    transition: all 0.4s;
}

.footer-list .footer-link:hover{
    color: #979797;
}

@media screen and (max-width: 768px){
    #footer_content{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 426px){
    #footer_content{
        grid-template-columns: repeat(1, 1fr);
        padding: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .main{
        display: block;
        background-image: none;
    }
    }

    .showcase_content p{
        width: 50vw;
        text-align: center;
        justify-content: center;
    }

    .showcase_content h1{
        width: 50vw;
        
    }


.btn-whatsapp img{
    max-width: 74px;
    transition: transform 0.4s;
}

.btn-whatsapp{
    position: fixed;
    bottom: 14px;
    right: 24px;
    z-index: 99;
}

.btn-whatsapp img:hover{
    transform: scale(1.1);
}

.btn-whatsapp .texto-btn{
    visibility: hidden;
    position: absolute;
    width: 120px;
    top: 8px;
    left: -144px;
    padding: 6px;
    border-radius: 8px;
    text-align: center;
    background-color: #313131;
    color: white;
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-whatsapp:hover .texto-btn{
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 768px){
    .btn-whatsapp img{
        max-width: 54px;
    }
}