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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    background: linear-gradient(to right, #FFCC00 0%, #683D13 70%, #613D13 100%);
    _box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #000;
    color: #fff;
    padding: 10px 0;
    width: 100%;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-info i {
    font-size: 14px;
}

.language-selector select {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
/*
@media (max-width: 768px) {
    .language-selector select {
        font-size: 12px;
        padding: 4px 8px;
    }
}*/

.header-main {
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    transition: all 0.3s;
}

.logo:hover {
    color: #FFCC00;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 5px;
}

nav a:hover {
    color: #FFCC00;
    background: rgba(255, 255, 255, 0.1);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.auth-buttons .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.auth-buttons .btn-secondary:hover {
    background: #fff;
    color: #683D13;
}

.auth-buttons .btn-primary {
    background: #fff;
    color: #683D13;
}

.auth-buttons .btn-primary:hover {
    background: #FFCC00;
    color: #000;
}

.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: #FFCC00;
    color: #000;
    font-weight: 600;
}

.btn-primary:hover {
    background: #683D13;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #FFCC00;
    color: #FFCC00;
}

.btn-secondary:hover {
    background: #FFCC00;
    color: #000;
}

/* Categories */
.categories {
    padding: 0px 20px;
    background: #f8f9fa;
}

.container {
    width: 100% !important;
    max-width: 1400px!important;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #000;
}

.category-carousel-container {
    position: relative;
    padding: 0 50px;
    width: 100%;
}

.category-carousel-container::before,
.category-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 5;
    pointer-events: none;
}

.category-carousel-container::before {
    left: 50px;
    background: linear-gradient(to right, rgba(248,249,250,1), rgba(248,249,250,0));
}

.category-carousel-container::after {
    right: 50px;
    background: linear-gradient(to left, rgba(248,249,250,1), rgba(248,249,250,0));
}

.category-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.category-grid:active {
    cursor: grabbing;
}

.category-grid::-webkit-scrollbar {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 204, 0, 0.9);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-weight: bold;
}

.carousel-btn:hover {
    background: rgba(104, 61, 19, 0.9);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.category-card {
    background: #fff;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    overflow: hidden;
    _height: 260px;
    position: relative;
    _min-width: 280px;
    flex-shrink: 0;
    height: 150px;
    min-width: 150px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.category-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s;
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

.category-card:last-child {
    margin-right: 20px;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    transition: background 0.3s;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to bottom, rgba(255,204,0,0.3), rgba(104,61,19,0.6));
}

.category-content {
    _padding: 20px;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: none;
}

.category-card h3 {
    margin-bottom: 10px;
    color: #000;
}

.category-card p {
    color: #666;
}

/* Auctions */
.auctions {
    padding: 60px 20px;
}

.auction-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
    width: 100%;
}

.auction-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.auction-card.hidden {
    display: none;
}

.auction-card:hover {
    transform: translateY(-5px);
}

.auction-card:hover .auction-lots {
    background: #FFCC00;
    color: #000;
}

.auction-card:hover .hammer-icon i {
    color: #000;
}

.auction-card:hover .hammer-icon {
    animation: hammer-hit 0.5s ease-in-out;
}

@keyframes hammer-hit {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-25deg) scale(1.1); }
}

.auction-image {
    width: 100%;
    height: 200px;
    background: #ddd;
    position: relative;
    overflow: hidden;
}

.auction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.auction-card:hover .auction-image img {
    transform: scale(1.05);
}

.auction-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    pointer-events: none;
}

.auction-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFCC00;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.auction-info {
    padding: 20px;
}

.auction-info h3 {
    margin-bottom: 10px;
    color: #000;
    text-align: center;
    min-height:70px;
}

.auction-details {
    display: flex;
    justify-content: space-between;
    margin: 15px 0px;
    color: #333;
    font-size: 14px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
}

.auction-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.auction-details i {
    font-size: 16px;
}

.auction-details .bi-geo-alt-fill {
    color: #e74c3c;
}

.auction-details .bi-calendar3 {
    color: #3498db;
}

.auction-price {
    font-size: 24px;
    font-weight: bold;
    color: #f4c542;
    margin: 15px 0;
    display: none;
}

.auction-lots {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
    background: #f9f6f1;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
}

.auction-lots .hammer-icon {
    font-size: 24px;
    transition: transform 0.3s;
    display: inline-flex;
    align-items: center;
}

