:root {
    --bg: #070707;
    --bg-elev: #101010;
    --bg-card: #141414;
    --ink: #f4f4f4;
    --mute: #a3a3a3;
    --red: #e10600;
    --red-hot: #ff2a2a;
    --red-deep: #8a0400;
    --line: rgba(225, 6, 0, .28);
    --line-soft: rgba(255, 255, 255, .08);
    --ok: #3dd68c;
    --err: #ff6b6b;
    --aviso: #f5c15c;
    --shadow: 0 24px 50px rgba(0, 0, 0, .45);
    --radius: 18px;
    --font: "Outfit", system-ui, sans-serif;
    --display: "Oswald", "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: var(--red); color: #fff; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background:
        radial-gradient(900px 420px at 8% -10%, rgba(225, 6, 0, .18), transparent 55%),
        radial-gradient(700px 380px at 100% 0, rgba(225, 6, 0, .08), transparent 50%),
        var(--bg);
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--red-hot); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #fff; }
h1, h2, h3 {
    font-family: var(--display);
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.12;
    margin: 0 0 .55em;
    font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.35rem, 2.3vw, 1.9rem); }
p { margin: 0 0 1em; }
code {
    font-family: ui-monospace, Consolas, monospace;
    background: #1c1c1c;
    color: #ffd0d0;
    padding: .12em .4em;
    border-radius: 6px;
    border: 1px solid var(--line-soft);
}

