:root{
    --bg:#0b0b0d;
    --bg-soft:#121317;
    --card:#ffffff;
    --text:#16181d;
    --text-soft:#5f6673;
    --white:#ffffff;
    --orange:#ff642b;
    --orange-dark:#e9551f;
    --green:#25d366;
    --border:#e7e9ee;
    --light:#f5f7fb;
    --shadow:0 16px 40px rgba(0,0,0,.12);
    --radius:18px;
    --container:1180px;
}

/* RESET */
*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
    color:var(--text);
    line-height:1.5;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

button,
input,
select,
textarea{
    font:inherit;
}

.container{
    width:min(100% - 32px, var(--container));
    margin:0 auto;
}

.mt-24{
    margin-top:24px;
}

/* HEADER */
.site-header{
    background:#0a0a0c;
    border-bottom:1px solid rgba(255,255,255,.06);
    position:sticky;
    top:0;
    z-index:100;
}

.header-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    min-height:84px;
}

.logo img{
    height:52px;
    width:auto;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.main-nav a{
    color:#fff;
    font-weight:700;
    font-size:15px;
}

.header-whatsapp{
    background:var(--orange);
    color:#fff;
    padding:12px 18px;
    border-radius:12px;
    font-weight:700;
    transition:.2s;
}

.header-whatsapp:hover{
    background:var(--orange-dark);
}

/* HERO ANTIGO */
.hero{
    background:
        linear-gradient(120deg, rgba(0,0,0,.88), rgba(20,20,24,.80)),
        radial-gradient(circle at top left, rgba(255,100,43,.22), transparent 35%);
    color:#fff;
    padding:72px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:32px;
    align-items:center;
}

.hero-badge,
.section-tag{
    display:inline-block;
    background:rgba(255,100,43,.14);
    color:var(--orange);
    border:1px solid rgba(255,100,43,.25);
    border-radius:999px;
    padding:8px 14px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.hero-text h1{
    font-size:52px;
    line-height:1.08;
    margin-bottom:18px;
    max-width:760px;
}

.hero-text p{
    font-size:18px;
    color:rgba(255,255,255,.82);
    max-width:700px;
    margin-bottom:28px;
}

.search-bar{
    display:grid;
    grid-template-columns:1.6fr 1fr auto;
    gap:12px;
    margin-bottom:20px;
}

.search-bar input{
    height:56px;
    border:none;
    border-radius:14px;
    padding:0 16px;
    font-size:15px;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    border-radius:24px;
    padding:28px;
    backdrop-filter:blur(8px);
    box-shadow:var(--shadow);
}

.hero-card img{
    max-height:72px;
    width:auto;
    margin-bottom:20px;
}

.hero-card ul{
    list-style:none;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:18px;
}

.hero-card li{
    background:rgba(255,255,255,.08);
    border-radius:12px;
    padding:12px 14px;
    font-weight:700;
}

.hero-card p{
    color:rgba(255,255,255,.82);
    font-size:14px;
}

/* SECTIONS */
.section{
    padding:72px 0;
}

.section.alt{
    background:var(--light);
}

.section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:24px;
}

.section-head h2{
    font-size:36px;
    line-height:1.1;
}

.section-head a{
    color:var(--orange);
    font-weight:700;
}

/* BUTTONS */
.btn,
.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 18px;
    border-radius:14px;
    font-weight:800;
    border:none;
    cursor:pointer;
    transition:.2s;
    background:var(--orange);
    color:#fff;
}

.btn:hover,
.btn-primary:hover{
    background:var(--orange-dark);
    color:#fff;
}

.btn-outline{
    border:1px solid rgba(255,255,255,.22);
    background:transparent;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
}

.btn-dark{
    background:#121317;
    color:#fff;
}

.btn-dark:hover{
    background:#22252e;
}

/* GRID / CARDS */
.grid-cards{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.vehicle-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(12,18,28,.06);
    transition:.2s ease;
}

.vehicle-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 36px rgba(12,18,28,.12);
}

.vehicle-image-wrap{
    position:relative;
    display:block;
    aspect-ratio:16/11;
    background:#f2f3f6;
}

.vehicle-image{
    width:100%;
    height:100%;
    object-fit:cover;
}

.vehicle-badge{
    position:absolute;
    top:14px;
    left:14px;
    background:var(--orange);
    color:#fff;
    font-size:12px;
    font-weight:800;
    padding:8px 12px;
    border-radius:999px;
}

