*{
    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: #122335fb;
    /*----------------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;
}

.cards{
    padding: 50px;
}

.cards .container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
}

.card{
    width: 270px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    cursor: default;
    border: 2px solid #606060;
    border-radius: 14px;
}

.card img{
    width: 80px;
    margin: 0 auto;
}

.card h5{
    text-align: center;
    font-size: 1.1rem;
    border-bottom: 2px solid #606060;
}

.card p{
    text-align: center;
    font-size: 0.9rem;
}

.facha{
    background: #525252;
}

.facha .container{
    gap: 30px;
}

.facha h6{
    color: rgb(0, 0, 0);
    font-size: 2rem;
    font-weight: 300;
}

.facha img{
    width: 250px;
}

.locacao{
    padding: 10px;
}

.locacao .container{
    background-image: var(--background-locacao), url(img/empilhadeira-destaque.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    max-width: 1050px;

    display: flex;
    justify-content: end;
    align-items: center;
}

.locacao .elementos-locacao{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.locacao h5{
    font-size: 2rem;
}

.locacao button{
    width: 230px;
    padding: 7px 20px;
    font-size: 1.1rem;
    color: white;
    background: rgb(206, 8, 8);

    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;
    height: 400px;
}

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: #097109;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0px 5px 23px 0px rgba(0,0,0,0.72);
    outline: none;
    border: none;
    cursor: pointer;
}

footer button:hover{
    background: #109e10;
}

@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;
    }
}

@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);
    }

    .cards .container{
        gap: 30px;
    }

    .facha .container{
        gap: 0;
        padding: 5px 20px;
    }

    .facha h6{
        font-size: 1.3rem;
        font-weight: 500;
        text-align: center;
    }

    .facha img{
        width: 200px;
    }

    .locacao .container{
        justify-content: center;
        background-image: var(--background-locacao-mobile), url(img/empilhadeira-destaque.jpg);
    }

    .locacao .elementos-locacao{
        width: 100%;
    }

    .locacao h5{
        font-size: 1.5rem;
    }
}