:root{
    --cor-principal:#0d2f5f;
    --cor-secundaria:#1e5f9f;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background:#f4f6f9;
    color:#333;
}

/* MENU */
.sidebar{
    width:260px;
    height:100vh;
    position:fixed;
    left:0;
    top:0;
    background:linear-gradient(180deg,var(--cor-principal),var(--cor-secundaria));
    color:#fff;
    padding:22px;
    overflow-y:auto;
    box-shadow:4px 0 20px rgba(0,0,0,.15);
}

.sidebar-brand{
    text-align:center;
    margin-bottom:35px;
}

.sidebar-logo{
    width:110px;
    height:110px;
    object-fit:contain;
    background:#fff;
    border-radius:20px;
    padding:10px;
    margin-bottom:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.2);
}

.sidebar-brand h2{
    color:#fff;
    font-size:22px;
    margin-bottom:5px;
}

.sidebar-brand span{
    font-size:12px;
    opacity:.8;
}

.sidebar-menu{
    list-style:none;
}

.sidebar-menu li{
    margin-bottom:10px;
}

.sidebar-menu li a{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    text-decoration:none;
    padding:13px 15px;
    border-radius:12px;
    font-size:15px;
    transition:.3s;
}

.sidebar-menu li a:hover{
    background:rgba(255,255,255,.16);
    transform:translateX(5px);
}

.sidebar-user{
    margin:15px;
    padding:12px;
    background:rgba(255,255,255,.12);
    border-radius:12px;
    color:#fff;
}

.sidebar-user strong{
    display:block;
    font-size:14px;
}

.sidebar-user span{
    font-size:12px;
    opacity:.85;
}

/* CONTEÚDO */
.content{
    margin-left:260px;
    padding:30px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

/* CABEÇALHO MODERNO */
.modern-header{
    background:linear-gradient(135deg,var(--cor-principal),var(--cor-secundaria));
    padding:25px 30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    color:#fff;
}

.modern-header h1{
    color:#fff;
    margin-bottom:5px;
    font-size:28px;
}

.modern-header p{
    color:rgba(255,255,255,.85);
}

/* BOTÕES */
.btn{
    border:none;
    cursor:pointer;
    text-decoration:none;
    padding:10px 16px;
    border-radius:8px;
    color:#fff;
    display:inline-block;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:var(--cor-principal);
}

.btn-primary:hover{
    background:var(--cor-secundaria);
}

.btn-success{
    background:#2e7d32;
}

.btn-warning{
    background:#f39c12;
}

.btn-warning:hover{
    background:#e67e22;
}

.btn-danger{
    background:#dc3545;
}

.btn-danger:hover{
    background:#c82333;
}

.btn-secondary{
    background:#6c757d;
}

.btn-small{
    padding:8px 14px;
    font-size:13px;
}

/* FORMULÁRIOS */
.form-group{
    margin-bottom:15px;
}

.form-group label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
}

.form-control{
    width:100%;
    padding:11px;
    border:1px solid #ccc;
    border-radius:8px;
}

.form-control:focus{
    outline:none;
    border-color:var(--cor-secundaria);
}

.text-muted{
    display:block;
    margin-top:5px;
    color:#777;
    font-size:13px;
}

/* GRID */
.row{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.col-6{width:48%;}
.col-4{width:31%;}
.col-3{width:23%;}
.col-12{width:100%;}

/* TABELAS */
.table-container{
    overflow-x:auto;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    background:#fff;
}

.table,
.modern-table{
    width:100%;
    border-collapse:collapse;
    margin-top:0;
    background:#fff;
}

.modern-table th,
.table th{
    background:var(--cor-principal);
    color:#fff;
    padding:16px;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.5px;
    text-align:left;
}

.modern-table td,
.table td{
    padding:16px;
    vertical-align:middle;
    border-bottom:1px solid #eef2f7;
}

.modern-table tbody tr{
    transition:.3s;
}

.modern-table tbody tr:hover{
    background:#f4f8ff;
    transform:scale(1.002);
}

.modern-table tbody tr:nth-child(even){
    background:#fafcff;
}

.acoes{
    display:flex;
    gap:8px;
    white-space:nowrap;
}

/* BADGES */
.badge{
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.badge-success{
    background:#eafaf0;
    color:#1f8b4c;
}

.badge-danger{
    background:#fdecec;
    color:#d63031;
}

.badge-warning{
    background:#fff3cd;
    color:#856404;
}

.badge-primary{
    background:var(--cor-secundaria);
    color:#fff;
}

/* ALERTAS */
.alert{
    padding:15px;
    border-radius:8px;
    margin-bottom:15px;
}

.alert-success{
    background:#d4edda;
    color:#155724;
}

.alert-danger{
    background:#f8d7da;
    color:#721c24;
}

.alert-warning{
    background:#fff3cd;
    color:#856404;
}

/* DASHBOARD */
.dashboard-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.dashboard-top h1{
    color:var(--cor-principal);
    font-size:32px;
}

.dashboard-top p{
    color:#777;
    margin-top:5px;
}

.dashboard-grid,
.dashboard-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:25px;
}

.dash-card,
.stat-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    border-left:5px solid var(--cor-secundaria);
}