.vehicle-body{
    padding:20px;
}

.vehicle-body h3{
    font-size:22px;
    line-height:1.2;
    margin-bottom:12px;
    min-height:52px;
}

.vehicle-meta{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:16px;
}

.vehicle-meta span{
    background:#f3f5f9;
    color:#424958;
    padding:8px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

.vehicle-price{
    color:var(--orange);
    font-size:28px;
    font-weight:900;
    margin-bottom:18px;
}

.vehicle-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.empty-box{
    grid-column:1 / -1;
    background:#fff;
    border:1px dashed #d7dce5;
    border-radius:20px;
    padding:36px;
    text-align:center;
}

.empty-box h3{
    font-size:24px;
    margin-bottom:8px;
}

.empty-box p{
    color:var(--text-soft);
}

/* CONTACT STRIP */
.contact-strip{
    background:#0d0f14;
    color:#fff;
}

.contact-strip-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}

.contact-strip-inner h2{
    font-size:34px;
    margin-bottom:8px;
}

.contact-strip-inner p{
    color:rgba(255,255,255,.78);
}

/* FOOTER */
.site-footer{
    background:#08090c;
    color:#fff;
    padding-top:56px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:28px;
    padding-bottom:40px;
}

.footer-logo{
    height:56px;
    width:auto;
    margin-bottom:14px;
}

.footer-text,
.site-footer p,
.site-footer a{
    color:rgba(255,255,255,.80);
}

.site-footer h4{
    margin-bottom:12px;
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:18px 0;
}

/* FLOATING WHATSAPP */
.floating-whatsapp{
    position:fixed;
    right:18px;
    bottom:18px;
    background:var(--green);
    color:#fff;
    padding:14px 18px;
    border-radius:999px;
    font-weight:800;
    box-shadow:0 12px 30px rgba(37,211,102,.35);
    z-index:999;
}

/* VEHICLE DETAIL */
.breadcrumb{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
    margin-bottom:24px;
    color:var(--text-soft);
    font-size:14px;
}

.breadcrumb a{
    color:var(--text-soft);
}

.vehicle-detail-section{
    background:var(--light);
}

.vehicle-detail-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:28px;
    align-items:start;
}

.vehicle-gallery-card,
.vehicle-info-card,
.proposal-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    box-shadow:0 12px 30px rgba(12,18,28,.06);
}

.vehicle-gallery-card{
    padding:20px;
}

.vehicle-info-card{
    padding:28px;
}

.vehicle-main{
    width:100%;
    border-radius:18px;
    object-fit:cover;
    background:#f2f3f6;
}

.thumbs{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:12px;
    margin-top:16px;
}

.thumbs a{
    display:block;
    border-radius:14px;
    overflow:hidden;
    border:1px solid var(--border);
    background:#f7f8fb;
}

.thumbs img{
    width:100%;
    height:100px;
    object-fit:cover;
}

.vehicle-info-card h1{
    font-size:38px;
    line-height:1.1;
    margin-bottom:14px;
}

.price-big{
    font-size:42px;
    font-weight:900;
    color:var(--orange);
    margin-bottom:18px;
}

.vehicle-highlight-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:22px;
}

.vehicle-highlight-list span{
    background:#f3f5f9;
    color:#424958;
    padding:9px 13px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
}

.specs{
    list-style:none;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin:24px 0;
}

.specs li{
    background:#f9fafc;
    border:1px solid #edf0f5;
    border-radius:14px;
    padding:12px 14px;
    color:#2e3440;
}

.detail-box{
    margin-top:18px;
    padding:18px;
    border-radius:18px;
    background:#fafbfd;
    border:1px solid #edf0f5;
}

.detail-box h3{
    margin-bottom:10px;
    font-size:20px;
}

.contact-box{
    background:#fff7f3;
    border-color:#ffd6c6;
}

.cta-row{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:8px;
}

.proposal-card{
    margin-top:28px;
    padding:28px;
}

.proposal-head{
    margin-bottom:18px;
}

.proposal-head h2{
    font-size:32px;
    line-height:1.1;
    margin-bottom:8px;
}

.proposal-head p{
    color:var(--text-soft);
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
    margin-bottom:14px;
}

.proposal-form input,
.proposal-form textarea{
    width:100%;
    border:1px solid var(--border);
    border-radius:14px;
    padding:14px 16px;
    font-size:15px;
    font-family:inherit;
    outline:none;
    background:#fff;
}

