/* Estilos Responsivos */

/* Tablets e telas menores */
@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 35px;
    }
    
    .product-details {
        flex-direction: column;
    }
    
    .product-image {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .auction-header {
        flex-direction: column;
        text-align: center;
    }
    
    .timer-wrapper {
        margin-top: 15px;
    }
    
    .balance-badge {
        display: inline-block;
        margin-left: 10px;
    }
}

/* Dispositivos móveis */
@media (max-width: 767.98px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .auth-box {
        padding: 20px;
    }
    
    .card-header h3,
    .auction-header h2 {
        font-size: 1.3rem;
    }
    
    .current-price strong {
        font-size: 1.5rem;
    }
    
    .timer {
        font-size: 1.3rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .balance {
        font-size: 1.8rem;
    }
    
    .error-code {
        font-size: 6rem;
    }
    
    .product-info h3 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 30px;
    }
    
    .card-header, .card-body {
        padding: 15px;
    }
    
    .auction-header {
        padding: 15px;
    }
    
    .product-details {
        padding: 15px;
    }
    
    .bid-history {
        padding: 15px;
    }
    
    .current-price {
        padding: 10px;
    }
    
    .timer {
        font-size: 1.2rem;
    }
    
    .auth-box h2,
    .dashboard-container h2,
    .deposit-container h2,
    .affiliate-container h2,
    .profile-container h2 {
        font-size: 1.5rem;
    }
    
    .bid-actions {
        margin-top: 20px;
    }
    
    .winner-info {
        padding: 10px;
    }
    
    .error-code {
        font-size: 5rem;
    }
}