.skip {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip:focus {
    position: static;
    width: auto;
    height: auto;
    clip: auto;
    padding: 8px 12px;
    background: #111;
    color: #fff;
}
figure { margin: 0; }

.wrap,
.estreito,
.alertas {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 28px;
    padding-right: 28px;
}
.wrap,
.alertas { max-width: 1180px; }
.estreito { max-width: 680px; }
.page { padding: 48px 0 88px; }
.secao { padding: 28px 0 64px; }
.secao-topo {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.marca {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}
.marca img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--line);
    box-shadow: 0 0 0 3px rgba(225, 6, 0, .12);
}
.marca-texto { display: grid; line-height: 1.1; }
.marca-texto strong {
    font-family: var(--display);
    font-size: 1.35rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.marca-texto small {
    color: var(--mute);
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.marca-lateral { margin-bottom: 8px; }
.marca-lateral img { width: 72px; height: 72px; }
.marca-rodape img { width: 48px; height: 48px; }
.marca-centro { justify-content: center; margin: 0 auto 28px; }
.marca-centro img { width: 96px; height: 96px; }
.marca-compacta img { width: 44px; height: 44px; }
.marca-compacta .marca-texto small { display: none; }

.topo {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(7, 7, 7, .86);
    border-bottom: 1px solid var(--line);
}
.topo-inner, .rodape-inner, .faixa-inner, .hero-acoes, .filtros, .acoes {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}
.topo-inner {
    justify-content: space-between;
    min-height: 76px;
    flex-wrap: nowrap;
    gap: 12px;
}
.topo-acoes { display: flex; gap: 10px; align-items: center; flex-wrap: nowrap; }
.topo-acoes .btn { white-space: nowrap; padding: .7rem 1rem; }
.nav { display: flex; gap: 22px; flex-wrap: nowrap; }
.hero-acoes { flex-wrap: nowrap; }
.hero-acoes .btn { white-space: nowrap; }
.nav a {
    color: #d7d7d7;
    text-decoration: none;
    font-weight: 500;
    font-size: .92rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.nav a.is-ativo, .lateral nav a.is-ativo { color: var(--red-hot); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    padding: .88rem 1.2rem;
    border-radius: 999px;
    font: 600 0.92rem var(--font);
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-ouro {
    background: var(--red);
    color: #fff;
    box-shadow: 0 8px 24px rgba(225, 6, 0, .35);
}
.btn-ouro:hover { background: var(--red-hot); color: #fff; }
.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--red); color: #fff; }
.btn-claro { background: #fff; color: #111; }
.link-btn {
    background: none;
    border: 0;
    color: var(--red-hot);
    cursor: pointer;
    font: inherit;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mural-faixa { margin-top: 18px; }
.hero { padding: 56px 0 36px; }
.lista-mes-faixa { margin: 22px auto 8px; }
.lista-aniversariantes-mes {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 20px;
    margin: 0;
    padding: 0;
}
.lista-aniversariantes-mes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    transition: opacity .28s ease, transform .28s ease;
}
.lista-aniversariantes-mes li.is-trocando { opacity: .25; transform: translateY(4px); }
.foto-mini-quadrado {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    flex: 0 0 56px;
    background: #111;
    border: 1px solid var(--line-soft);
}
.lista-aniversariante-dados { min-width: 0; }
.lista-aniversariante-dados .titulo {
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    color: var(--ink);
}
.lista-aniversariante-dados .subtitulo {
    margin: 2px 0 0;
    font-size: .82rem;
    color: var(--mute);
}
.lista-aniversariante-dados .descricao {
    margin: 4px 0 0;
    font-size: .82rem;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.stats-faixa { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px; }
.hero-grid, .grade-2, .grade-3, .grade-painel { display: grid; gap: 24px; min-width: 0; }
.hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
.grade-2 { grid-template-columns: 1fr 1fr; }
.grade-3 { grid-template-columns: repeat(3, 1fr); }
.grade-painel { grid-template-columns: 1.2fr .8fr; }
.olho, .kicker, .tag {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .72rem;
    font-weight: 700;
    color: var(--red-hot);
    margin-bottom: .8rem;
}
.lead { font-size: 1.12rem; color: var(--mute); max-width: 40rem; }
.texto-suave { color: var(--mute); }
.ouro { color: var(--red-hot); font-weight: 700; }

.selo-hero {
    display: grid;
    place-items: center;
    min-height: 420px;
    position: relative;
}
.selo-hero::before {
    content: "";
    position: absolute;
    inset: 12% 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 6, 0, .28), transparent 68%);
    filter: blur(8px);
}
.selo-hero img {
    width: min(420px, 100%);
    height: auto;
    border-radius: 18px;
    position: relative;
    z-index: 1;
    border: 0;
    box-shadow: none;
    background: #000;
}

.hero-card, .cartao {
    background: linear-gradient(180deg, #181818, var(--bg-card));
    border: 1px solid var(--line-soft);
    border-top: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}
.cartao.destaque {
    background: linear-gradient(180deg, #2a0a0a, #141414);
    border-color: var(--line);
}
.stats { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 10px; }
.stats li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--line);
    padding-bottom: 8px;
}
.mural, .lista-simples, .passos, .checklist { list-style: none; padding: 0; margin: 0; }
.mural li, .lista-simples li {
    padding: 8px 0;
    border-bottom: 1px solid var(--line-soft);
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.passos li { padding: 16px 0; border-top: 1px solid var(--line-soft); }
.numero { font-family: var(--display); font-size: 2.6rem; margin: 0; letter-spacing: .06em; }

.faixa {
    margin: 24px 0 0;
    background: linear-gradient(90deg, var(--red-deep), #1a0000 55%, #070707);
    color: #f8d4d4;
    padding: 48px 0;
    border-top: 1px solid var(--line);
}
.faixa h2 { color: #fff; }
.rodape {
    padding: 40px 0 48px;
    color: var(--mute);
    border-top: 1px solid var(--line);
    background: #050505;
}
.rodape-inner { justify-content: space-between; align-items: center; }

.bloco-fotos-oferta {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 16px;
    display: grid;
    gap: 12px;
}
.bloco-fotos-oferta legend { font-weight: 700; padding: 0 6px; }
.formulario { display: grid; gap: 14px; margin: 20px 0; }
.formulario label, .filtros label { display: grid; gap: 6px; font-weight: 600; font-size: .92rem; }
.formulario label small { font-weight: 500; }
.foto-perfil-bloco { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.foto-perfil {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--line);
    background: #111;
}
.foto-mural {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.grade-fotos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin: 18px 0;
}
.grade-fotos img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}
.cartao-destaque {
    display: grid;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    min-height: 280px;
    transition: opacity .28s ease, transform .28s ease;
}
.cartao-destaque img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    background: #111;
}
.cartao-destaque.is-trocando { opacity: .25; transform: translateY(6px); }
.cartao-destaque:hover { border-color: var(--red); }
.card-avaliacao {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 0;
    font-size: .88rem;
}
.card-avaliacao .estrelas { letter-spacing: .04em; }
.card-media { color: var(--ink); }
.card-total { color: var(--mute); }
.empresa-capa {
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.foto-perfil-grande { width: 128px; height: 128px; }
.empresa-publica .hero-acoes { margin: 18px 0 28px; }
.empresa-nota {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 10px;
}
.estrelas { color: var(--mute); letter-spacing: .08em; }
.estrela.is-cheia { color: #ffb020; }
.avaliacoes { margin: 36px 0; }
.form-avaliacao { margin: 18px 0 28px; }
.estrelas-campo { border: 0; padding: 0; margin: 0 0 8px; }
.estrelas-campo legend { font-weight: 600; margin-bottom: 8px; }
.estrelas-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}
.estrelas-input input { position: absolute; opacity: 0; pointer-events: none; }
.estrelas-input label {
    font-size: 1.8rem;
    line-height: 1;
    color: #4a4a4a;
    cursor: pointer;
}
.estrelas-input label:hover,
.estrelas-input label:hover ~ label,
.estrelas-input input:checked ~ label { color: #ffb020; }
.lista-avaliacoes { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.item-avaliacao {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.item-avaliacao .titulo { margin: 0; font-weight: 700; }
.item-avaliacao .subtitulo { margin: 4px 0 8px; color: var(--mute); }
.item-avaliacao .descricao { margin: 0; }
.carrossel-servicos { margin: 28px 0 36px; }
.carrossel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line-soft);
    background: #0b0b0b;
    min-height: 280px;
}
.carrossel-slide {
    display: none;
    margin: 0;
}
.carrossel-slide.is-ativo { display: block; }
.carrossel-slide img {
    width: 100%;
    height: min(460px, 58vw);
    object-fit: cover;
}
.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}
.carrossel-btn.is-prev { left: 12px; }
.carrossel-btn.is-next { right: 12px; }
.carrossel-bolinhas {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.carrossel-bolinha {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
}
.carrossel-bolinha.is-ativo { background: var(--red-hot); }
input, select, textarea {
    font: 500 1rem var(--font);
    padding: .85rem .95rem;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: #0c0c0c;
    color: var(--ink);
}
input:focus, select:focus, textarea:focus {
    outline: 2px solid rgba(225, 6, 0, .55);
    border-color: var(--red);
}
.check { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 500 !important; }
.check input { width: auto; margin-top: 3px; }

.alertas { margin-top: 16px; }
.alerta { padding: 12px 14px; border-radius: 12px; margin: 0 0 10px; }
.alerta-ok { background: #10261c; color: var(--ok); border: 1px solid #1e5c3d; }
.alerta-erro { background: #2a1010; color: var(--err); border: 1px solid var(--line); }
.alerta-aviso { background: #2a220c; color: var(--aviso); border: 1px solid #6a5414; }

.tabela-wrap {
    overflow: auto;
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
}
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
th {
    font-family: var(--display);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--mute);
    font-weight: 500;
}
.acoes { display: flex; gap: 12px; align-items: center; }
.codigo { font-family: ui-monospace, Consolas, monospace; font-size: 1.6rem; letter-spacing: .08em; color: var(--red-hot); }
.lista-dados { display: grid; gap: 10px; }
.lista-dados div { display: grid; grid-template-columns: 140px 1fr; gap: 8px; }
.lista-dados dt { color: var(--mute); }

.app-shell {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    min-height: 100vh;
    width: 100%;
}
.lateral {
    background: #090909;
    color: #eee;
    padding: 28px 20px;
    border-right: 1px solid var(--line);
}
.lateral-nome { color: var(--red-hot); margin: 8px 0 24px; letter-spacing: .04em; }
.lateral nav { display: grid; gap: 6px; }
.lateral nav a {
    color: #d0d0d0;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .82rem;
}
.lateral nav a:hover, .lateral nav a.is-ativo { background: rgba(225, 6, 0, .14); color: #fff; }
.app-main {
    min-width: 0;
    padding: 32px 40px 64px;
    background: linear-gradient(180deg, #0c0c0c, var(--bg));
}
.app-main .estreito { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
.app-topo { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
.app-topo h1 { margin: 0; font-size: 1.7rem; }
.tema-empresa .lateral { background: #0b0505; }
.checklist li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.checklist button { background: none; border: 0; font: inherit; cursor: pointer; text-align: left; color: inherit; }
.checklist .feito button { text-decoration: line-through; color: var(--mute); }

.instalacao-caixa { padding-top: 56px; padding-bottom: 88px; }
.tema-publico main { width: 100%; }
.hamburguer {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #111;
    cursor: pointer;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
}
.hamburguer svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: #fff;
}
.hamburguer .icone-fechar { display: none; }
.hamburguer.is-aberto .icone-abrir { display: none; }
.hamburguer.is-aberto .icone-fechar { display: block; }
.menu-painel {
    display: none;
    padding: 8px 20px 20px;
    border-top: 1px solid var(--line);
    background: #0b0b0b;
}
.menu-painel a {
    display: block;
    color: #f2f2f2;
    text-decoration: none;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-soft);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}
.menu-painel .btn { width: 100%; margin-top: 12px; border: 0; }
.app-barra-mobile { display: none; }

@media (min-width: 981px) {
    .hamburguer,
    .menu-painel,
    .app-barra-mobile { display: none !important; }
    .nav-desktop, .topo-acoes { display: flex; }
}

@media (max-width: 980px) {
    .nav-desktop, .topo-acoes { display: none !important; }
    .hamburguer {
        display: flex !important;
        align-items: center;
        justify-content: center;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .menu-painel.is-aberto { display: block !important; }
    .marca img { width: 44px; height: 44px; }
    .marca-texto strong { font-size: 1.05rem; letter-spacing: .08em; }
    .marca-texto small { display: none; }
    .topo-inner { min-height: 68px; }
}

@media (max-width: 900px) {
    .hero-grid, .grade-3, .grade-painel, .stats-faixa { grid-template-columns: 1fr; }
    .app-shell { grid-template-columns: 1fr; }
    .wrap, .estreito, .alertas { padding-left: 16px; padding-right: 16px; }
    .app-main { padding: 20px 16px 48px; }
    .lista-dados div { grid-template-columns: 1fr; }
    .selo-hero { min-height: 240px; }
    .hero { padding: 28px 0 24px; }
    .hero-acoes { width: 100%; }
    .hero-acoes .btn { flex: 1; }
    .faixa-inner { flex-direction: column; align-items: stretch; }
    .faixa-inner .btn { width: 100%; }
    .rodape-inner { flex-direction: column; align-items: flex-start; }
    .app-barra-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 16px;
        border-bottom: 1px solid var(--line);
        background: #090909;
        position: sticky;
        top: 0;
        z-index: 25;
    }
    .lateral {
        display: none;
        position: fixed;
        inset: 62px 0 0 auto;
        width: min(320px, 88vw);
        z-index: 24;
        border-left: 1px solid var(--line);
        overflow: auto;
        box-shadow: var(--shadow);
    }
    body.menu-aberto .lateral { display: block; }
    body.menu-aberto { overflow: hidden; }
    body.tema-app.menu-aberto::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .55);
        z-index: 23;
    }
    .app-topo { flex-wrap: wrap; }
    .app-topo .btn { width: 100%; }
}
@media (max-width: 640px) {
    .foto-mini-quadrado { width: 40px; height: 40px; flex: 0 0 40px; }
    .lista-aniversariante-dados .titulo { font-size: .86rem; }
    .grade-2, .localidade-par { grid-template-columns: 1fr; }
    .hero-acoes { flex-direction: column; }
    .hero-acoes .btn { width: 100%; }
    h1 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
    .filtros { flex-direction: column; align-items: stretch; }
    .filtros label, .filtros .btn { width: 100%; }
}