.dash-card:hover,
.stat-card:hover{
    transform:translateY(-5px);
}

.dash-card span{
    color:#777;
    font-size:14px;
}

.dash-card h2,
.stat-card p{
    font-size:34px;
    color:var(--cor-principal);
    margin-top:8px;
    font-weight:bold;
}

.stat-card h3{
    color:#666;
    font-size:16px;
}

.dash-icon{
    width:55px;
    height:55px;
    border-radius:15px;
    background:#eef6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.money-card{
    background:linear-gradient(135deg,var(--cor-secundaria),var(--cor-principal));
    color:#fff;
    padding:28px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.money-card.success{
    background:linear-gradient(135deg,#2e7d32,#1b5e20);
}

.money-card span{
    font-size:15px;
    opacity:.9;
}

.money-card h2{
    color:#fff;
    font-size:30px;
    margin-top:12px;
}

/* PRODUTOS */
.produto-foto{
    width:55px;
    height:55px;
    object-fit:cover;
    border-radius:12px;
    border:2px solid #eef2f7;
    background:#fff;
    cursor:pointer;
    transition:all .3s ease;
}

.produto-foto:hover{
    transform:scale(2);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    position:relative;
    z-index:999;
}

.sem-foto{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:55px;
    height:55px;
    border-radius:12px;
    background:#f5f7fa;
    color:#999;
    font-size:11px;
    border:1px dashed #d0d7de;
}

.table td:first-child,
.table th:first-child{
    text-align:center;
    width:100px;
}

/* LOGOS E CONFIGURAÇÕES */
.logo{
    width:140px;
    max-width:100%;
    height:auto;
}

.logo-preview{
    width:120px;
    height:120px;
    object-fit:contain;
    border:1px solid #ddd;
    border-radius:10px;
    padding:10px;
    background:#fff;
}

.background-preview{
    width:300px;
    max-width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    padding:8px;
    background:#fff;
    margin-top:10px;
}

/* FATURA / RECIBO */
.print-body{
    background:#eaf6ff;
    padding:20px;
}

.invoice-page{
    width:210mm;
    height:297mm;
    margin:0 auto;
    background:#fff;
    position:relative;
    padding:12mm;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.15);
}

.invoice-bg{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:70%;
    height:auto;
    object-fit:contain;
    opacity:.35;
    z-index:0;
}

.invoice-page > *:not(.invoice-bg){
    position:relative;
    z-index:1;
}

.invoice-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:22px;
}

.invoice-brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.invoice-logo{
    width:85px;
    height:auto;
}

.invoice-brand h1,
.invoice-title h2,
.invoice-info h3,
.invoice-note h3,
.invoice-footer{
    color:var(--cor-principal);
}

.invoice-brand h1{
    font-size:22px;
}

.invoice-title{
    text-align:right;
}

.invoice-title h2{
    font-size:30px;
    letter-spacing:2px;
}

.invoice-title p{
    font-size:13px;
    margin-top:5px;
}

.invoice-info{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:22px;
}

.invoice-info h3,
.invoice-note h3{
    margin-bottom:10px;
    text-transform:uppercase;
    font-size:15px;
}

.invoice-info p{
    margin-bottom:6px;
    line-height:1.4;
    font-size:13px;
}

.invoice-table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:20px;
}

.invoice-table th{
    background:var(--cor-secundaria);
    color:#fff;
    padding:9px;
    text-align:left;
    font-size:12px;
}

.invoice-table td{
    padding:8px;
    border:1px solid #d7e3f0;
    font-size:12px;
}

.invoice-table td:nth-child(1),
.invoice-table td:nth-child(3){
    text-align:center;
}

