/* ============================================
   BIDHARBOUR MOBILE - style_480.css
   Design baseado na imagem de referência
   ============================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    overflow-x: hidden;
}

.page {
    width: 100%;
    margin-top: -25px;
    padding: 0;
}

/* ============================================
   ESCONDER ELEMENTOS DESKTOP
   ============================================ */
.top-header,
.main-header ,
.main-nav{
    display: flex !important;
}

.categories{
    display: none !important;
}

.contact-info{
    display:none;
}
.favoritos{
    display:none;
}

.nav-menu{
    display:none !important;
}

.language-selector-wrapper{
    width: 60px !important;
    border: none !important;
    position: absolute !important;
    z-index: 10000;
    display: flex;
    right: 60px;
    background: no-repeat;
    top: 7px;
}

.language-selector{
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.language-selector .arrow{
    display: none !important;
}
.language-name{
    display:none !important;
}

.skiptranslate{
    display: none !important;
}
.language-selector .flag {
    width: 35px !important;
    height: 25px !important;
}

/* ============================================
   HEADER MOBILE
   ============================================ */
.main-header {
    background: linear-gradient(to right, #FFCC00 0%, #683D13 70%, #613D13 100%) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    max-width: 100%;
    padding: 0;
}

.main-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.main-header .logo {
    flex: 1;
}

.main-header .logo img {
    max-width: 180px;
    height: auto;
}

/* Menu Toggle Button */
.main-header .auth-section {
    margin: 0;
    padding: 0;
}

.main-header .sign-in-btn {
    display: none;
}

.main-header::after {
    content: '☰';
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background-color: none;
    color: #fff;
    border-radius: 8px;
    padding: 0px 15px 10px;
    cursor: pointer;
    line-height: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.destaques {
    background: linear-gradient(135deg, #2C5F7D 0%, #004a72 100%);
    padding: 40px 20px;
    color: #fff;
    position: relative;
    background-image: url('ship-background.jpg');
    background-size: cover;
    background-position: center;
    display: none !important;
}

.destaques::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,95,125,0.9) 0%, rgba(74,144,226,0.8) 100%);
}

.destaques .container {
    position: relative;
    z-index: 1;
}

.destaques h1,
.destaques .hero-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
    color: #fff;
}

.destaques .highlight {
    color: #4FC3F7;
}

/* ============================================
   CATEGORY SELECTOR
   ============================================ */
.search-section {
    padding: 20px;
    background: #f5f5f5;
    display:none !important;
}

.search-form {
    display: block !important;
}

.category-select {
    width: 100% !important;
    padding: 18px 20px !important;
    font-size: 16px !important;
    border: 2px solid #ddd !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: #666 !important;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.search-input,
.search-btn {
    display: none !important;
}

/* ============================================
   AUCTION CARDS
   ============================================ */
.auctions {
    padding: 0 !important;
    background: #f5f5f5;
}

.auctions .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.auction-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 !important;
}

.auction-card {
    background: #fff !important;
    margin: 0 20px 20px 20px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    width: auto !important;
}

/* Auction Image */
.auction-image {
    position: relative !important;
    width: 100% !important;
    height: 0 !important;
    padding-top: 75% !important;
    background: #f0f0f0 !important;
    overflow: hidden !important;
}

.auction-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Closing Badge */
.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 */
.auction-info {
    padding: 25px 20px !important;
}

.auction-info h3 {
    font-size: 22px !important;
    font-weight: bold !important;
    color: #2C3E50 !important;
    margin: 0 0 20px 0 !important;
    text-align: center !important;
    min-height: auto !important;
}

/* Auction Details */
.auction-details {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.auction-details > div,
.auction-detail-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 !important;
    font-size: 16px !important;
    color: #555 !important;
}

.auction-details i {
    width: 24px !important;
    text-align: center !important;
    color: #E57373 !important;
    font-size: 18px !important;
}

