/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Container geral */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Títulos */
.titulo {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: #000000;
}

/* Header */
.novo-header {
    background: white;
    border-bottom: 1px solid #ddd;
}

.header-superior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    flex-wrap: wrap;
}

.logo img {
    height: 50px;
}

/* Busca */
.form-busca {
    flex: 1;
    max-width: 500px;
    display: flex;
    border: 2px solid #000000;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 20px;
}

.form-busca input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 16px;
    outline: none;
}

.form-busca button {
    background: #000000;
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 18px;
}

/* Área do usuário */
.usuario-area, .user-logado {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login {
    background: #28a745;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn-cadastro {
    background: #dc3545;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.user-logado {
    text-decoration: none;
    gap: 8px;
    font-weight: bold;
    color: #000000;
}

.icone-perfil {
    background-color: #000000;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Categorias */
.menu-categorias-baixo {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.menu-categorias-baixo a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}

.menu-categorias-baixo a:hover {
    text-decoration: underline;
}

/* Banners */
.banners-rotativos {
    width: 100%;
    overflow: hidden;
    background: #f4f4f4;
    position: relative;
   
}

.banner-wrapper {
   max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
    height: 250px; /* altura menor para encaixar melhor */
}

.banner-track {
    display: flex;
    transition: transform 1s ease-in-out;
    height: 100%;
}

.banner-track img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* garante que a imagem se encaixe no quadrado */
    flex-shrink: 0;
}



/* Cards de Lotes */
.lotes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.lote {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 300px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
    position: relative;
}

.lote:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.lote img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.lote h2 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 5px;
}

.lote p {
    font-size: 14px;
    margin-bottom: 10px;
}