.invoice-table td:nth-child(4),
.invoice-table td:nth-child(5){
    text-align:right;
}

.invoice-bottom{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:25px;
    margin-top:18px;
}

.invoice-note{
    background:rgba(255,255,255,.55);
    padding:15px;
    border-radius:10px;
    font-size:13px;
}

.invoice-totals{
    border:1px solid #d7e3f0;
    border-radius:8px;
    overflow:hidden;
    background:rgba(255,255,255,.7);
}

.invoice-totals div{
    display:flex;
    justify-content:space-between;
    padding:10px 14px;
    border-bottom:1px solid #d7e3f0;
    font-size:13px;
}

.invoice-total-geral{
    background:var(--cor-secundaria);
    color:#fff;
    font-size:16px !important;
    text-transform:uppercase;
}

.invoice-footer{
    margin-top:10px;
    text-align:center;
    font-size:12px;
    line-height:1.4;
}

.invoice-footer h3{
    margin-bottom:6px;
    font-size:15px;
}

.invoice-footer p{
    margin:2px 0;
    line-height:1.3;
}

.invoice-footer,
.invoice-footer *{
    page-break-inside:avoid;
}

.receipt-box{
    margin:30px auto;
    max-width:380px;
    background:linear-gradient(135deg,var(--cor-principal),var(--cor-secundaria));
    color:#fff;
    padding:25px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.receipt-box h3{
    color:#fff;
    margin-bottom:10px;
    text-transform:uppercase;
    font-size:15px;
}

.receipt-box p{
    font-size:30px;
    font-weight:bold;
}

/* PRINT */
@media print{

    @page{
        size:A4;
        margin:0;
    }

    html,
    body{
        margin:0;
        padding:0;
        width:210mm;
        height:297mm;
        overflow:hidden;
    }

    body.print-body{
        background:#fff;
        padding:0;
    }

    .invoice-page{
        width:210mm;
        height:297mm;
        min-height:297mm;
        margin:0;
        padding:12mm;
        box-shadow:none;
        page-break-before:avoid;
        page-break-after:avoid;
        page-break-inside:avoid;
    }

    .invoice-logo{
        width:75px;
    }

    .invoice-header{
        margin-bottom:18px;
    }

    .invoice-brand h1{
        font-size:20px;
    }

    .invoice-title h2{
        font-size:28px;
    }

    .invoice-info{
        margin-bottom:18px;
    }

    .invoice-table th,
    .invoice-table td{
        padding:6px;
        font-size:11px;
    }

    .invoice-bottom{
        margin-top:15px;
    }

    .invoice-footer{
        margin-top:18px;
        font-size:11px;
    }
}

/* RESPONSIVO */
@media(max-width:768px){

    .sidebar{
        width:100%;
        height:auto;
        position:relative;
    }

    .content{
        margin-left:0;
        padding:20px;
    }

    .row{
        flex-direction:column;
    }

    .col-3,
    .col-4,
    .col-6{
        width:100%;
    }

    .modern-header,
    .dashboard-top{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .acoes{
        flex-direction:column;
    }
}

.search-card{
    padding:15px;
    margin-bottom:20px;
}

.search-form{
    display:flex;
    gap:10px;
    align-items:center;
}

.search-input{
    flex:1;
    padding:12px 15px;
    border:1px solid #dbe3f0;
    border-radius:12px;
    font-size:14px;
    outline:none;
    transition:.3s;
}

.search-input:focus{
    border-color:var(--cor-principal);
    box-shadow:0 0 0 4px rgba(13,47,95,.08);
}

.dashboard-clock{
    text-align:right;
    color:#fff;
}

#dataAtual{
    font-size:14px;
    opacity:.9;
    text-transform:capitalize;
}

#horaAtual{
    font-size:32px;
    font-weight:700;
    letter-spacing:2px;
    margin-top:4px;
}

.card-mini{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:15px;
    padding:20px;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
}

.card-mini h4{
    margin:0;
    color:var(--cor-principal);
}

.logo-preview,
.background-preview{
    width:100%;
    max-height:220px;
    object-fit:contain;
    border:1px solid #ddd;
    border-radius:12px;
    padding:10px;
    background:#fafafa;
}

.form-actions{
    display:flex;
    justify-content:flex-end;
    padding-top:15px;
}



.app-footer{
    position:fixed;
    bottom:0;
    left:260px;
    right:0;

    background:#fff;
    border-top:1px solid #e5e7eb;

    padding:12px 25px;

    z-index:999;
    box-shadow:0 -3px 10px rgba(0,0,0,.05);

    color:#555;
    font-size:13px;
}

