* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
}

/* ===== TOPO ===== */
.header {
    background: #0F0F0F;
    color: #fff;
    padding: 22px 0;
}

.header .container {
    width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #E87722;
}

.logo span {
    color: #fff;
}

.header a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
}

/* ===== CONTEÚDO ===== */
.container {
    width: 1200px;
    margin: 40px auto;
}

.title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* ===== GRID VEÍCULOS ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== CARD ===== */
.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: transform .2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.card-body {
    padding: 18px;
}

.card-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
}

.card-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.price {
    font-size: 22px;
    font-weight: 800;
    color: #E87722;
    margin-bottom: 14px;
}

.price small {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.btn {
    display: block;
    text-align: center;
    background: #E87722;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

.btn:hover {
    opacity: .9;
}

/* ===== RODAPÉ ===== */
.footer {
    background: #0F0F0F;
    color: #aaa;
    padding: 25px 0;
    margin-top: 60px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
/* ===== HERO ===== */
.hero {
    background: linear-gradient(90deg, #0F0F0F, #1c1c1c);
    color: #fff;
    padding: 70px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 40px;
    margin: 0 0 15px;
}

.hero h1 span {
    color: #E87722;
}

.hero p {
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
}

.hero .btn {
    margin-top: 20px;
    width: fit-content;
}

/* ===== INSTITUCIONAL ===== */
.section {
    padding: 60px 0;
}

.section.dark {
    background: #f8f8f8;
}

.section h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.section p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
}

/* ===== DIFERENCIAIS ===== */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,.07);
}

.feature h3 {
    margin: 0 0 10px;
    color: #E87722;
}

.feature p {
    color: #555;
    font-size: 15px;
}
