*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

:root{
    /**/
    /*---------------------PC----------------------------------*/
    --height-herader: 90px;
    --background-header: linear-gradient(30deg, #26262b, #7e7f8a, #dadada, #fff);
    --background-locacao: linear-gradient(90deg, #ffffff00, #ffffff00, #dadadae6, #dadadae6, #fff, #e7e7e7);
    --background-locacao-mobile: linear-gradient(#ffffff00, #ffffff00, #dadadae6, #dadadae6, #fff, #e7e7e7);
    --filtro-do-footer: #123524df;
    /*----------------netbook-------------------*/
}

.all-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

body{
    background: #e7e7e7;
}

.container{
    width: 100%;
    max-width: 1600px;
    padding: 0 20px;
}

header{
    background: var(--background-header);
    height: var(--height-herader);
}

header .container{
    justify-content: space-between;
    align-items: center;
    display: flex;
}

header .logo{
    width: 180px;
}

.menu-btn{
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn-fechar{
    display: none;
}

header .menu ul{
    display: flex;
    gap: 30px;
}

header .menu ul li a{
    color: black;
    font-size: 1.23rem;
    position: relative;
}

header .menu ul li a::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.753);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

header .menu ul li a:hover::after{
    width: 100%;
}

.hero{
    background-image: url(img/WhatsApp\ Image\ 2026-03-05\ at\ 15.05.43.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - var(--height-herader));
}

.elementos-do-hero{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.elementos-do-hero h1{
    font-size: 4rem;
    color: white;
}

.elementos-do-hero p{
    font-size: 1.8rem;
    color: white;
}

.elementos-do-hero .btn{
    display: flex;
    gap: 30px;
}

.elementos-do-hero button{
    padding: 15px 60px;
    font-size: 1.5rem;
    outline: none;
    border: none;
    cursor: pointer;
}

.elementos-do-hero button:hover{
    background: #d2d2d2;
}

.elementos-do-hero button:nth-of-type(1){
    background: #034603;
    color: white;
}

.elementos-do-hero button:nth-of-type(1):hover{
    background: #077f07;
}

.categoria-pecas{
    padding: 35px;
    background: #dadada;
}

.categoria-pecas .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.categoria-pecas .cards{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.categoria-pecas h2{
    text-align: center;
    font-size: 2rem;
}

.categoria-pecas .card{
    background: rgb(255, 255, 255);
    width: 270px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: default;
    border-radius: 5px;
    overflow: hidden;
}

.categoria-pecas .card img{
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
}

.categoria-pecas h4{
    text-align: center;
    font-size: 1.1rem;
}

.categoria-pecas .card p{
    text-align: center;
    font-size: 0.9rem;
    margin: 0 auto;
    max-width: 200px;
}

.categoria-pecas button{
    background: orange;
    color: white;
    margin: 0 auto;
    margin-bottom: 10px;
    padding: 5px;
    font-size: 0.9rem;
    width: 80%;
    border-radius: 5px;

    outline: none;
    border: none;
    cursor: pointer;
}

.diferenciais{
    padding: 35px;
}

.diferenciais .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.titulo-diferenciais{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.titulo-diferenciais img{
    width: 2rem;
}

.titulo-diferenciais h2{
    font-size: 2rem;
}

.diferenciais .descricao{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.diferenciais .cards{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.diferenciais .card{
    width: 300px;
    display: flex;
    align-items: start;
    gap: 10px;
    border-radius: 5px;
    overflow: hidden;
    padding: 5px;
}

.card.divisao{
    width: 5px;
    padding: 0;
    background: #c1c1c1a4;
}

.diferenciais .card img{
    width: 2rem;
}

.diferenciais .card p{
    font-size: 1.2rem;
}

.como-fuciona{
    padding: 35px;
    background-image: url(img/textura-metal-2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.como-fuciona .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.como-fuciona h2{
    text-align: center;
    color: white;
    letter-spacing: 2px;
    font-size: 2rem;
    border-bottom: 2px solid rgba(169, 169, 169, 0.508);
}

.como-fuciona .cards{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.como-fuciona .card{
    width: 380px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.como-fuciona .numero{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background: orange;
    border-radius: 50%;
}

.como-fuciona .card h4{
    font-size: 2.8rem;
    
    color: white;
}

.como-fuciona p{
    color: white;
    text-align: center;
    font-size: 1.2rem;
}

.como-fuciona .seta{
    color: #b9b9b9c4;
    font-size: 2rem;
}

.como-fuciona button{
    width: 330px;
    font-size: 1.5rem;
    padding: 5px;
    border-radius: 2px;
    color: white;
    background: rgb(205, 42, 48);

    outline: none;
    border: none;
    cursor: pointer;
}

footer{
    background-image: linear-gradient(var(--filtro-do-footer), var(--filtro-do-footer)), url(img/textura-metal.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
}

footer .container{
    max-width: 700px;
    gap: 20px;
    flex-direction: column;
    display: flex;
}

footer h4{
    text-align: center;
    font-size: 2.5rem;
    border-bottom: 1px solid #7777774d;
    padding-bottom: 10px;
    color: white;
}

footer p{
    text-align: center;
    font-size: 1.2rem;
    color: rgba(180, 180, 180, 0.943);
}

footer button{
    padding: 10px 45px;
    background: #ffb60b;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0px 5px 23px 0px rgba(0,0,0,0.72);
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

footer button:hover{
    background: #ffd027;
}

@media (max-width: 1380px) {
    .container{
        padding: 0 50px;
    }

    .elementos-do-hero{
        width: 60%;
    }

    .elementos-do-hero h1{
        font-size: 3.3rem;
    }

    .elementos-do-hero p{
        font-size: 1.5rem;
    }

    .elementos-do-hero button{
        padding: 10px 30px;
        font-size: 1.3rem;
    }

    .como-fuciona .seta{
        display: none;
    }
}

@media(max-width: 768px){
    .container{
        padding: 0 15px;
    }

    .hero{
        height: calc(70vh - var(--height-herader));
    }

    .elementos-do-hero{
        width: 100%;
    }

    .elementos-do-hero h1{
        font-size: 2rem;
    }

    .elementos-do-hero p{
        font-size: 1rem;
    }

    .elementos-do-hero button{
        font-size: 1rem;
        padding: 8px 10px;
    }

    .menu{
        display: flex;
        justify-content: start;
        align-items: start;
        padding-top: 80px;
        padding-left: 30px;
    }

    .menu-btn{
        display: block;
        cursor: pointer;
    }

    .menu-btn-fechar{
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;

        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
    }

    header .menu ul{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    header .menu{
        position: fixed;
        top: 0;
        right: 0;
        width: 180px;
        height: 400px;
        background: white;
        transform: translateX(100%);
        transition: transform 0.35s ease;
    }

    header .menu.ativo{
        transform: translateX(0);
    }

    .diferenciais .card.divisao{
        display: none;
    }
}