.app-footer strong{
    color:var(--cor-principal);
    font-size:15px;
}

.app-footer p{
    margin:5px 0;
}

.footer-info,
.footer-social{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:6px;
}

.footer-extra{
    margin-top:6px;
    color:#777;
}

.content{
    padding-bottom:130px;
}

@media(max-width:900px){

    .app-footer{
        left:0;
    }

}


/* LOGIN MODERNO */

.login-body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;

    background:linear-gradient(
        135deg,
        var(--login-principal),
        var(--login-secundaria)
    );
}

.login-wrapper{
    display:flex;
    gap:30px;
    align-items:center;
    max-width:1100px;
    width:100%;
}

.login-box{
    flex:1;
    max-width:420px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.login-box h1{
    text-align:center;
    color:var(--login-principal);
    margin-bottom:5px;
}

.login-box p{
    text-align:center;
    color:#777;
    margin-bottom:20px;
}

.btn-login{
    width:100%;
    padding:14px;
    font-size:16px;
    background:var(--login-principal);
    border:none;
    color:#fff;
}

.btn-login:hover{
    background:var(--login-secundaria);
}

.login-help{
    flex:1;
    color:#fff;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.2);
    padding:30px;
    border-radius:20px;
}

.login-help h3{
    color:#fff;
    margin-bottom:15px;
}

.login-help p{
    margin-bottom:10px;
    line-height:1.6;
    text-align:left;
}

.help-contact{
    margin:18px 0;
    padding:12px;
    background:rgba(255,255,255,.08);
    border-radius:12px;
}

.login-help small{
    display:block;
    margin-top:15px;
    opacity:.9;
}

.login-logo-area{
    text-align:center;
    margin-bottom:20px;
}

.login-logo{
    width:120px;
    height:120px;
    object-fit:contain;
    background:#fff;
    padding:10px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

@media(max-width:900px){

    .login-wrapper{
        flex-direction:column;
    }

    .login-help{
        width:100%;
    }

    .login-box{
        max-width:100%;
    }
}

/* =========================================================
   PÁGINA PÚBLICA DE LEILÕES
========================================================= */

.auction-body{
    min-height:100vh;
    background:#f4f6fa;
    color:#172033;
}

.auction-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    border-bottom:1px solid #e8ecf2;
    box-shadow:0 4px 18px rgba(15,23,42,.06);
}

.auction-header-container{
    max-width:1450px;
    min-height:88px;
    margin:0 auto;
    padding:12px 30px;

    display:grid;
    grid-template-columns:auto minmax(280px,1fr) auto;
    align-items:center;
    gap:28px;
}

.auction-brand{
    display:flex;
    align-items:center;
    gap:12px;
    color:inherit;
    text-decoration:none;
}

.auction-logo{
    width:62px;
    height:62px;
    object-fit:contain;
    border-radius:14px;
    background:#fff;
}

.auction-brand-info strong{
    display:block;
    color:var(--cor-principal);
    font-size:21px;
}

.auction-brand-info span{
    display:block;
    margin-top:3px;
    color:#7b8494;
    font-size:12px;
}

.auction-search{
    width:100%;
    display:flex;
    background:#f4f6fa;
    border:1px solid #e0e5ec;
    border-radius:14px;
    overflow:hidden;
    transition:.25s;
}

.auction-search:focus-within{
    border-color:var(--cor-principal);
    box-shadow:0 0 0 4px rgba(13,47,95,.08);
}

.auction-search input{
    flex:1;
    min-width:0;
    padding:14px 17px;
    border:0;
    outline:0;
    background:transparent;
    font-size:14px;
}

.auction-search button{
    width:55px;
    border:0;
    cursor:pointer;
    color:#fff;
    background:var(--cor-principal);
    font-size:18px;
}

.auction-actions{
    display:flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
}

.auction-cart{
    display:flex;
    align-items:center;
    gap:7px;
    padding:10px 14px;
    border-radius:10px;
    color:#273249;
    background:#f4f6fa;
    text-decoration:none;
    font-weight:600;
}

.auction-cart strong{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:24px;
    height:24px;
    padding:0 6px;

    border-radius:50px;
    color:#fff;
    background:var(--cor-principal);
    font-size:12px;
}

.auction-hero{
    max-width:1450px;
    min-height:390px;
    margin:32px auto;
    padding:55px 65px;

    display:grid;
    grid-template-columns:1.5fr .7fr;
    align-items:center;
    gap:40px;

    border-radius:28px;
    color:#fff;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(255,255,255,.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--cor-principal),
            var(--cor-secundaria)
        );

    box-shadow:0 18px 45px rgba(15,23,42,.16);
}