.proposal-form textarea{
    min-height:140px;
    resize:vertical;
    margin-bottom:14px;
}

.proposal-form input:focus,
.proposal-form textarea:focus{
    border-color:rgba(255,100,43,.55);
    box-shadow:0 0 0 4px rgba(255,100,43,.10);
}

/* STOCK PAGE */
.stock-page{
    background:var(--light);
}

.page-top{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:20px;
    margin-bottom:28px;
}

.page-top h1{
    font-size:42px;
    line-height:1.08;
    margin-bottom:8px;
}

.page-subtitle{
    color:var(--text-soft);
    max-width:720px;
}

.results-box{
    min-width:180px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(12,18,28,.05);
}

.results-box strong{
    display:block;
    font-size:36px;
    color:var(--orange);
    line-height:1;
    margin-bottom:6px;
}

.results-box span{
    color:var(--text-soft);
    font-size:14px;
    font-weight:700;
}

.filters-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:22px;
    box-shadow:0 10px 25px rgba(12,18,28,.05);
}

.filters-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:14px;
}

.filters-grid input,
.filters-grid select{
    width:100%;
    min-height:52px;
    border:1px solid var(--border);
    border-radius:14px;
    padding:0 14px;
    font-size:15px;
    background:#fff;
    outline:none;
}

.filters-grid input:focus,
.filters-grid select:focus{
    border-color:rgba(255,100,43,.55);
    box-shadow:0 0 0 4px rgba(255,100,43,.10);
}

.filter-actions{
    display:flex;
    gap:10px;
}

/* CONTACT PAGE */
.contact-page-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:28px;
}

.contact-info-card,
.contact-map-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:28px;
    box-shadow:0 10px 25px rgba(12,18,28,.05);
}

.contact-info-card h2,
.contact-map-card h2{
    font-size:28px;
    margin-bottom:18px;
}

.contact-list{
    display:grid;
    gap:16px;
}

.contact-item{
    padding:16px 18px;
    border:1px solid #edf0f5;
    background:#fafbfd;
    border-radius:16px;
}

.contact-item strong{
    display:block;
    margin-bottom:6px;
    color:#1f2430;
}

.contact-item p,
.contact-item a{
    color:var(--text-soft);
}

.contact-actions{
    margin-top:20px;
}

.map-frame{
    width:100%;
    overflow:hidden;
    border-radius:18px;
    border:1px solid #edf0f5;
    min-height:420px;
    background:#f8f9fb;
}

.map-frame iframe{
    width:100%;
    height:420px;
    border:0;
    display:block;
}

.map-placeholder{
    min-height:420px;
    border:1px dashed #d7dce5;
    border-radius:18px;
    background:#fafbfd;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:24px;
    color:var(--text-soft);
}

.map-placeholder p + p{
    margin-top:8px;
}

/* LOGIN ADMIN */
.admin-login-body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    min-height:100vh;
}

.login-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.login-card{
    width:100%;
    max-width:420px;
    background:#ffffff;
    border-radius:18px;
    padding:36px 30px;
    box-shadow:0 20px 60px rgba(0,0,0,0.25);
    text-align:center;
}

.login-logo{
    margin-bottom:18px;
}

.login-logo img{
    max-width:180px;
    width:100%;
    height:auto;
}

.login-card h1{
    margin:0 0 8px;
    font-size:34px;
    color:#111827;
}

.login-subtitle{
    margin:0 0 24px;
    color:#6b7280;
    font-size:15px;
    line-height:1.5;
}

.login-form{
    text-align:left;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:7px;
    font-size:14px;
    font-weight:700;
    color:#111827;
}

.form-group input{
    width:100%;
    height:48px;
    border:1px solid #d1d5db;
    border-radius:12px;
    padding:0 14px;
    font-size:15px;
    outline:none;
    transition:0.2s;
    box-sizing:border-box;
}

.form-group input:focus{
    border-color:#ff642b;
    box-shadow:0 0 0 4px rgba(255,100,43,0.12);
}

.btn-login{
    width:100%;
    height:50px;
    border:none;
    border-radius:14px;
    background:#ff642b;
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:0.2s;
}

.btn-login:hover{
    background:#e9551f;
    transform:translateY(-1px);
}

.alert-error{
    background:#fee2e2;
    color:#991b1b;
    border:1px solid #fecaca;
    padding:12px 14px;
    border-radius:12px;
    margin-bottom:18px;
    font-size:14px;
    text-align:left;
}

