:root {
    --amor-bg: #fff7f8;
    --amor-ink: #2c1020;
    --amor-muted: #785766;
    --amor-red: #d7264d;
    --amor-coral: #ff6b81;
    --amor-wine: #651c35;
    --amor-soft: #ffe2e8;
    --amor-line: #f1b8c5;
    --amor-panel: #fff;
}

.gamor-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 16px 42px;
    color: var(--amor-ink);
    font-family: Arial, sans-serif;
}

.gamor-wrap h1,
.gamor-wrap h2,
.gamor-wrap p { margin-top: 0; }

.gamor-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 22px;
    align-items: center;
    background: radial-gradient(circle at 20% 20%, #ff8fa3 0, transparent 32%), linear-gradient(135deg, #681b38, #d7264d);
    color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 20px 55px rgba(101,28,53,.28);
}

.gamor-hero h1 {
    font-size: 42px;
    line-height: 1.06;
    margin-bottom: 12px;
    color: #fff;
}

.gamor-hero p {
    color: #ffe9ee;
    font-size: 17px;
    line-height: 1.55;
}

.gamor-tag {
    display: inline-flex;
    width: fit-content;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.32);
    color: #fff;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.gamor-price-card,
.gamor-heart-card {
    background: rgba(44,16,32,.32);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 10px;
    padding: 22px;
}

.gamor-heart-card span {
    display: block;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 12px;
}

.gamor-form,
.gamor-table-wrap,
.gamor-card,
.gamor-filtros {
    background: var(--amor-panel);
    border: 1px solid var(--amor-line);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(101,28,53,.12);
}

.gamor-form {
    margin-top: 22px;
    padding: 22px;
}

.gamor-form h2,
.gamor-card h2 { color: var(--amor-wine); }

.gamor-form label {
    display: block;
    margin: 14px 0 6px;
    font-weight: 800;
}

.gamor-form input,
.gamor-form textarea,
.gamor-form select,
.gamor-filtros input,
.gamor-filtros select {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    color: var(--amor-ink);
    border: 1px solid #e5a6b7;
    border-radius: 8px;
    padding: 12px;
}

.gamor-form input:focus,
.gamor-form textarea:focus,
.gamor-form select:focus,
.gamor-filtros input:focus,
.gamor-filtros select:focus {
    outline: none;
    border-color: var(--amor-red);
    box-shadow: 0 0 0 3px rgba(215,38,77,.12);
}

.gamor-form small,
.gamor-card small,
.gamor-table small { color: var(--amor-muted); }

.gamor-grid-2,
.gamor-grid-3 {
    display: grid;
    gap: 14px;
}
.gamor-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gamor-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.gamor-planos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 14px 0;
}

.gamor-planos label {
    margin: 0;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--amor-line);
    background: var(--amor-soft);
    cursor: pointer;
}

.gamor-planos input {
    width: auto;
    margin-right: 8px;
}

.gamor-check {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    background: #fff5f7;
    border: 1px solid var(--amor-line);
    padding: 12px;
    border-radius: 8px;
}
.gamor-check input { width: auto; margin-top: 3px; }

.gamor-btn,
.gamor-btn-sec,
.gamor-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    padding: 11px 15px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.gamor-btn { background: var(--amor-red); color: #fff; }
.gamor-btn-sec { background: #fff1f4; color: var(--amor-wine); border: 1px solid var(--amor-line); }
.gamor-mini { background: #fff1f4; color: var(--amor-wine); border: 1px solid var(--amor-line); padding: 8px 10px; font-size: 13px; }
.gamor-ok { background: #d7264d; color: #fff; border-color: #d7264d; }
.gamor-check { background: #fff5f7; }
.gamor-pago { background: #2a7f62; color: #fff; border-color: #2a7f62; }
.gamor-warn { background: #f6c343; color: #2c1800; border-color: #f6c343; }

.gamor-acoes,
.gamor-hero-actions,
.gamor-topo,
.gamor-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.gamor-topo {
    justify-content: space-between;
    margin-bottom: 18px;
}

.gamor-alerta,
.gamor-sucesso {
    margin-top: 18px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid;
}
.gamor-alerta { background: #fff8db; border-color: #e8c85d; color: #5b4300; }
.gamor-sucesso { background: #e1f8ed; border-color: #77d8a3; color: #0c4b2a; }

.gamor-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 420px));
    justify-content: center;
    gap: 16px;
}

.gamor-card {
    overflow: hidden;
}

.gamor-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.gamor-card-body {
    padding: 18px;
}

.gamor-card-campanha {
    display: inline-flex;
    color: var(--amor-red);
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 10px;
}

.gamor-card p {
    color: #4f2638;
    line-height: 1.55;
}

.gamor-admin-id {
    display: block;
    margin: -2px 0 10px;
    color: #8c1630 !important;
    font-weight: 800;
}

.gamor-card-destaque {
    border-color: var(--amor-red);
    box-shadow: 0 18px 42px rgba(215,38,77,.18);
}

.gamor-lista {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.gamor-item {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 16px;
    background: #fff;
    border: 1px solid var(--amor-line);
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 12px 30px rgba(101,28,53,.10);
}

.gamor-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.gamor-item h2 {
    color: var(--amor-wine);
    font-size: 20px;
    margin-bottom: 8px;
}

.gamor-item p {
    color: #4f2638;
    line-height: 1.55;
}

.gamor-filtros {
    padding: 14px;
    display: grid;
    grid-template-columns: 1.2fr .9fr .8fr auto auto;
    gap: 10px;
    margin-bottom: 12px;
}

.gamor-table-wrap {
    overflow-x: auto;
    margin-top: 16px;
}

.gamor-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
}

.gamor-table th,
.gamor-table td {
    padding: 12px;
    border-bottom: 1px solid var(--amor-line);
    text-align: left;
    vertical-align: top;
    color: var(--amor-ink) !important;
    background: #fff !important;
}

.gamor-table th {
    background: #fff0f4 !important;
    color: var(--amor-wine) !important;
}

.gamor-table p { color: #4f2638 !important; }
.gamor-table strong { color: var(--amor-wine); }

.gamor-status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff1f4;
    color: var(--amor-wine);
    font-weight: 900;
}
.gamor-status-publicado { background: #dff8ea; color: #0c4b2a; }
.gamor-status-aguardando_pagamento { background: #fff8db; color: #5b4300; }
.gamor-status-recusado,
.gamor-status-oculto { background: #ffe0e4; color: #8c1630; }

@media (max-width: 820px) {
    .gamor-hero,
    .gamor-grid-2,
    .gamor-grid-3,
    .gamor-planos,
    .gamor-filtros {
        grid-template-columns: 1fr;
    }
    .gamor-hero { padding: 22px; }
    .gamor-hero h1 { font-size: 32px; }
    .gamor-btn,
    .gamor-btn-sec { width: 100%; }
    .gamor-item { grid-template-columns: 1fr; }
}
