/* Container principal */
.container-cards {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.container-cards h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

/* Grid de cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-items: center;
}

/* Card de serviço/profissional */
.card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
}

.card h3 {
    text-align: center;
    color: #0077cc;
    margin-bottom: 12px;
}

.card .descricao {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
}

/* Botão enviar orçamento */
.btn-acao {
    margin-top: auto;
    background: #28a745;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.btn-acao:hover {
    background: #218838;
}

/* Mensagens sem serviços */
.sem-item {
    text-align: center;
    color: #666;
    font-size: 16px;
    grid-column: 1 / -1;
}

/* Responsivo */
@media(max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}
/* CARD CLIENTE */
.card-cliente {
    max-width: 500px;
}

/* Orçamentos dentro do card */
.orcamento-item {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 6px;
    margin-top: 12px;
    font-size: 14px;
}

.orcamento-item.aceito {
    background: #e8f8ee;
    border: 1px solid #28a745;
}

.badge-aceito {
    color: #28a745;
    font-weight: bold;
}

.btn-aceitar {
    background: #0077cc;
    color: white;
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.btn-aceitar:hover {
    background: #005fa3;
}