.painel-pedidos-cozinha {
    width: 100%;
    min-height: 900px;
    border-radius: 22px;
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),url('../../../img/refeicao.png') center/cover no-repeat;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    padding: 30px;
}

/* Título */
.painel-pedidos-cozinha h1 {
    color: #004E4C;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
    padding: 0;
    border-radius: 0;
    display: inline-block;
    box-shadow: none;
}

/* Grid */
.grid-cardapios {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* Card */
.card-cardapio {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    border-left: 6px solid #00995D;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-cardapio:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

/* Imagem */
.card-cardapio .img {
    height: 150px;
    overflow: hidden;
}

.card-cardapio .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-cardapio:hover .img img {
    transform: scale(1.05);
}

/* Conteúdo */
.card-cardapio .conteudo {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.card-cardapio h3 {
    margin: 0;
    color: #004E4C;
    font-size: 20px;
    font-weight: 600;
}

/* Horários */
.horarios {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #444;
}

.horarios span {
    padding: 7px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Botão */
.btn-ver-pedidos {
    margin-top: auto;
    background: linear-gradient(135deg, #00B377, #00995D);
    color: #ffffff;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 14px rgba(0, 153, 93, 0.35);
}

.card-cardapio:hover .btn-ver-pedidos {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 153, 93, 0.45);
}