.auction-eyebrow{
    display:inline-flex;
    padding:8px 14px;
    margin-bottom:20px;

    border-radius:50px;
    background:rgba(255,255,255,.16);

    font-size:13px;
    font-weight:700;
}

.auction-hero h1{
    max-width:800px;
    margin-bottom:18px;

    color:#fff;
    font-size:48px;
    line-height:1.08;
}

.auction-hero p{
    max-width:690px;
    color:rgba(255,255,255,.86);
    font-size:17px;
    line-height:1.65;
}

.auction-hero-actions{
    display:flex;
    gap:13px;
    flex-wrap:wrap;
    margin-top:30px;
}

.auction-main-button{
    padding:14px 23px;
    background:#fff;
    color:var(--cor-principal);
}

.auction-main-button:hover{
    background:#f4f6fa;
}

.auction-outline-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:13px 22px;

    border:1px solid rgba(255,255,255,.55);
    border-radius:9px;

    color:#fff;
    text-decoration:none;
    font-weight:700;
}

.auction-outline-button:hover{
    background:rgba(255,255,255,.12);
}

.auction-hero-card{
    padding:32px;

    border:1px solid rgba(255,255,255,.22);
    border-radius:24px;

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
}

.hero-hammer{
    margin-bottom:18px;
    font-size:54px;
}

.auction-hero-card strong{
    display:block;
    margin-bottom:8px;
    font-size:22px;
}

.auction-hero-card p{
    font-size:14px;
}

.auction-features{
    max-width:1450px;
    margin:0 auto 40px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.auction-feature{
    display:flex;
    align-items:center;
    gap:14px;

    padding:20px;

    background:#fff;
    border:1px solid #e8ecf2;
    border-radius:18px;

    box-shadow:0 8px 24px rgba(15,23,42,.05);
}

.auction-feature > span{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    border-radius:14px;
    background:#f1f5fb;

    font-size:23px;
}

.auction-feature strong{
    display:block;
    margin-bottom:4px;
}

.auction-feature p{
    color:#7c8493;
    font-size:12px;
}

.auction-message{
    max-width:1450px;
    margin:0 auto 25px;
    padding:15px 18px;

    color:#155724;
    background:#d4edda;
    border-radius:12px;
}

.auction-section{
    max-width:1450px;
    margin:0 auto;
    padding:20px 0 60px;
}

.auction-section-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:24px;
}

.auction-section-header span{
    color:var(--cor-secundaria);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
}

.auction-section-header h2{
    margin-top:5px;
    color:#1c2638;
    font-size:32px;
}

.auction-section-header a{
    color:var(--cor-principal);
    text-decoration:none;
    font-weight:700;
}

.auction-search-result{
    margin-bottom:20px;
    padding:14px 18px;

    background:#fff;
    border-left:4px solid var(--cor-principal);
    border-radius:10px;

    color:#606878;
}

.auction-products{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.auction-product-card{
    min-width:0;
    overflow:hidden;

    background:#fff;
    border:1px solid #e6eaf0;
    border-radius:21px;

    box-shadow:0 10px 28px rgba(15,23,42,.07);
    transition:.3s;
}

.auction-product-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 38px rgba(15,23,42,.13);
}

.auction-product-image{
    position:relative;
    height:235px;
    overflow:hidden;
    background:#f5f7fa;
}

.auction-product-image img{
    width:100%;
    height:100%;
    padding:18px;

    object-fit:contain;
    transition:.35s;
}

.auction-product-card:hover .auction-product-image img{
    transform:scale(1.05);
}

.auction-status{
    position:absolute;
    top:14px;
    left:14px;
    z-index:2;

    padding:7px 11px;

    border-radius:50px;
    background:#daf6e6;
    color:#177245;

    font-size:11px;
    font-weight:800;
}

.auction-no-image{
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#a5adba;
    font-size:64px;
}

.auction-product-content{
    padding:20px;
}

.auction-category{
    color:#8a93a3;
    font-size:11px;
    text-transform:uppercase;
}

