:root {
    --green: #123c2c;
    --green-2: #1e694a;
    --lime: #d9ee73;
    --yellow: #f4c933;
    --ink: #17221d;
    --muted: #66756e;
    --line: #dfe7e2;
    --paper: #f2f6f3;
    --white: #fff;
    --danger: #b42318;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 85% 5%, rgba(217, 238, 115, .28), transparent 24rem),
        var(--paper);
    font: 15px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 26px 0 40px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: var(--green);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: var(--yellow);
    background: var(--green);
    font-size: 25px;
    font-weight: 900;
}

.brand strong { display: block; letter-spacing: .16em; }
.brand small { display: block; color: var(--muted); }

.card {
    padding: 28px;
    border: 1px solid rgba(18, 60, 44, .09);
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 48px rgba(27, 62, 47, .07);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
    align-items: center;
    gap: 40px;
    min-height: 390px;
    overflow: hidden;
    color: white;
    background: linear-gradient(135deg, #0e3526, #1e6748);
}

h1 {
    margin: 8px 0 12px;
    font-size: clamp(29px, 4.3vw, 52px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.narrow { max-width: 600px; margin: 46px auto; }
.narrow h1 { font-size: clamp(28px, 4vw, 40px); }
.narrow p { color: var(--muted); }

.hero p { max-width: 630px; color: #d8e8df; font-size: 17px; }
.eyebrow { color: var(--green-2); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.hero .eyebrow { color: var(--lime); }

.flow {
    display: grid;
    justify-items: center;
    gap: 10px;
}

.flow div {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 210px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    background: rgba(255, 255, 255, .09);
}

.flow b {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    color: var(--green);
    background: var(--yellow);
}

.flow i { color: var(--lime); font-size: 20px; }

.grid { display: grid; gap: 20px; margin-top: 20px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 22px; }
.button-row form { margin: 0; }

.button, button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 0;
    border-radius: 12px;
    color: white;
    background: var(--green);
    font: inherit;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
}

.hero .button { color: var(--green); background: var(--yellow); }
.button.secondary { color: var(--green); background: #e7efe9; }
.hero .button.secondary { color: white; border: 1px solid rgba(255,255,255,.25); background: transparent; }
.button.ghost { color: var(--green); border: 1px solid var(--line); background: white; }
.button.whatsapp { margin-top: 10px; background: #159b58; }

.text-link { display: inline-block; margin-top: 16px; color: var(--green-2); font-weight: 750; text-decoration: none; }

.status-list { padding: 0; margin: 18px 0 4px; list-style: none; }
.status-list li { display: flex; justify-content: space-between; gap: 15px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.status-list .ok { color: #137a43; }
.status-list .bad { color: var(--danger); }

code {
    display: block;
    margin-top: 15px;
    padding: 13px;
    overflow-wrap: anywhere;
    border-radius: 12px;
    color: #dff4e8;
    background: #15372b;
}

.muted { color: var(--muted); }

.form-grid { display: grid; gap: 15px; margin-top: 22px; }
.form-grid label { display: grid; gap: 7px; color: var(--green); font-weight: 700; }

input {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #cfd9d2;
    border-radius: 11px;
    outline: none;
    background: white;
    font: inherit;
}

input:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(30, 105, 74, .11); }

.alert { margin: 16px 0; padding: 12px 14px; border-radius: 11px; background: #fff8d9; }
.alert.success { color: #12683a; background: #def6e8; }
.alert.danger { color: var(--danger); background: #fee9e7; }

.page-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin: 20px 0; }
.page-head h1 { font-size: clamp(32px, 5vw, 48px); }

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 18px; }
.stats article { padding: 20px; border-radius: 18px; color: white; background: var(--green); }
.stats span { display: block; color: #cfe2d8; }
.stats b { display: block; margin-top: 4px; color: var(--yellow); font-size: 34px; }

.table-card { padding: 0; overflow: hidden; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
th { color: var(--muted); background: #f8faf8; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.tag { padding: 5px 9px; border-radius: 99px; color: var(--green); background: #e5efe8; font-size: 12px; font-weight: 800; }
.yes { color: #148249; font-weight: 800; }
.empty { padding: 40px; color: var(--muted); text-align: center; }

footer { padding: 30px 0 0; color: var(--muted); text-align: center; font-size: 13px; }

@media (max-width: 760px) {
    .hero, .grid.two { grid-template-columns: 1fr; }
    .hero { gap: 30px; }
    .flow { display: none; }
    .stats { grid-template-columns: 1fr; }
    .page-head { align-items: flex-start; flex-direction: column; }
    .card { padding: 21px; border-radius: 19px; }
}