/* DASHBOARD ADMIN */
.admin-shell{
    display:flex;
    min-height:100vh;
}

.admin-sidebar{
    width:260px;
    background:#0f172a;
    color:#fff;
    padding:24px 18px;
    flex-shrink:0;
}

.admin-sidebar .brand{
    display:block;
    margin-bottom:30px;
    font-size:24px;
    font-weight:700;
    color:#fff;
}

.admin-sidebar nav{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.admin-sidebar nav a{
    display:block;
    color:#e5e7eb;
    padding:12px 14px;
    border-radius:12px;
    transition:0.2s;
}

.admin-sidebar nav a:hover{
    background:rgba(255,255,255,0.08);
    color:#fff;
}

.admin-main{
    flex:1;
    padding:32px;
    background:#f4f7fb;
}

.admin-main h1{
    margin:0 0 24px;
    font-size:38px;
    color:#0f172a;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.stat{
    background:#fff;
    border-radius:18px;
    padding:22px;
    box-shadow:0 10px 30px rgba(15,23,42,0.08);
    border:1px solid #e5e7eb;
}

.stat span{
    display:block;
    font-size:14px;
    color:#6b7280;
    margin-bottom:8px;
}

.stat strong{
    font-size:34px;
    color:#111827;
}

.box{
    background:#fff;
    border-radius:18px;
    padding:24px;
    box-shadow:0 10px 30px rgba(15,23,42,0.08);
    border:1px solid #e5e7eb;
}

.box h2{
    margin:0 0 18px;
    font-size:24px;
    color:#111827;
}

.table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
}

.table th,
.table td{
    padding:14px 12px;
    text-align:left;
    border-bottom:1px solid #e5e7eb;
    font-size:14px;
}

.table th{
    background:#f8fafc;
    color:#374151;
    font-weight:700;
}

.table tr:hover td{
    background:#fcfcfd;
}

.alert.success{
    margin-bottom:18px;
    background:#dcfce7;
    border:1px solid #bbf7d0;
    color:#166534;
    padding:12px 14px;
    border-radius:12px;
}

.section-head .btn-primary{
    background:#ff642b !important;
    color:#fff !important;
    opacity:1 !important;
    box-shadow:0 8px 20px rgba(255,100,43,.30);
}

/* FORM ADMIN */
.form-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:24px;
    box-shadow:0 10px 30px rgba(15,23,42,0.08);
}

.admin-form{
    display:grid;
    gap:18px;
}

.admin-form-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
}

.admin-form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.admin-form-group.full{
    grid-column:1 / -1;
}

.admin-form-group label{
    font-size:14px;
    font-weight:700;
    color:#111827;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea{
    width:100%;
    min-height:48px;
    padding:12px 14px;
    border:1px solid #d1d5db;
    border-radius:12px;
    background:#fff;
    outline:none;
    font-size:15px;
}

.admin-form-group textarea{
    min-height:120px;
    resize:vertical;
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus{
    border-color:#ff642b;
    box-shadow:0 0 0 4px rgba(255,100,43,0.12);
}

.admin-check-row{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    align-items:center;
}

.admin-check-row label{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
}

.form-actions{
    display:flex;
    justify-content:flex-end;
    margin-top:8px;
}

/* VIEWER */
.viewer{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.viewer img{
    max-width:90%;
    max-height:90%;
}

.viewer-close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

.viewer-prev,
.viewer-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:50px;
    color:#fff;
    cursor:pointer;
    padding:20px;
}

.viewer-prev{
    left:30px;
}

.viewer-next{
    right:30px;
}

.thumb-img{
    cursor:pointer;
}

/* HERO NOVO */
.hero-new{
    position:relative;
    overflow:hidden;
    min-height:760px;
    background:linear-gradient(135deg, #050608 0%, #101216 45%, #1a1d22 100%);
    color:#fff;
    display:flex;
    align-items:center;
}

.hero-new-bg{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 15% 25%, rgba(255,100,43,.22), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(255,100,43,.14), transparent 24%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,.05), transparent 20%);
    z-index:1;
}

.hero-new-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(5,6,8,.92) 0%, rgba(5,6,8,.76) 42%, rgba(5,6,8,.28) 100%);
    z-index:2;
}

.hero-new-content{
    position:relative;
    z-index:3;
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:56px;
    align-items:center;
    padding-top:70px;
    padding-bottom:70px;
}