.auction-lots {
    /*display: flex !important;*/
    /*align-items: center !important;*/
    /*gap: 12px !important;*/
    /*font-size: 16px !important;*/
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
    background: #f9f6f1;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
}
.auction_list {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.timer {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 16px !important;
    background: transparent !important;
    padding: 0 !important;
}

/* Progress Bar */
.progress-bar,
.auction-progress {
    width: 100% !important;
    height: 8px !important;
    background: #E0E0E0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    position: relative !important;
    margin-top: 10px !important;
}

.progress-fill {
    height: 100% !important;
    background: linear-gradient(to right, #E57373 0%, #EF5350 100%) !important;
    border-radius: 10px !important;
    width: 75% !important;
    position: relative !important;
}

.progress-dot {
    position: absolute !important;
    right: -12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    height: 24px !important;
    background: #fff !important;
    border: 3px solid #EF5350 !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
}

/* ============================================
   LOAD MORE BUTTON
   ============================================ */
.load-more-container {
    text-align: center;
    padding: 30px 20px;
}

.btn-load-more {
    background: linear-gradient(to right, #004a72 0%, #2C5F7D 100%);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(74,144,226,0.3);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #2C3E50;
    color: #fff;
    padding: 40px 20px 80px 20px;
    margin-top: 40px;
    display: none !important;
}

footer .container {
    max-width: 100%;
}

.footer-content {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #4FC3F7;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #ccc;
}

/* ============================================
   MOBILE BOTTOM NAVIGATION
   ============================================ */
.mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #FFCC00 0%, #683D13 70%, #613D13 100%);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    padding: 8px 0 12px 0;
}

.mobile-bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 0 5px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 8px;
    flex: 1;
    max-width: 80px;
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-nav-item.active,
.mobile-nav-item:active {
    background: rgba(255,255,255,0.3);
    color: #004a72;
}

body {
    padding-bottom: 70px;
}

/* ============================================
   AJUSTES EXTRAS
   ============================================ */
.container {
    padding: 0 !important;
}

#mainarea {
    padding: 0 !important;
    margin-top: 25px;
}

.hidden {
    display: none !important;
}

/* Remove espaçamentos desnecessários */
.auctions .section-title {
    display: none;
}

/* 20240327_1 */
#google_translate_element{
    display: none;
}
/* Esconder a barra do Google Translate no topo */
.goog-te-banner-frame {
    display: none !important;
}
body {
    top: 0 !important;
}

.breadcrumb-container, .breadcrumb-container nav {
    display: block !important;
    background-color: #004a72;
    color: #FFF;
    padding: 10px;
}

.breadcrumb-icon{
    display: none !important;
}
.breadcrumb-item a,.breadcrumb-item.active{
    color:#FFF !important;
    padding: 0px 8px 0px 8px !important;
    text-decoration: none !important;
}

.linha-gradiente, .seccaoleiloesterminados{
    display: none !important;
}

.section-header{
    display: none !important;
}

.product-image {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 250px;
    _object-fit: cover;
    transition: transform 0.3s;
}

.product-overlay {
    position: absolute;
    _top: 10px;
    _left: 10px;
    display: flex;
    gap: 8px;
    top: 50%;
}
.action-btn {
    _background: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: all 0.3s;
}

.relogio {
    _background: linear-gradient(to right, #FFCC00 0%, #683D13 70%, #613D13 100%);
    background: linear-gradient(to right, #0494c8 0%, #076797 70%, #014c73 100%);
    position: relative;
    width: 100%;
    margin: auto;
    _padding: 15px 10px;
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    top: -10px;
}
.relogio > span {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: lighter;
    text-align: center;
    _margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.tempo-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: transparent;
}
.tempo {
    background: transparent;
    text-align: center;
    color: #fff;
    flex: 1;
    padding: 0px;
}
.product-info {
    padding-left: 20px;
}
.product-info {
    padding: 25px;
    padding-left: 25px;
    text-align: center;
    min-height: 150px;
}
.product-info .titulo_leilao {
    text-align: center;
    height: 50px;
    display: block;
}
.product-info h3 {
    font-size: 18px;
    color: #242424;
    margin-bottom: 10px;
    font-weight: 600;
}
.product-info .dados_lote {
    text-align: left;
    height: 40px;
    display: block;
}
.bidding-area-reorganizada {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    margin-top: 8px;
}
.aviso-propriedade {
    color: #28a745;
    font-weight: bold;
    text-align: center;
    padding: 8px 12px;
    background: none;
    _border: 1px solid #28a745;
    border-radius: 0px;
    font-size: 0.9em;
}
.info-item.lance-atual {
    border-left-color: #28a745;
    background: #f0f9f4;
}
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 4px;
    border-left: 3px solid #ddd;
    border-left-color: rgb(221, 221, 221);
    font-size: 0.9em;
}
.info-label {
    font-size: 0.85em;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
}
.info-item.lance-atual .info-value {
    color: #28a745;
    font-size: 1.2em;
    font-weight: bold;
}
.info-value {
    font-size: 1em;
    font-weight: bold;
    color: #333;
}
.info-item.lance-minimo {
    border-left-color: #ffc107;
}
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 4px;
    border-left: 3px solid #ddd;
    border-left-color: rgb(221, 221, 221);
    font-size: 0.9em;
}
.info-item.numero-lances {
    border-left-color: #17a2b8;
}
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 4px;
    border-left: 3px solid #ddd;
    border-left-color: rgb(221, 221, 221);
    font-size: 0.9em;
}
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 4px;
    border-left: 3px solid #ddd;
    font-size: 0.9em;
}

.btn-licitar-principal {
    background: linear-gradient(to right, #FFCC00 0%, #683D13 70%, #613D13 100%);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    margin-top: 0px;
    bottom:3%;
    position: relative;
    width: 90%;
    margin:auto;
}

.btn-licitar-principal:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.btn-licitar-principal a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    color: white;
    text-decoration: none;
}
.btn-licitar-principal:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}


.bidding-area-reorganizada {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    margin-top: 8px;
}