@keyframes swing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.timer {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.timer i {
    font-size: 16px;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.btn-load-more {
    padding: 15px 50px;
    font-size: 16px;
}

.btn-load-more.hidden {
    display: none;
}
/*
@media (max-width: 768px) {
    .btn-load-more {
        padding: 12px 35px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
}
*/
/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 50px 20px 20px;
    width: 100%;
}

.footer-content {
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #FFCC00;
}

.footer-section p {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section p i {
    font-size: 16px;
    color: #FFCC00;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}
/*
@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 20px;
        width: 95%;
        padding: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }

    nav ul li {
        width: 100%;
    }

    nav a {
        display: block;
        padding: 10px;
        color: #fff;
    }

    nav a:hover {
        background: rgba(255, 204, 0, 0.2);
        border-radius: 5px;
    }

    .container {
        width: 95%;
    }

    .auction-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-carousel-container {
        padding: 0 30px;
    }

    .category-carousel-container::before {
        left: 30px;
        width: 40px;
    }

    .category-carousel-container::after {
        right: 30px;
        width: 40px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .category-card {
        min-width: 220px;
        height: 250px;
    }

    .category-image {
        height: 150px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .auth-buttons {
        width: 100%;
        flex-direction: column;
    }

    .auth-buttons .btn {
        width: 100%;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }

    .contact-info i {
        font-size: 12px;
    }

    .header-top .container {
        width: 95%;
        padding: 0 10px;
        flex-direction: column;
        gap: 10px;
    }

    .header-top .container > div {
        justify-content: center;
        width: 100%;
    }

    .footer-content {
        width: 95%;
        gap: 30px;
    }

    .footer-bottom {
        width: 95%;
        font-size: 12px;
    }

    footer {
        padding: 30px 15px 15px;
    }
}
*/
@media (min-width: 769px) and (max-width: 1024px) {
    .header-main {
        width: 92%;
    }

    .container {
        width: 92%;
    }

    .auction-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .category-card {
        min-width: 240px;
    }

    .section-title {
        font-size: 32px;
    }

    nav ul {
        gap: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .auction-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .auction-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .category-card {
        min-width: 260px;
    }
}

@media (min-width: 1441px) {
    .auction-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .category-card {
        _min-width: 300px;
        width:150px;
    }

    .section-title {
        font-size: 42px;
    }
}

@media (min-width: 1920px) {
    .container,
    .header-main,
    .header-top .container,
    .footer-content,
    .footer-bottom {
        max-width: 2000px;
    }

    .auction-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-title {
        font-size: 48px;
    }
}
/*
@media (max-width: 480px) {
    .logo {
        font-size: 22px;
    }

    .section-title {
        font-size: 24px;
    }

    .auction-card {
        margin: 0 auto;
        max-width: 100%;
        min-height: 380px;
    }

    .auction-info h3 {
        font-size: 16px;
    }

    .auction-details {
        font-size: 13px;
    }

    .auction-details i {
        font-size: 14px;
    }

    .auction-lots {
        font-size: 18px;
        padding: 10px 15px;
    }

    .timer {
        font-size: 13px;
    }

    .timer i {
        font-size: 14px;
    }

    .category-card {
        min-width: 200px;
        height: 230px;
    }

    .category-image {
        height: 130px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .category-carousel-container {
        padding: 0 25px;
    }

    nav {
        width: 100%;
    }
}
*/

:root { --brown:#5a3e2b; }
.category-card{
    background:#fff;border-radius:12px;padding:20px;text-align:center;
    transition:.3s box-shadow,.3s transform;box-shadow:0 4px 10px rgba(0,0,0,.08)
}
.category-card a{
    text-decoration:none;
}
.category-card:hover{transform:translateY(-4px);box-shadow:0 8px 18px rgba(0,0,0,.12)}
.icon-tile{
    width:70px;height:70px;margin:0 auto 14px;border-radius:16px;_background:var(--brown);
    display:grid;place-items:center;overflow:hidden; background-color: #004a72;
}
.icon-tile svg{width:45px;height:45px;fill:#fff;display:block}
.category-content h3{font-size:10pt;margin:0 0 4px}
.category-content p{margin:0;color:#777;font-size:9pt}


/* Hero Section */
.hero {
    _background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #f4c542 100%);
    _background:black;
    background: linear-gradient(to right, #FFCC00 0%, #683D13 70%, #613D13 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.search-bar {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.search-bar input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-bar button {
    padding: 18px 35px;
    background: #f4c542;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #e0b339;
}

.btn_home_verleilao{
    background-color: #004a72 !important;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Efeito ao passar o mouse */
.btn_home_verleilao:hover{
    background-color: #006699 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Efeito ao clicar */
.btn_home_verleilao:active{
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Efeito de foco (acessibilidade) */
.btn_home_verleilao:focus{
    outline: 2px solid #00aaff;
    outline-offset: 2px;
}

/* Efeito de disabled */
.btn_home_verleilao:disabled{
    background-color: #cccccc !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.seccaoleiloesterminados{
    _display: block;
    _width: 100%;
}
.linha-gradiente {
    border: none;
    height: 42px;
    background: linear-gradient(to right, #FFCC00 0%, #683D13 70%, #613D13 100%);
    margin: 20px 0;
    color: #000;
    font-weight: bold;
    line-height: 42px;
    border-radius: 5px;
    padding-left: 10px;
}

.mobile-bottom-nav{
    display:none;
}