.hero-new-text{
    max-width:680px;
}

.hero-new-badge{
    display:inline-flex;
    align-items:center;
    padding:12px 18px;
    border-radius:999px;
    border:1px solid rgba(255,100,43,.45);
    background:rgba(255,100,43,.10);
    color:#ff642b;
    font-weight:700;
    font-size:.95rem;
    margin-bottom:22px;
}

.hero-new h1{
    font-size:clamp(32px, 3.6vw, 52px);
    line-height:1.1;
    letter-spacing:-0.5px;
    margin:0 0 18px;
    color:#fff;
    max-width:680px;
}

.hero-new p{
    font-size:1rem;
    line-height:1.65;
    color:rgba(255,255,255,.85);
    max-width:600px;
    margin:0 0 28px;
}

.hero-new-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:30px;
}

.btn-outline-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:0 24px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    background:rgba(255,255,255,.04);
    font-weight:700;
    transition:.2s ease;
}

.btn-outline-light:hover{
    background:rgba(255,255,255,.10);
    transform:translateY(-1px);
}

.hero-new-numbers{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:14px;
    max-width:760px;
}

.hero-number-box{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:18px;
    backdrop-filter:blur(6px);
    box-shadow:0 15px 35px rgba(0,0,0,.14);
}

.hero-number-box strong{
    display:block;
    color:#fff;
    font-size:1.08rem;
    margin-bottom:6px;
}

.hero-number-box span{
    display:block;
    color:rgba(255,255,255,.76);
    font-size:.95rem;
    line-height:1.4;
}

/* VITRINE DIREITA */
.hero-new-showcase{
    position:relative;
    min-height:560px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left:34px;
}

