*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Inter,Arial,sans-serif;
}

body{

    background:

    linear-gradient(

        #f7fbff,

        #edf5fc

    );

    color:#18253c;
}

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

.vehicles-page{
    width:100%;
    min-height:100vh;
}

/*================ HEADER ================*/

.vehicles-header{
    height:82px;
    background:#071828;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 45px;
    box-shadow:0 8px 30px rgba(0,0,0,.12);
}

.vehicles-header img{
    height:46px;
}

.vehicles-header nav{
    display:flex;
    gap:32px;
    align-items:center;
}

.vehicles-header nav a{
    color:#dbe5ef;
    font-weight:600;
    transition:.2s;
}

.vehicles-header nav a:hover,
.vehicles-header nav .active{
    color:#19bf57;
}

/*================ HERO PREMIUM ================*/

.vehicles-hero{

    position:relative;

    height:420px;

    overflow:hidden;

    display:flex;

    align-items:center;

    padding:0 70px;

    margin-bottom:60px;

    border-radius:0 0 28px 28px;

    background:

    linear-gradient(
        rgba(5,16,29,.78),
        rgba(5,16,29,.78)
    ),

    url("../assets/images/hero-vehicles.jpg");

    background-size:cover;

    background-position:center;
}

.vehicles-hero-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(
        circle at right,
        rgba(31,196,84,.22),
        transparent 45%
    ),

    radial-gradient(
        circle at left,
        rgba(0,132,255,.22),
        transparent 45%
    );
}

.vehicles-hero-content{

    position:relative;

    z-index:2;

    max-width:720px;
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    border-radius:30px;

    margin-bottom:24px;

    background:rgba(25,191,87,.18);

    border:1px solid rgba(25,191,87,.45);

    color:#79f6a4;

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;
}

.vehicles-hero h1{

    font-size:56px;

    line-height:1.15;

    margin-bottom:22px;

    color:#fff;
}

.vehicles-hero p{

    color:rgba(255,255,255,.92);

    font-size:20px;

    line-height:1.8;

    max-width:650px;
}

/*================ BUSCA ================*/

.vehicles-search-card{

    width:calc(100% - 90px);

    margin:auto;

    margin-top:-55px;

    position:relative;

    z-index:5;

    background:#fff;

    border-radius:24px;

    display:grid;

    grid-template-columns:
    2fr
    1fr
    1fr
    1fr
    180px;

    gap:18px;

    padding:26px;

    box-shadow:

    0 25px 60px rgba(0,0,0,.12);
}

.vehicles-search-card input{

    height:56px;

    border:1px solid #dfe7ef;

    border-radius:14px;

    padding:0 18px;

    font-size:15px;

    transition:.25s;
}

.vehicles-search-card input:focus{

    outline:none;

    border-color:#19bf57;

    box-shadow:0 0 0 4px rgba(25,191,87,.12);
}

.vehicles-search-card button{

    height:56px;

    border:none;

    border-radius:14px;

    background:#19bf57;

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;
}

.vehicles-search-card button:hover{

    transform:translateY(-2px);

    background:#16aa4c;

    box-shadow:0 12px 30px rgba(25,191,87,.35);
}

.vehicles-search-card button:hover{

    background:#15a34b;
}

/*================ LAYOUT ================*/

.vehicles-layout{

    display:grid;

    grid-template-columns:
    300px
    1fr;

    gap:30px;

    padding:35px;
}

/*================ FILTROS ================*/

.filters-sidebar{

    background:#fff;

    border-radius:20px;

    padding:24px;

    box-shadow:0 8px 30px rgba(0,0,0,.06);

    height:max-content;

    position:sticky;

    top:20px;
}

.filter-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;
}

.filter-header h3{

    font-size:22px;
}

.filter-header button{

    border:none;

    background:none;

    color:#19bf57;

    cursor:pointer;

    font-weight:700;
}

.filters-sidebar label{

    display:flex;

    flex-direction:column;

    gap:8px;

    margin-bottom:18px;

    font-size:14px;

    font-weight:600;
}

.filters-sidebar input,
.filters-sidebar select{

    height:46px;

    border:1px solid #dfe7ef;

    border-radius:12px;

    padding:0 14px;

    font-size:14px;
}

.apply-filter-btn{

    width:100%;

    height:52px;

    border:none;

    border-radius:14px;

    background:#19bf57;

    color:#fff;

    font-weight:700;

    cursor:pointer;

    margin-top:10px;
}

/*================ TOPO ================*/

.vehicles-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;
}

.vehicles-top h2{

    font-size:30px;
}

.vehicles-top p{

    color:#708196;

    margin-top:6px;
}

.mobile-filter-btn{

    display:none;
}

/*================ GRID ================*/

.vehicles-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(330px,1fr));

    gap:24px;
}

/*================ CARD ================*/

.vehicle-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.07);

    transition:.25s;
}

.vehicle-card:hover{

    transform:translateY(-6px);
}

.vehicle-photo{

    position:relative;

    height:230px;

    overflow:hidden;
}

.vehicle-photo img{

    width:100%;

    height:100%;

    object-fit:cover;
}

.discount-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#19bf57;

    color:#fff;

    padding:8px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    box-shadow:0 5px 20px rgba(25,191,87,.4);
}

.vehicle-info{

    padding:20px;
}

.vehicle-title{

    font-size:22px;

    font-weight:700;

    line-height:1.35;

    margin-bottom:8px;
}

.vehicle-details{

    color:#6e7d90;

    font-size:14px;

    line-height:1.8;

    margin-bottom:15px;
}

.vehicle-price{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:16px;
}

.vehicle-price strong{

    color:#19bf57;

    font-size:28px;
}

.vehicle-price small{

    color:#8b98a8;

    display:block;
}

.vehicle-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid #edf2f7;

    padding-top:16px;
}

.store-badge{

    display:flex;

    align-items:center;

    gap:8px;

    color:#19bf57;

    font-weight:700;

    font-size:14px;
}

.open-btn{

    background:#0b2340;

    color:#fff;

    border:none;

    border-radius:12px;

    padding:12px 18px;

    cursor:pointer;

    font-weight:700;
}

/*================ RESPONSIVO ================*/

@media(max-width:1100px){

.vehicles-layout{

grid-template-columns:1fr;
}

.filters-sidebar{

display:none;
}

.mobile-filter-btn{

display:block;

background:#19bf57;

color:#fff;

border:none;

padding:12px 20px;

border-radius:12px;
}

.vehicles-search-card{

grid-template-columns:1fr;
}

}

@media(max-width:700px){

.vehicles-header{

padding:20px;

flex-direction:column;

height:auto;

gap:20px;
}

.vehicles-header nav{

flex-wrap:wrap;

justify-content:center;
}

.vehicles-hero{

padding:35px 25px;
}

.vehicles-hero h1{

font-size:32px;
}

.vehicles-layout{

padding:20px;
}

.vehicle-photo{

height:200px;
}

}