/* Estilos para a página Stand */
.full-page {
    padding: 0;
    margin: 0;
    background-color: #ffffff;
}

.full-content {
    padding: 10px 15px 70px;
    width: 100%;
    box-sizing: border-box;
}
.car-categories {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
    gap: 10px;
    margin-bottom: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.car-categories::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.category-tab {
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 20px;
    white-space: nowrap;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-tab.active {
    background-color: #42B86C;
    color: white;
    font-weight: bold;
}

.car-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 70px;
}

.car-card {
    background-color: rgba(76, 175, 80, 0.15);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.car-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-info {
    padding: 15px;
    position: relative;
}

.car-info h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1rem;
}

.car-price {
    color: #42B86C;
    font-weight: bold;
    margin-bottom: 15px;
}

.car-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-value {
    font-weight: bold;
    color: #333;
    font-size: 1rem;
}

.stat-label {
    font-size: 0.7rem;
    color: #666;
}

.rent-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 25px;
    background-color: #f44336;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.rent-button:hover {
    background-color: #d32f2f;
}

.driving-status {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 25px;
    background-color: #0066FF;
    color: white;
    font-weight: bold;
    text-align: center;
}

/* Toast para notificações */
.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}