.btn-lance {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-lance:hover {
    background-color: #333;
}

.lote.encerrado {
    filter: grayscale(1);
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.faixa-encerrado {
    position: absolute;
    top: 10px;
    left: -30px;
    background: red;
    color: white;
    transform: rotate(-45deg);
    font-weight: bold;
    padding: 5px 60px;
    font-size: 13px;
    text-transform: uppercase;
}

.contador {
    margin: 10px 0;
    font-size: 15px;
    font-weight: bold;
    color: #000000;
}

/* Popups */
.popup {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.popup-content {
    background-color: white;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
}

.popup-content input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.popup-content button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.fechar {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}

/* Avaliações */
.avaliacoes-section {
    background: #f4f7ff;
    padding: 40px 20px;
    text-align: center;
}

.avaliacoes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.avaliacao-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: left;
}

.avaliacao-card p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 15px;
}

.avaliacao-card strong {
    color: #000000;
    font-weight: bold;
    font-size: 14px;
}

/* Responsivo */
@media screen and (max-width: 768px) {
    .header-superior {
        flex-direction: column;
        gap: 15px;
    }

    .form-busca {
        width: 100%;
        order: 2;
        margin: 10px 0;
    }

    .usuario-area {
        order: 3;
        justify-content: center;
    }

    .usuario-area a {
        font-size: 16px;
        padding: 8px 12px;
    }

    .menu-categorias-baixo {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px;
    }

    .form-busca input {
        font-size: 14px;
    }

    .user-logado span {
        display: none;
    }

    .form-busca button {
        font-size: 16px;
    }

    .usuario-area a:not(.btn-login):not(.btn-cadastro) {
        display: none;
    }
}
.rodape {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 22px;
    padding: 12px 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: background 0.3s;
}

.whatsapp-float:hover {
    background-color: #1ebc5b;
}
.sidebar-admin {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 220px;
    background-color: #000;
    color: white;
    padding: 30px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.sidebar-admin h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

.sidebar-admin ul {
    list-style: none;
    padding: 0;
}

.sidebar-admin ul li {
    margin-bottom: 15px;
}

.sidebar-admin ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-admin ul li a:hover {
    text-decoration: underline;
}


body.admin {
    margin-left: 240px;
}
.novo-header {
    background-color: #e7e7e7; /* mesma cor usada no site Rogério Menezes */
    border-bottom: 1px solid #ccc;
}
.barra-topo {
    background-color: #000;
    padding: 10px 0;
    font-size: 14px;
}

.barra-topo .container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.barra-topo a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.barra-topo a:hover {
    text-decoration: underline;
}
.grade-leiloes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card-leilao {
    width: 100%;
    max-width: 320px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    position: relative;
}

.topo-data {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

.interno-leilao {
    padding: 20px;
    text-align: center;
}

.interno-leilao h3 {
    margin: 10px 0 5px;
    color: #000;
}

.interno-leilao .dias {
    margin: 5px 0;
    font-size: 14px;
}

.interno-leilao .quantidade {
    font-weight: bold;
    font-size: 16px;
    color: #007bff;
    margin: 10px 0;
}

.bancos-scroll {
    display: flex;
    gap: 10px;
    justify-content: center;
    overflow-x: auto;
    padding: 10px 0;
}

.bancos-scroll img {
    height: 30px;
    flex-shrink: 0;
}

.btn-verde {
    display: inline-block;
    margin-top: 15px;
    background: #28a745;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-verde:hover {
    background: #218838;
}
.grade-leiloes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card-leilao {
    width: 100%;
    max-width: 320px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.topo-data {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
}

.topo-data .dias {
    font-size: 13px;
    color: #ccc;
    margin-top: 4px;
}

.interno-leilao {
    padding: 20px;
    text-align: center;
}

.interno-leilao h3 {
    margin: 10px 0 5px;
    color: #000;
    font-size: 18px;
}

.interno-leilao .tipo {
    font-weight: bold;
    font-size: 14px;
    margin: 5px 0;
}

.interno-leilao .quantidade {
    font-weight: bold;
    font-size: 16px;
    color: #007bff;
    margin: 10px 0;
}

.bancos-scroll {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

.bancos-scroll img {
    height: 30px;
    object-fit: contain;
    border-radius: 5px;
}

.btn-verde {
    display: inline-block;
    margin-top: 10px;
    background: #28a745;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-verde:hover {
    background: #218838;
}
.only-desktop {
    display: block;
}

@media (max-width: 768px) {
    .only-desktop {
        display: none;
    }
}

.banner-rotativo {
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}

.banner-slide {
    display: flex;
    animation: slideBanner 15s infinite ease-in-out;
}

.banner-slide img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

@keyframes slideBanner {
    0%, 30% { transform: translateX(0%); }
    35%, 65% { transform: translateX(-100%); }
    70%, 100% { transform: translateX(-200%); }
}

.btn-login.verde {
    background: #28a745;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    margin-right: 10px;
    text-decoration: none;
    font-weight: bold;
}

.btn-cadastro.vermelho {
    background: #dc3545;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.barra-topo-preta {
    background: #000;
    color: white;
    padding: 5px 0;
    font-size: 14px;
}

.barra-topo-preta .container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.barra-topo-preta a {
    color: white;
    text-decoration: none;
}

.header-principal {
    background: #f8f9fa;
    border-bottom: 1px solid #ccc;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.menu-header a {
    margin-left: 15px;
    font-weight: bold;
    text-decoration: none;
}

.btn-login.verde {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
}

.btn-cadastro.vermelho {
    background: #dc3545;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
}

.menu-logado {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
}

.banner-rotativo {
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}

.banner-slide {
    display: flex;
    animation: slideBanner 15s infinite ease-in-out;
}

.banner-slide img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

@keyframes slideBanner {
    0%, 30% { transform: translateX(0%); }
    35%, 65% { transform: translateX(-100%); }
    70%, 100% { transform: translateX(-200%); }
}

.only-desktop {
    display: block;
}

@media (max-width: 768px) {
    .only-desktop {
        display: none;
    }

    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .menu-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .btn-login,
    .btn-cadastro {
        flex: 1;
        text-align: center;
    }
}
.clientes-box {
    padding: 50px 20px;
    background: #f8f8f8;
    margin-top: 40px;
    border-top: 2px solid #ccc;
}

.clientes-box h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 26px;
    color: #000;
}

.avaliacoes-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.avaliacao {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    max-width: 300px;
    flex: 1;
}

.avaliacao .texto {
    font-style: italic;
    font-size: 15px;
    margin-bottom: 15px;
}

.avaliacao .autor {
    font-weight: bold;
    text-align: right;
    font-size: 14px;
    color: #333;
}
.header-completo {
    background: #eaeaea;
}

.header-topo-cinza {
    background: #333;
    border-bottom: 1px solid #ccc;
    padding: 8px 0;
}

.header-topo-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-topo-links a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

.header-inferior {
    background: #f5f5f5;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.header-inferior-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.form-busca {
    flex: 1;
    max-width: 500px;
    display: flex;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.form-busca input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}

.form-busca button {
    background: #28a745;
    color: white;
    padding: 0 15px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.header-botoes {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-login.verde {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-cadastro.vermelho {
    background: #dc3545;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.menu-logado {
    display: flex;
    gap: 15px;
    align-items: center;
    font-weight: bold;
}

@media (max-width: 768px) {
    .header-inferior-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-botoes {
        margin-top: 15px;
    }
}
.banner-rotativo {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.banner-container {
    position: relative;
    height: 250px;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.banner-slide.ativo {
    opacity: 1;
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Somente para desktop */
.only-desktop {
    display: block;
}

@media (max-width: 768px) {
    .only-desktop {
        display: none;
    }
}
.banner-rotativo {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 250px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}




.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.only-desktop {
    display: block;
}

@media (max-width: 768px) {
    .only-desktop {
        display: none;
    }
}
.banner-fixo {
    position: relative;
    max-width: 100%;
    height: 250px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 8px;
}

.banner-imgs {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-imgs img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 8px;
}

.banner-imgs img.ativo {
    opacity: 1;
    z-index: 1;
}

.bolinhas {
    text-align: center;
    margin-top: 10px;
}

.bolinha {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.bolinha.ativo {
    background: #28a745;
}

@media (max-width: 768px) {
    .only-desktop {
        display: none;
    }
}
.banner-fixo {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 250px;
    margin: 30px auto 10px;
    overflow: hidden;
    border-radius: 10px;
}

.banner-imgs {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-imgs img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}

.banner-imgs img.ativo {
    opacity: 1;
    z-index: 1;
}

.bolinhas {
    text-align: center;
    margin-top: 10px;
}

.bolinha {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.bolinha.ativo {
    background: #28a745;
}

/* Oculta no mobile */
@media (max-width: 768px) {
    .only-desktop {
        display: none;
    }
}
.bloco-lance {
    background: #f1fdf4;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #b6e6c3;
}

.bloco-lance .valor-minimo {
    font-size: 18px;
    color: #28a745;
    font-weight: bold;
    margin-bottom: 15px;
}

.bloco-lance .valores-sugeridos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bloco-lance .valor-opcao {
    background: #dfffe9;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    color: #155724;
    border: 1px solid #28a74522;
    transition: 0.2s;
}

.bloco-lance .valor-opcao:hover {
    background: #28a745;
    color: white;
    border-color: transparent;
}
.contador-barra {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    text-align: center;
    margin-bottom: -10px;
}
.tabela-lances {
    margin-top: 30px;
}

.tabela-lances h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.tabela-lances table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tabela-lances th, .tabela-lances td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 14px;
}

.tabela-lances th {
    background: #28a745;
    color: white;
    font-weight: bold;
}

.tabela-lances tr:last-child td {
    border-bottom: none;
}
