
.pedido {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    min-height: 100vh;
}

.pedido img {
    max-height: 500px;
    max-width: 500px;
}

.pedido a {
    text-decoration: none !important;
}

.pedido .produto-preco {
       font-size: 32px;
       font-weight: 800;
       color: #D97A00;
   }

.pedido .img-destaque {
    width: 100%;
    max-width: 420px;
    height: 420px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    background: #000;
}

.pedido .img-destaque img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pedido .img-destaque:hover img {
    transform: scale(1.08);
}

.pedido .img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 2;
}

.pedido .badge-img {
    background: #ff7b00;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pedido .img-destaque::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.3), transparent);
    z-index: 1;
}

@media (max-width: 768px) {
    .pedido img {
        max-width: 100%;
        max-height: 100%;
    }
}