.cliente-cadastro {
    padding: 60px 20px;
}

.form-box {
    max-width: 720px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.form-grid {
    display: grid;
    gap: 16px;
    margin-top: 25px;
}

.form-grid input {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.btn-primary {
    margin-top: 25px;
    background: #06461c;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}
/* ===============================
   PAINEL CLIENTE
================================= */

.cliente-painel {
    padding: 60px 20px;
    background: #f6f8f7;
    min-height: 70vh;
}

.painel-container {
    max-width: 1100px;
    margin: 0 auto;
}

.painel-header {
    margin-bottom: 40px;
}

.painel-header h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.painel-header p {
    color: #666;
}

.painel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.painel-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.painel-card:hover {
    transform: translateY(-3px);
}

.painel-card h3 {
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.painel-info p {
    margin-bottom: 12px;
    font-size: 14px;
}

.painel-actions {
    margin-top: 25px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 18px;
    border: 2px solid #0b4d2b;
    color: #0b4d2b;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #0b4d2b;
    color: #fff;
}

.painel-empty {
    padding: 20px;
    background: #f2f4f3;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

/* RESPONSIVO */

@media (max-width: 900px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
}
.painel-pedidos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pedido-item {
    padding: 15px;
    background: #f7f9f8;
    border-radius: 10px;
    transition: 0.3s ease;
}

.pedido-item:hover {
    background: #eef3f1;
}

.pedido-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

.pedido-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

.status.novo {
    background: #e3f2fd;
    color: #1976d2;
}

.status.aprovado {
    background: #e8f5e9;
    color: #2e7d32;
}

.status.cancelado {
    background: #ffebee;
    color: #c62828;
}
.cliente-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.pedido-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.pedido-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pedido-status {
    background: #e6f3ff;
    color: #007bff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.pedido-itens table {
    width: 100%;
    border-collapse: collapse;
}

.pedido-itens th,
.pedido-itens td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.pedido-total {
    text-align: right;
    margin-top: 20px;
    font-size: 18px;
}
.painel-pedidos {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pedido-card-link {
    text-decoration: none;
    color: inherit;
}

.pedido-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    transition: .25s ease;
}

.pedido-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.pedido-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pedido-id {
    font-weight: 600;
    font-size: 16px;
}

.pedido-data {
    font-size: 13px;
    color: #777;
}

.pedido-right {
    text-align: right;
}

.pedido-total {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* STATUS COLORS */
.status-novo {
    background: #e6f3ff;
    color: #007bff;
}

.status-negociando {
    background: #fff3cd;
    color: #856404;
}

.status-fechado {
    background: #d4edda;
    color: #155724;
}

.status-cancelado {
    background: #f8d7da;
    color: #721c24;
}

.pedido-vazio {
    background: #f3f3f3;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    color: #777;
}
/* ===== LOGIN ===== */

.login-wrapper {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.login-card h1 {
    margin-bottom: 10px;
    font-size: 28px;
}

.login-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: .2s;
}

.form-group input:focus {
    border-color: #0d5c2f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13,92,47,.1);
}

.btn-login {
    background: #0d5c2f;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: .25s;
}

.btn-login:hover {
    background: #0a4724;
    transform: translateY(-2px);
}

.login-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.login-footer a {
    color: #0d5c2f;
    font-weight: 600;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

.login-erro {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 13px;
}
.dados-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.btn-editar {
    background: #0f5c2a;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
}

.link-senha {
    display: inline-block;
    margin-top: 15px;
    font-size: 13px;
    color: #0f5c2a;
}
.pedido-card h2 i {
    margin-right: 8px;
    color: #0d5c2f;
}

.pedido-header h2 {
    font-size: 22px;
}

.pedido-itens thead {
    background: #f4f6f5;
}

.pedido-itens th {
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    color: #666;
}

.pedido-total {
    font-size: 20px;
    font-weight: 700;
    color: #0d5c2f;
}
/* ===== BOTÃO VOLTAR PEDIDO ===== */

.btn-voltar {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;
    border-radius: 30px;

    background: #f2f4f3;
    color: #0d5c2f;

    text-decoration: none;
    font-weight: 600;
    font-size: 14px;

    transition: all .25s ease;
}

.btn-voltar i {
    font-size: 13px;
}

.btn-voltar:hover {
    background: #0d5c2f;
    color: #fff;
    transform: translateX(-2px);
}

