/* Estilos gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Header */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Produtos */
.produto-card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.produto-imagem {
    height: 200px;
    object-fit: cover;
}

.produto-preco {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745;
}

/* Detalhes do produto */
.produto-detalhes-imagem {
    max-height: 400px;
    object-fit: contain;
}

/* Carrinho */
.carrinho-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.carrinho-item-imagem {
    max-height: 80px;
    object-fit: contain;
}

.carrinho-quantidade {
    width: 60px;
}

/* Formulários */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Banners */
.banner {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.banner-content {
    background-color:#0c233f;
    padding: 2rem;
    border-radius: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .banner {
        height: 200px;
    }
}

/* Botões */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* Alertas */
.alert {
    margin-bottom: 1rem;
}

/* Paginação */
.pagination {
    justify-content: center;
    margin-top: 2rem;
}

/* Rodapé */
footer {
    margin-top: auto;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Checkout */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.checkout-step {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background-color: #e9ecef;
    border-radius: 5px;
    margin: 0 5px;
}

.checkout-step.active {
    background-color: #007bff;
    color: white;
}

.checkout-step.completed {
    background-color: #28a745;
    color: white;
}

/* Pedidos */
.pedido-card {
    margin-bottom: 1rem;
}

.pedido-status {
    font-weight: bold;
}

.status-pendente {
    color: #ffc107;
}

.status-confirmado {
    color: #17a2b8;
}

.status-enviado {
    color: #007bff;
}

.status-entregue {
    color: #28a745;
}

.status-cancelado {
    color: #dc3545;
}
