@import url('https://fonts.googleapis.com/css2?family=Explora&family=Lato:ital@1&family=Open+Sans&family=Open+Sans+Condensed:ital,wght@1,300&family=Roboto+Condensed:ital,wght@1,300&display=swap');

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root{
    --font-primary: "Explora", serif;
    --font-secundary: "Lato", serif;
    --font-action: "Open Sans", serif;
}

/* ---------------- Templates ---------------*/

/* hamburger */

.hamburguer{
    width: 2rem;
    height: 2rem;
    position: fixed;
    z-index: 100;
    right: 2rem;
    top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    cursor: pointer;
}

.show-menu .hamburguer{
    right: 15rem;
}

.line{
    width: 100%;
    height: .1rem;
    background-color: #fff;
    box-shadow: 0.1rem 0.1rem 1px #000;
}

.show-menu #line1{
    transform: rotate(45deg) translate(.3rem, .45rem);
}

.show-menu #line2{
    opacity: 0;
    visibility: hidden;
}

.show-menu #line3{
    transform: rotate(-45deg) translate(.1rem, -.45rem);
}

.hamburguer span{
    position: absolute;
    left: 3rem;
    height: 2rem;
    width: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1f4037;
    background: -webkit-linear-gradient(to right, #99f2c8, #1f4037);
    background: linear-gradient(to right, #99f2c8, #1f4037);
    font-family: var(--font-action);
    opacity: 0;
}

.hamburguer span::before{
    content: "";
    position: absolute;
    border-right: .5rem solid #99f2c8;
    border-top: .5rem solid transparent;
    border-left: .5rem solid transparent;
    border-bottom: .5rem solid transparent;
    left: -1rem;
}

.show-menu .hamburguer:hover span{
    transition: 0.7s;
    opacity: 0.8;
}

/* hamburger fim*/

/* imagem de fundo header inicio*/

header{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.img-wrapper{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8)
}

.img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    animation: zoom 25s;
}

@keyframes zoom {
    0%{
        transform: scale(1.3);
    }
    100%{
        transform: scale(1);
    }
}

/* imagem de fundo header fim*/

/* header MEGAINFO inicio*/

.banner{
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20%;
    padding-bottom: 15em;
    text-align: center;
}

.banner h1{
    color: #00FFFF;
    font-size: min(190px, 16vw);
    letter-spacing: 30px;
    font-family: "Bebas Neue", serif;
    font-weight: 200;
    text-shadow: .1rem .2rem 6px rgba(79, 179, 59, 0.8);
    line-height: 3.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: moveBanner 1s 0.5s forwards;
}

.banner p{
    font-family: "Open Sans";
    color: #00FFFF;
    font-size: min(60px, 5vw);
    letter-spacing: 9px;
    text-shadow: .1rem .2rem 6px rgba(79, 179, 59, 0.8);
    margin-bottom: 2rem;
    opacity: 0;
    animation: moveBanner 1s 0.7s forwards;
}

.banner button{
    font-family: "Lato", serif;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .1rem;
    background: #1f4037;
    background: -webkit-linear-gradient(to right, #99f2c8, #1f4037);
    background: linear-gradient(to right, #99f2c8, #1f4037);

    padding: 1rem 3rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0;
    animation: moveBanner 1s 0.9s forwards;
}

@keyframes moveBanner {
    0%{
        transform: translateY(10rem) rotateY(-30deg);
    }
    100%{
        transform: translateY(0) rotateY(0); 
        opacity: 1;
    }
}

.banner button:hover{
    color: black;
}

.sidebar{
    width: 20rem;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    right: -20rem;
    transition: all 0.4s;
}

.show-menu .sidebar{
    right: 0;
}

.menu{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-item{
    text-align: center;
}

.menu-link{
    height: 2.5rem;
    width: 2.5rem;
    font-family: var(--font-action);
    font-size: 1.4rem;
    color: #000;
    transition: color 0.4s;
}

.menu-link:hover{
    border-radius: 7px;
    color: whitesmoke;
    background-color: #1f4037;
}

.social-media{
    position: absolute;
    bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.social-media i{
    color: #000;
    height: 5rem;
    width: 5rem;
    border-radius: 7px;
    font-size: 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.4s;
}

.social-media i:hover{
    color: whitesmoke;
    background-color: #1f4037;
}

/*--------------------FORMATAÇÃO QUEM SOMOS--------------*/

.Quem-Somos{
    width: 100%;
    height: 100vh;
}

.title{
    font-size: 1.4em;
    font-family: "Open Sans", serif;
    line-height: 1.3rem;
    margin-bottom: 2rem;
}

.qs{
    height: 90%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin: 50px;
}

.Quem-Somos-Header{
    width: 50vw;
    font-family: var(--font-action);
    font-size: 18px;
    text-align: justify;
    text-indent: 40px;
    color: #000;
}

.logomi{
    height: 100%;
    width: 100%;
}

/*--------------------FORMATAÇÃO SERVIÇOS--------------*/

.cards-servicos{
    background-color: #000;
    height: 100vw;
    width: 100vh;
}

.servicos{
    justify-content: center;
    flex-wrap: wrap;
}

.servicos h2{
    font-size: 1.4em;
    font-family: "Open Sans", serif;
    line-height: 1.3rem;
    margin-bottom: 2rem;
}

.card{
    font-family: "Open Sans", serif;
    background: #fff;
    width: 240px;
    height: 390px;
    margin: 50px;
    border-radius: 15px;
    border: 2px solid #1f4037; 
}

.card-image{
    height: 190px;
    margin-bottom: 15px;
    background-size: cover;
    border-radius: 15px 15px 0 0;
}

.car-1{
    background-image: url('BancoDeImagem/ImagensCards/Sistema%20Operacional.png');
}

.car-2{
    background-image: url('BancoDeImagem/ImagensCards/Limpeza interna.jpg');
}

.car-3{
    background-image: url('BancoDeImagem/ImagensCards/Manutenção preventiva.png');
}

.car-4{
    background-image: url('BancoDeImagem/ImagensCards/Reparo em carcaças e dobradiças.jpg');
}

.car-5{
    background-image: url('BancoDeImagem/ImagensCards/Avaliação de desempenho.jpg');
}

.car-6{
    background-image: url('BancoDeImagem/ImagensCards/Substituicao de pecas.jpg');
}

.card:hover{
    background-color: #1f4037;
    color: white;
    transform: scale(1.1);
    transition: all 0.6s ease;
}

.title{
    text-align: center;
}

.pcard{    
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}


/*--------------------EFEITO SLIDE SERVIÇOS--------------*/




/*--------------------------FIM SLIDE SERVIÇOS-------------------------*/
