:root{
    --primary:#f39c12;
    --dark:#2c3e50;
    --light:#ecf0f1;
    --accent:#e67e22;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
}

body{
    background:var(--light);
    color:var(--dark);
}

/* HEADER */
header{
    background:rgba(44,62,80,.95);
    padding:.5rem 5%;
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:60px;
    border-radius:20px;
    background:#000;
}

nav ul{
    display:flex;
    list-style:none;
}

nav li{
    margin-left:20px;
}

nav a{
    color:#fff;
    text-decoration:none;
}

nav a:hover{
    color:var(--primary);
}

/* HERO */
.hero{
    height:80vh;
    margin-top:70px;
    background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url('https://pbs.twimg.com/media/G9gQ1c4XAAAO-iJ?format=jpg&name=medium') center/cover no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.hero h1{
    font-size:3rem;
}

.hero p{
    margin:20px 0;
    max-width:700px;
}

.btn{
    background:var(--primary);
    color:#fff;
    padding:12px 30px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:var(--accent);
    transform:scale(1.05);
}

/* SECTIONS */
.section{
    padding:80px 10%;
    text-align:center;
}

.section-white{
    background:#fff;
}

/* PRODUTOS */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:40px;
}

.card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
    opacity:0;
    transform:translateY(30px);
    transition:.5s;
}

.card.active{
    opacity:1;
    transform:translateY(0);
}

.product-img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:15px;
}

/* FROTA */
.frota-img{
    max-width:900px;
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:16px;
    margin:40px auto 15px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.frota-desc{
    max-width:700px;
    margin:0 auto;
    font-size:1.05rem;
    color:#555;
}

/* WHATSAPP */
.whatsapp-float{
    position:fixed;
    bottom:30px;
    right:30px;
    background:#25d366;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    text-decoration:none;
    z-index:999;
}

/* FOOTER */
footer{
    background:var(--dark);
    color:#fff;
    padding:50px 10%;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-info{
    text-align:center;
    flex:1;
}

.footer-logos-right{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:20px;
}

.footer-logos-right img{
    max-width:160px;
}

/* RESPONSIVO */
@media(max-width:768px){
    .hero h1{
        font-size:2rem;
    }

    .frota-img{
        height:250px;
    }

    .footer-content{
        flex-direction:column;
        gap:30px;
    }

    .footer-logos-right{
        align-items:center;
    }
}