.auction-product-content h3{
    min-height:48px;
    margin:7px 0 8px;

    color:#202a3b;
    font-size:17px;
    line-height:1.4;
}

.auction-stock{
    margin-bottom:18px;
    color:#777f8d;
    font-size:12px;
}

.auction-price{
    padding:14px;
    background:#f5f7fa;
    border-radius:13px;
}

.auction-price span{
    display:block;
    color:#7b8493;
    font-size:11px;
}

.auction-price strong{
    display:block;
    margin-top:5px;

    color:var(--cor-principal);
    font-size:21px;
}

.auction-product-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:17px;
}

.auction-time{
    display:flex;
    align-items:center;
    gap:8px;
}

.auction-time small,
.auction-time strong{
    display:block;
}

.auction-time small{
    color:#9198a5;
    font-size:10px;
}

.auction-time strong{
    color:#394355;
    font-size:12px;
}

.auction-bid-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:11px 15px;

    border-radius:9px;
    color:#fff;
    background:var(--cor-principal);

    text-decoration:none;
    text-align:center;
    font-size:13px;
    font-weight:800;

    transition:.25s;
}

.auction-bid-button:hover{
    background:var(--cor-secundaria);
}

.auction-empty{
    padding:65px 20px;
    background:#fff;
    border-radius:20px;
    text-align:center;
}

.auction-empty span{
    font-size:60px;
}

.auction-empty h3{
    margin:15px 0 7px;
}

.auction-empty p{
    color:#808897;
}

.auction-footer{
    display:flex;
    justify-content:space-between;
    gap:30px;

    padding:30px max(30px,calc((100% - 1450px)/2));

    color:#fff;
    background:#192233;
}

.auction-footer strong{
    font-size:20px;
}

.auction-footer p{
    margin-top:6px;
    color:#aeb6c3;
}

.auction-footer div:last-child{
    display:flex;
    align-items:center;
    gap:20px;
}

/* RESPONSIVO DA LOJA */

@media(max-width:1150px){

    .auction-header-container{
        grid-template-columns:auto 1fr;
    }

    .auction-search{
        grid-column:1 / -1;
        grid-row:2;
    }

    .auction-products{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .auction-features{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:850px){

    .auction-header-container{
        display:flex;
        flex-wrap:wrap;
    }

    .auction-search{
        order:3;
        width:100%;
    }

    .auction-actions{
        margin-left:auto;
        flex-wrap:wrap;
    }

    .auction-hero{
        grid-template-columns:1fr;
        padding:40px 28px;
        margin-left:18px;
        margin-right:18px;
    }

    .auction-hero h1{
        font-size:37px;
    }

    .auction-products{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .auction-section,
    .auction-features,
    .auction-message{
        margin-left:18px;
        margin-right:18px;
    }
}

@media(max-width:560px){

    .auction-header-container{
        padding:12px 16px;
    }

    .auction-brand-info{
        display:none;
    }

    .auction-actions{
        width:100%;
        margin:0;
    }

    .auction-actions .btn,
    .auction-cart{
        flex:1;
        justify-content:center;
        text-align:center;
    }

    .auction-cart span:not(.auction-cart-icon){
        display:none;
    }

    .auction-hero{
        margin:18px 14px;
        padding:32px 22px;
    }

    .auction-hero h1{
        font-size:30px;
    }

    .auction-features,
    .auction-products{
        grid-template-columns:1fr;
    }

    .auction-section,
    .auction-features,
    .auction-message{
        margin-left:14px;
        margin-right:14px;
    }

    .auction-section-header{
        align-items:flex-start;
        flex-direction:column;
        gap:10px;
    }

    .auction-product-footer{
        align-items:stretch;
        flex-direction:column;
    }

    .auction-bid-button{
        width:100%;
    }

    .auction-footer{
        flex-direction:column;
        padding:28px 20px;
    }

    .auction-footer div:last-child{
        align-items:flex-start;
        flex-direction:column;
        gap:8px;
    }
}


.auction-header{
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,.94);
}

.auction-header-container{
    min-height:78px;
}

.auction-logo{
    box-shadow:0 6px 18px rgba(15,23,42,.10);
}

.auction-brand strong{
    letter-spacing:.2px;
}

.auction-actions .btn{
    padding:11px 17px;
    border-radius:11px;
}

.auction-footer{
    border-top:4px solid var(--cor-principal);
}

.auction-footer strong{
    color:#fff;
}

.auction-footer span{
    color:#d3d8e1;
}