*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Poppins',sans-serif;

background:#f4f6f8;

color:#222;

}

header{

height:80px;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 80px;

background:white;

box-shadow:0 3px 20px rgba(0,0,0,.08);

position:sticky;

top:0;

z-index:1000;

}

.logo{

font-size:32px;

font-weight:800;

color:#003478;

}

nav{

display:flex;

gap:35px;

}

nav a{

text-decoration:none;

color:#444;

font-weight:500;

transition:.3s;

}

nav a:hover{

color:#ff6b00;

}

.hero{

max-width:1300px;

margin:auto;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

min-height:90vh;

padding:80px;

gap:60px;

}

.badge{

display:inline-block;

padding:10px 20px;

background:#ff6b00;

color:white;

border-radius:50px;

font-size:14px;

margin-bottom:25px;

}

.hero h1{

font-size:60px;

line-height:1.1;

margin-bottom:25px;

color:#003478;

}

.hero p{

font-size:20px;

line-height:1.8;

margin-bottom:35px;

color:#555;

}

.btn{

display:inline-block;

background:#003478;

color:white;

padding:18px 35px;

border-radius:12px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn:hover{

background:#ff6b00;

transform:translateY(-3px);

}

.hero-image img{

width:100%;

border-radius:20px;

box-shadow:0 20px 60px rgba(0,0,0,.15);

}

@media(max-width:900px){

header{

padding:20px;

flex-direction:column;

height:auto;

gap:20px;

}

.hero{

grid-template-columns:1fr;

padding:30px;

text-align:center;

}

.hero h1{

font-size:42px;

}

nav{

flex-wrap:wrap;

justify-content:center;

}

}
/*=============================
FEATURES
==============================*/

.features{

max-width:1200px;
margin:80px auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
padding:0 30px;

}

.feature-card{

background:#fff;
padding:35px;
border-radius:18px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;

}

.feature-card:hover{

transform:translateY(-8px);

}

.icon{

font-size:45px;
margin-bottom:20px;

}

.feature-card h3{

margin-bottom:10px;
color:#003478;

}

.feature-card p{

color:#555;

}

/*=============================
PARTS
==============================*/

.parts{

background:#ffffff;
padding:100px 30px;

}

.title{

max-width:800px;
margin:auto;
text-align:center;
margin-bottom:60px;

}

.title span{

color:#ff6b00;
font-weight:700;
text-transform:uppercase;

}

.title h2{

font-size:42px;
margin:15px 0;

}

.title p{

color:#666;
line-height:1.8;

}

.parts-grid{

max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.part-card{

background:#f8f9fb;
padding:35px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.07);
transition:.3s;

}

.part-card:hover{

transform:translateY(-10px);

}

.part-card h3{

margin-bottom:25px;
color:#003478;

}

.available{

background:#17a34a;
color:white;
padding:8px 18px;
border-radius:40px;
font-size:14px;

}

/*=============================
INFO
==============================*/

.vehicle-info{

max-width:1200px;
margin:100px auto;
padding:0 30px;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.vehicle-info h2{

font-size:42px;
margin-bottom:25px;
color:#003478;

}

.vehicle-info p{

line-height:2;
color:#555;
margin-bottom:30px;

}

.info-right{

background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,.08);

}

table{

width:100%;
border-collapse:collapse;

}

td{

padding:18px 10px;
border-bottom:1px solid #eee;

}

td:first-child{

font-weight:700;
color:#003478;

}

/*=============================
RESPONSIVE
==============================*/

@media(max-width:900px){

.features{

grid-template-columns:1fr 1fr;

}

.parts-grid{

grid-template-columns:1fr;

}

.vehicle-info{

grid-template-columns:1fr;

}

}

@media(max-width:600px){

.features{

grid-template-columns:1fr;

}

.title h2{

font-size:32px;

}

.vehicle-info h2{

font-size:32px;

}

}
.whatsapp-float{

position:fixed;

bottom:25px;

right:25px;

width:65px;

height:65px;

background:#25D366;

color:white;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

border-radius:50%;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:9999;

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.08);

}
.btn-whatsapp {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 28px;
    background: #25D366;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}
.contact-section {
    padding: 100px 30px;
    background: #003478;
}

.contact-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: white;
}

.contact-box span {
    color: #ff6b00;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-box h2 {
    font-size: 42px;
    margin: 15px 0 20px;
}

.contact-box p {
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
    opacity: .9;
}

.contact-whatsapp {
    display: inline-block;
    padding: 17px 32px;
    background: #25D366;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.contact-whatsapp:hover {
    transform: translateY(-3px);
}
/* ==========================
FOOTER
========================== */

.footer {
    background: #111827;
    color: white;
    padding: 70px 30px 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 400px;
    color: #b8bec8;
    line-height: 1.8;
}

.footer h3 {
    font-size: 17px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #b8bec8;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #ff6b00;
}

.footer-contact p {
    color: #b8bec8;
    margin-bottom: 15px;
}

.footer-contact a {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    max-width: 1200px;
    margin: auto;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #8d95a3;
    font-size: 13px;
}

@media(max-width:900px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:600px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}