.hero-car-card{
    position:absolute;
    border-radius:28px;
    overflow:hidden;
    background:linear-gradient(180deg, #1d2026 0%, #111318 100%);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 24px 70px rgba(0,0,0,.28);
}

.hero-car-card img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-car-card-main{
    width:420px;
    height:480px;
    right:20px;
    top:40px;
    z-index:2;
}

.hero-car-card-small{
    width:260px;
    height:190px;
    z-index:3;
}

.hero-car-card-small.top{
    left:-40px;
    top:20px;
    transform:rotate(-6deg);
}

.hero-car-card-small.bottom{
    left:-20px;
    bottom:40px;
    transform:rotate(6deg);
}

.hero-floating-box{
    position:absolute;
    right:0;
    bottom:15px;
    z-index:4;
    background:#ff642b;
    color:#fff;
    border-radius:20px;
    padding:18px 22px;
    min-width:220px;
    box-shadow:0 22px 45px rgba(255,100,43,.28);
}

.hero-floating-box span{
    display:block;
    font-size:.9rem;
    opacity:.92;
    margin-bottom:4px;
}

.hero-floating-box strong{
    font-size:1.1rem;
}

.home-strip{
    position:relative;
    margin-top:-55px;
    z-index:5;
}

.home-strip-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.home-strip-box{
    background:#fff;
    border-radius:24px;
    padding:26px 22px;
    box-shadow:0 16px 40px rgba(0,0,0,.08);
    border:1px solid #eceff4;
}

.home-strip-box h3{
    font-size:1.15rem;
    margin-bottom:10px;
    color:#16181d;
}

.home-strip-box p{
    margin:0;
    color:#5f6673;
    line-height:1.55;
}

.section-home-stock{
    padding-top:95px;
}

.cta-banner{
    padding:70px 0;
    background:linear-gradient(135deg, #101216 0%, #181c22 100%);
}

.cta-banner-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    background:linear-gradient(135deg, rgba(255,100,43,.16) 0%, rgba(255,255,255,.03) 100%);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:34px;
}

.cta-banner-inner h2{
    color:#fff;
    margin:10px 0;
}

.cta-banner-inner p{
    color:rgba(255,255,255,.78);
    margin:0;
}

.cta-banner-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.admin-footer-access{
    background:#0b0d11;
    border-top:1px solid rgba(255,255,255,.06);
    padding:18px 0;
}

.admin-footer-access-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.admin-footer-access-inner span{
    color:#cfd5df;
    font-size:.95rem;
}

.btn-admin-footer{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 18px;
    border-radius:14px;
    background:#232831;
    color:#fff;
    font-weight:700;
    border:1px solid rgba(255,255,255,.08);
    transition:.2s ease;
}

.btn-admin-footer:hover{
    background:#2d3440;
}

/* RESPONSIVE */
@media (max-width: 980px){
    .hero-grid,
    .footer-grid,
    .contact-strip-inner{
        grid-template-columns:1fr;
        display:grid;
    }

    .grid-cards{
        grid-template-columns:repeat(2, 1fr);
    }

    .search-bar{
        grid-template-columns:1fr;
    }

    .header-row{
        flex-wrap:wrap;
        justify-content:center;
        padding:14px 0;
    }

    .main-nav{
        order:3;
        width:100%;
        justify-content:center;
    }

    .hero-text h1{
        font-size:38px;
    }

    .vehicle-detail-grid{
        grid-template-columns:1fr;
    }

    .specs{
        grid-template-columns:1fr;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .vehicle-info-card h1{
        font-size:30px;
    }

    .price-big{
        font-size:34px;
    }

    .page-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .results-box{
        min-width:auto;
        width:100%;
    }

    .filters-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .contact-page-grid{
        grid-template-columns:1fr;
    }

    .admin-shell{
        flex-direction:column;
    }

    .admin-sidebar{
        width:100%;
    }

    .stats-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 900px){
    .admin-form-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width: 1100px){
    .hero-new-content{
        grid-template-columns:1fr;
        gap:34px;
    }

    .hero-new-showcase{
        min-height:420px;
        margin-left:0;
    }

    .hero-car-card-main{
        position:relative;
        right:auto;
        top:auto;
        width:100%;
        max-width:520px;
        height:340px;
    }

    .hero-car-card-small{
        display:none;
    }

    .hero-floating-box{
        right:20px;
        bottom:10px;
    }

    .home-strip-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .hero-new{
        min-height:auto;
    }

    .hero-new-content{
        padding-top:40px;
        padding-bottom:40px;
    }

    .hero-new h1{
        font-size:2.25rem;
    }

    .hero-new-numbers{
        grid-template-columns:1fr;
    }

    .home-strip{
        margin-top:0;
        padding-top:24px;
    }

    .home-strip-grid{
        grid-template-columns:1fr;
    }

    .cta-banner-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .admin-footer-access-inner{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media (max-width: 640px){
    .grid-cards{
        grid-template-columns:1fr;
    }

    .section-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero{
        padding:56px 0;
    }

    .hero-text h1{
        font-size:30px;
    }

    .vehicle-actions{
        flex-direction:column;
    }

    .btn,
    .btn-primary,
    .btn-dark{
        width:100%;
    }

    .btn-outline-light{
        width:100%;
    }

    .logo img{
        height:44px;
    }

    .thumbs{
        grid-template-columns:repeat(2, 1fr);
    }

    .thumbs img{
        height:88px;
    }

    .proposal-head h2{
        font-size:26px;
    }

    .page-top h1{
        font-size:32px;
    }

    .filters-grid{
        grid-template-columns:1fr;
    }

    .filter-actions{
        flex-direction:column;
    }

    .login-card{
        padding:28px 20px;
    }

    .login-card h1{
        font-size:28px;
    }

    .admin-main{
        padding:20px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .hero-floating-box{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:16px;
        width:100%;
        min-width:auto;
    }
}


/* =====================================================
   AJUSTES FINAIS FA MULTIMARCAS
   Hero cinza claro, mobile ajustado, hover laranja e logo sem foto corrigida
===================================================== */

/* mantém header escuro para a logo original aparecer */
.site-header{
    background:#0a0a0c !important;
    border-bottom:1px solid rgba(255,255,255,.08) !important;
}

.main-nav a{
    color:#ffffff !important;
}

.main-nav a:hover{
    color:#ff642b !important;
}

.header-whatsapp{
    background:#ff642b !important;
    color:#ffffff !important;
    box-shadow:0 10px 24px rgba(255,100,43,.28);
}

/* hero cinza mais claro dos dois lados */
.hero-new{
    background:
        radial-gradient(circle at 12% 20%, rgba(255,100,43,.10), transparent 24%),
        radial-gradient(circle at 88% 24%, rgba(255,255,255,.28), transparent 28%),
        linear-gradient(
            90deg,
            #4b535f 0%,
            #353c46 23%,
            #171a20 50%,
            #353c46 77%,
            #4b535f 100%
        ) !important;
    color:#ffffff !important;
}

.hero-new-bg{
    opacity:.35 !important;
}

.hero-new-overlay{
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.30) 0%,
            rgba(0,0,0,.18) 30%,
            rgba(0,0,0,.10) 50%,
            rgba(0,0,0,.18) 70%,
            rgba(0,0,0,.30) 100%
        ) !important;
}

.hero-new h1,
.hero-new-text h1{
    color:#ffffff !important;
}

.hero-new p,
.hero-new-text p{
    color:#f1f5f9 !important;
}

.hero-new-badge{
    background:rgba(255,100,43,.13) !important;
    border:1px solid rgba(255,100,43,.55) !important;
    color:#ff642b !important;
}

/* cards pequenos do hero */
.hero-number-box{
    background:rgba(255,255,255,.12) !important;
    border:1px solid rgba(255,255,255,.22) !important;
    backdrop-filter:blur(6px);
    transition:all .22s ease !important;
}

.hero-number-box strong{
    color:#ffffff !important;
}

.hero-number-box span{
    color:#e5e7eb !important;
}

/* cards e hover laranja */
.home-strip-box,
.vehicle-card,
.hero-number-box{
    transition:all .22s ease !important;
}

.home-strip-box:hover,
.vehicle-card:hover,
.hero-number-box:hover{
    border-color:#ff642b !important;
    box-shadow:0 18px 42px rgba(255,100,43,.18) !important;
    transform:translateY(-5px);
}

.home-strip-box:hover h3,
.vehicle-card:hover .vehicle-body h3,
.hero-number-box:hover strong{
    color:#ff642b !important;
}

/* fundo claro das seções */
.section.alt,
.stock-page,
.vehicle-detail-section{
    background:#f6f8fb !important;
}

/* CTA clara */
.cta-banner{
    background:linear-gradient(135deg,#f6f8fb 0%,#eef2f7 100%) !important;
}

.cta-banner-inner{
    background:#ffffff !important;
    border:1px solid #e5e7eb !important;
    box-shadow:0 18px 42px rgba(15,23,42,.08) !important;
}

.cta-banner-inner h2{
    color:#111827 !important;
}

.cta-banner-inner p{
    color:#4b5563 !important;
}

/* rodapés claros */
.admin-footer-access,
.site-footer{
    background:#ffffff !important;
    border-top:1px solid #e5e7eb !important;
}

.admin-footer-access-inner span,
.site-footer p,
.site-footer a,
.footer-text{
    color:#6b7280 !important;
}

.site-footer h4{
    color:#111827 !important;
}

.btn-admin-footer{
    background:#111827 !important;
    color:#ffffff !important;
}

/* imagem real do veículo */
.vehicle-image-wrap.has-photo{
    background:#f3f4f6 !important;
}

.vehicle-image-wrap.has-photo .vehicle-image{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    padding:0 !important;
    opacity:1 !important;
}

/* logo quando não tem foto */
.vehicle-image-wrap.no-photo{
    background:
        radial-gradient(circle at center, rgba(255,100,43,.08), transparent 38%),
        linear-gradient(135deg,#f8fafc 0%,#eef2f7 100%) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}

.vehicle-image-wrap.no-photo .vehicle-image{
    width:150px !important;
    height:auto !important;
    max-height:86px !important;
    object-fit:contain !important;
    padding:0 !important;
    opacity:.92 !important;
}

/* mobile bonito com fundo cinza claro */
@media (max-width: 768px){
    body{
        background:#f6f8fb !important;
    }

    .site-header{
        background:#0a0a0c !important;
    }

    .header-row{
        min-height:auto;
        padding:14px 0;
        gap:14px;
    }

    .main-nav{
        gap:18px;
    }

    .hero-new{
        min-height:auto !important;
        background:
            linear-gradient(
                180deg,
                #4b535f 0%,
                #303743 34%,
                #171a20 68%,
                #2f3641 100%
            ) !important;
    }

    .hero-new-overlay{
        background:rgba(0,0,0,.18) !important;
    }

    .hero-new-content{
        padding-top:34px !important;
        padding-bottom:30px !important;
    }

    .hero-new h1{
        font-size:2.05rem !important;
        line-height:1.12 !important;
    }

    .hero-new p{
        font-size:.95rem !important;
    }

    .hero-new-actions .btn,
    .hero-new-actions .btn-primary,
    .hero-new-actions .btn-outline-light{
        width:100%;
    }

    .hero-new-numbers{
        grid-template-columns:1fr !important;
    }

    .hero-number-box{
        background:rgba(255,255,255,.14) !important;
    }

    .home-strip{
        background:#f6f8fb !important;
    }

    .home-strip-box,
    .vehicle-card{
        border-radius:20px !important;
    }

    .vehicle-image-wrap.no-photo .vehicle-image{
        width:132px !important;
        max-height:76px !important;
    }
}

/* =========================================
   FIX MOBILE FA MULTIMARCAS
========================================= */

@media(max-width:768px){

    html,
    body{
        overflow-x:hidden !important;
        width:100%;
        background:#f6f8fb !important;
    }

    .container{
        width:100% !important;
        max-width:100% !important;
        padding-left:16px !important;
        padding-right:16px !important;
        margin:0 auto !important;
    }

    /* HEADER */
    .site-header{
        position:relative !important;
    }

    .header-row{
        display:grid !important;
        grid-template-columns:auto 1fr auto !important;
        align-items:center !important;
        gap:10px !important;
        min-height:auto !important;
        padding:14px 0 !important;
    }

    .logo{
        justify-content:center !important;
    }

    .logo img,
    .logo-img{
        width:72px !important;
        height:auto !important;
        border-radius:12px !important;
    }

    .main-nav{
        width:100% !important;
        justify-content:center !important;
        gap:18px !important;
        margin-top:10px !important;
        grid-column:1/-1 !important;
    }

    .main-nav a{
        font-size:13px !important;
    }

    .header-whatsapp{
        padding:10px 14px !important;
        border-radius:12px !important;
        font-size:12px !important;
    }

    /* HERO */
    .hero-new{
        min-height:auto !important;
        border-radius:0 0 24px 24px !important;
        overflow:hidden !important;
    }

    .hero-new-content{
        display:block !important;
        padding-top:28px !important;
        padding-bottom:34px !important;
    }

    .hero-new-text{
        width:100% !important;
        max-width:100% !important;
    }

    .hero-new h1,
    .hero-new-text h1{
        font-size:2rem !important;
        line-height:1.12 !important;
        margin-bottom:18px !important;
    }

    .hero-new p,
    .hero-new-text p{
        font-size:.95rem !important;
        line-height:1.6 !important;
        margin-bottom:14px !important;
    }

    .hero-new-actions{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:12px !important;
        margin-top:22px !important;
    }

    .hero-new-actions .btn,
    .hero-new-actions .btn-primary,
    .hero-new-actions .btn-outline-light{
        width:100% !important;
        min-height:52px !important;
        border-radius:16px !important;
    }

    .hero-new-showcase{
        display:none !important;
    }

    /* CARDS */
    .hero-points,
    .hero-new-numbers,
    .home-strip-grid,
    .grid-cards{
        grid-template-columns:1fr !important;
    }

    .hero-point,
    .hero-number-box,
    .home-strip-box,
    .vehicle-card{
        border-radius:20px !important;
    }

    /* SECTION */
    .section{
        padding:46px 0 !important;
    }

    .section-head{
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:10px !important;
    }

    .section-head h2{
        font-size:28px !important;
    }

    /* VEICULO */
    .vehicle-detail-grid{
        display:block !important;
    }

    .vehicle-gallery-card{
        padding:14px !important;
        border-radius:22px !important;
        margin-bottom:18px !important;
    }

    .vehicle-info-card{
        padding:22px !important;
        border-radius:22px !important;
    }

    .vehicle-main{
        border-radius:18px !important;
    }

    .vehicle-info-card h1{
        font-size:30px !important;
    }

    .price-big{
        font-size:36px !important;
    }

    .specs{
        grid-template-columns:1fr !important;
    }

    .cta-row{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:10px !important;
    }

    /* CTA */
    .cta-banner-inner{
        flex-direction:column !important;
        align-items:flex-start !important;
        padding:24px !important;
        border-radius:24px !important;
    }

    .cta-banner-actions{
        width:100% !important;
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:10px !important;
    }

    .cta-banner-actions .btn{
        width:100% !important;
    }

    /* FOOTER */
    .footer-grid{
        grid-template-columns:1fr !important;
        gap:28px !important;
    }

    .footer-bottom-inner{
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:12px !important;
    }

    /* WHATSAPP FIXO */
    .floating-whatsapp{
        right:14px !important;
        bottom:14px !important;
        padding:12px 16px !important;
        font-size:13px !important;
        z-index:9999 !important;
    }

}
