/* Base */
:root {
    --bg: #0b0b0b;
    --bg-2: #111111;
    --fg: #0b1f16;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --white: #ffffff;
    --brand: #f97316; /* laranja */
    --brand-2: #ea580c; /* laranja escuro */
    --border: #1f2937;
    --shadow: 0 10px 25px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg-2);
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
    background: var(--white);
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: var(--shadow);
}

/* Topbar */
.topbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
    height: 48px;
    width: auto;
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 60%, #eef2f7 100%);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 6px 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text span { font-size: 12px; color: var(--muted); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 600;
    text-decoration: none;
    transition: transform .06s ease, background .2s ease, box-shadow .2s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-2); }
.btn-secondary { background: #1f2937; color: #e5e7eb; border-color: var(--border); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-whatsapp { background: #25d366; color: var(--white); box-shadow: var(--shadow); }
.btn-whatsapp:hover { background: #20ba5a; }
.btn-phone { background: #dc2626; color: var(--white); box-shadow: var(--shadow); }
.btn-phone:hover { background: #b91c1c; }
.btn-full { width: 100%; }

/* Hero */
.hero {
    position: relative;
    background-image: 
        linear-gradient(180deg, rgba(11,11,11,.85), rgba(17,17,17,.90)),
        url('./caminhão.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll;
    color: var(--white);
    padding: 64px 0 48px;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.hero-side {
    height: 300px;
    max-height: 400px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    object-position: center;
    opacity: 0.95;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    display: block;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
}
.hero-text .eyebrow { text-transform: uppercase; letter-spacing: .12em; opacity: .9; font-weight: 700; text-align: center; }
.hero-text h1 { font-size: 48px; line-height: 1.1; margin: 8px 0 12px; text-align: center; }
.hero-text .subtitle { color: #d1d5db; margin-bottom: 20px; text-align: center; }
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; justify-content: center; }
.checks { margin: 16px 0 0; padding: 0; list-style: none; text-align: center; }
.checks li { margin: 6px 0; }

/* Card */
.card {
    background: #0f0f0f;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
}
.card h2 { margin: 0 0 4px; }
.muted { color: var(--muted); }
.small { font-size: 12px; }
.center { text-align: center; }

/* Form */
form { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
.field.inline { grid-template-columns: 1fr 1fr; gap: 12px; }
label { font-weight: 600; font-size: 14px; }
input, select, textarea {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #0f0f0f;
    color: var(--text);
    font: inherit;
}
input:focus, select:focus, textarea:focus { outline: 2px solid #a7f3d0; border-color: var(--brand); }
.checkbox { display: inline-flex; align-items: flex-start; gap: 8px; }
.checkbox input { margin-top: 3px; }
.error { color: #b91c1c; font-size: 12px; min-height: 14px; }

/* Features */
.section.features { background: #0b0b0b; padding: 40px 0; }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; list-style: none; padding: 0; margin: 0; }
.feature-list h3 { margin: 0 0 6px; }
.feature-list p { margin: 0; color: var(--muted); }

/* CTA Bottom */
.cta-bottom { background: #0f0f0f; padding: 40px 0; }
.cta-card { background: #0b0b0b; border: 1px solid var(--border); border-radius: 14px; padding: 20px; display: grid; gap: 10px; box-shadow: var(--shadow); text-align: center; }

/* Footer */
.footer { background: #000; color: #cbd5e1; }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px; }
.foot-actions { display: flex; gap: 10px; }

/* Responsive */
@media (max-width: 960px) {
    .grid-2 { grid-template-columns: 1fr; }
    .field.inline { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 36px; }
    .hero { 
        min-height: 500px;
        padding: 40px 0;
    }
    .hero-image-wrapper { 
        margin-top: 30px;
    }
    .hero-side {
        height: 250px;
        max-height: 250px;
        max-width: 350px;
        width: auto;
    }
}


