﻿/* ============================================================
   SóHoje Uai — Site público
   Identidade: laranja #DA6438 / cinza #969899 / texto #333
   Mobile-first.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.icon {
    width: 1.15em;
    height: 1.15em;
    display: inline-block;
    vertical-align: -0.18em;
    fill: currentColor;
    flex-shrink: 0;
}

:root {
    --laranja: #DA6438;
    --laranja-escuro: #c0532a;
    --laranja-claro: #f1ddd2;
    --cinza: #969899;
    --texto: #333333;
    --fundo: #f5ede6;
    --borda: #e7e3df;
    --verde: #007500;
    --vermelho: #CC0000;
    --sombra: 0 1px 4px rgba(192,83,42,.10), 0 4px 16px rgba(192,83,42,.13);
    --sombra-hover: 0 4px 8px rgba(192,83,42,.14), 0 12px 32px rgba(192,83,42,.20);
    --bg-card: linear-gradient(150deg, #ffffff 40%, #f3f3f3 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--fundo);
    color: var(--texto);
    line-height: 1.55;
    font-size: 16px;
}
body::before {
    content: "";
    position: fixed;
    left: -30px;
    bottom: -150px;
    width: 500px;
    height: 500px;
    background: url('/img/icon_sohojeuai.png') no-repeat center / contain;
    opacity: .13;
    pointer-events: none;
    z-index: 0;
}

a { color: var(--laranja); text-decoration: none; }

/* ── Cabeçalho ─────────────────────────────────────────────── */
.site-header {
    background: #fff;
    border-top: 3px solid var(--laranja);
    border-bottom: 1px solid var(--borda);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand { display: flex; align-items: center; line-height: 1.1; }
.brand__logo { height: 42px; width: auto; display: block; }
.brand__name { font-size: 1.4rem; color: var(--laranja); font-weight: 400; letter-spacing: -.5px; }
.brand__name strong { font-weight: 800; }
.brand__tag { font-size: .62rem; color: var(--cinza); text-transform: uppercase; letter-spacing: 2px; margin-top: 2px; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

/* Rótulos de texto do nav — visíveis no desktop, ocultos no mobile via media query */
.nav-label { display: inline; }

/* Link base do nav */
.site-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--texto);
    font-size: .88rem;
    font-weight: 600;
    padding: 8px 11px;
    border-radius: 9px;
    transition: background .15s, color .15s;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}
.site-nav__link:hover { background: var(--fundo); color: var(--laranja); }
.site-nav__link .icon { opacity: .75; }
.site-nav__link:hover .icon { opacity: 1; }
.site-nav__link--laranja .icon { color: var(--laranja); opacity: 1; }

/* Botão CTA (Criar conta) */
.site-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--laranja);
    color: #fff !important;
    font-size: .88rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 9px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
}
.site-nav__cta:hover { background: var(--laranja-escuro) !important; }

/* Dropdown "Minha conta" */
.site-nav__dropdown { position: relative; }
.site-nav__dropdown-toggle {
    list-style: none;
    cursor: pointer;
}
.site-nav__dropdown-toggle::-webkit-details-marker { display: none; }
.site-nav__caret {
    width: .75em !important;
    height: .75em !important;
    opacity: .55;
    transition: transform .2s ease;
    margin-left: 1px;
}
.site-nav__dropdown[open] .site-nav__caret { transform: rotate(180deg); }
.site-nav__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 210px;
    background: linear-gradient(165deg, var(--laranja) 0%, var(--laranja-escuro) 100%);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(192,83,42,.34), 0 2px 8px rgba(192,83,42,.22);
    padding: 6px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.site-nav__menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 9px;
    font-size: .88rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background .12s, color .12s;
}
.site-nav__menu-item:hover { background: rgba(255,255,255,.18); color: #fff; }
.site-nav__menu-item .icon { opacity: .85; width: 1em; height: 1em; color: #fff; }
.site-nav__menu-item:hover .icon { opacity: 1; }
.site-nav__menu-item--danger { color: #ffe1dc !important; }
.site-nav__menu-item--danger:hover { background: rgba(0,0,0,.18) !important; color: #fff !important; }
.site-nav__menu-item--danger .icon { color: #ffe1dc; }
.site-nav__menu-item--danger:hover .icon { color: #fff; }
.site-nav__menu-item--admin { color: #fff !important; font-weight: 700; }
.site-nav__menu-item--admin:hover { background: rgba(255,255,255,.2) !important; }
.site-nav__menu-item--admin .icon { color: #fff; opacity: 1; }
.site-nav__menu-item--empresa { color: #fff !important; font-weight: 700; }
.site-nav__menu-item--empresa:hover { background: rgba(255,255,255,.2) !important; }
.site-nav__menu-item--empresa .icon { color: #fff; opacity: 1; }
.site-nav__menu-divider { height: 1px; background: rgba(255,255,255,.25); margin: 4px 6px; }

/* Submenu "Minhas empresas" (quando o usuário tem mais de uma) */
.site-nav__submenu { padding: 2px 0; }
.site-nav__submenu-label {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px 4px; font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.8);
}
.site-nav__submenu-label .icon { color: #fff; opacity: 1; width: 1em; height: 1em; }
.site-nav__menu-subitem { padding-left: 30px; font-weight: 600; color: #fff; }
.site-nav__menu-subitem:hover { background: rgba(255,255,255,.18); color: #fff; }

/* Fechar ao clicar fora é tratado via JS (app.js), que remove o atributo
   [open] do <details> — assim a setinha volta e um único clique reabre. */

/* ── Conteúdo principal ────────────────────────────────────── */
.site-main {
    max-width: 1040px;
    margin: 0 auto;
    padding: 28px 20px 50px;
}

/* ── Botões ────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: background .15s, transform .1s, border-color .15s;
    font-family: inherit;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--laranja); color: #fff; }
.btn-primary:hover { background: var(--laranja-escuro); }
.btn-ghost {
    background: transparent;
    color: var(--laranja);
    border: 2px solid var(--laranja);
}
.btn-ghost:hover { background: #fff3ee; }
.btn-block { width: 100%; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
    border: 1px solid var(--borda);
    border-radius: 18px;
    padding: 44px 32px;
    text-align: center;
    margin-bottom: 28px;
    box-shadow: var(--sombra);
}
.hero h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 14px; color: var(--texto); }
.hero h2 span { color: var(--laranja); }
.hero p { color: #555; max-width: 560px; margin: 0 auto 26px; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Destaques ─────────────────────────────────────────────── */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.feature {
    background: var(--bg-card);
    border: 1px solid var(--borda);
    border-radius: 14px;
    padding: 26px 22px;
    text-align: center;
}
.feature__icon { font-size: 2.4rem; margin-bottom: 12px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--texto); }
.feature p { color: #666; font-size: .92rem; }

/* ── Caixa de autenticação ─────────────────────────────────── */
.auth-box {
    background: var(--bg-card);
    border: 1px solid var(--borda);
    border-radius: 16px;
    padding: 32px;
    max-width: 440px;
    margin: 10px auto;
    box-shadow: var(--sombra);
}
.auth-box h2 { text-align: center; margin-bottom: 24px; color: var(--texto); }
.auth-switch { text-align: center; margin-top: 18px; font-size: .9rem; color: #666; }

/* Login com Google */
.google-signin { display: flex; flex-direction: column; align-items: center; }
.google-signin .g_id_signin { display: flex; justify-content: center; }
.auth-sep { display: flex; align-items: center; gap: 10px; width: 100%; margin: 16px 0 2px; color: var(--cinza); font-size: .82rem; }
.auth-sep::before, .auth-sep::after { content: ''; flex: 1; height: 1px; background: var(--borda); }

/* Mapa da empresa (embed gratuito) */
.empresa-map { margin-top: 12px; border-radius: 12px; overflow: hidden; border: 1px solid var(--borda); line-height: 0; }
.empresa-map iframe { width: 100%; height: 220px; border: 0; display: block; }
.empresa-map__btn { margin-top: 8px; }

/* Login com Facebook */
.fb-signin { display: flex; justify-content: center; margin: 8px 0 2px; }
.fb-login-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    width: 320px; max-width: 100%; padding: 11px 16px;
    background: #1877F2; color: #fff; border: 0; border-radius: 999px;
    font-size: 1rem; font-weight: 600; cursor: pointer; transition: background .15s; font-family: inherit;
}
.fb-login-btn:hover { background: #0f63d6; }
.fb-login-btn svg { flex-shrink: 0; }

/* ── Formulários ───────────────────────────────────────────── */
form { display: grid; gap: 6px; }
label { font-size: .85rem; font-weight: 700; color: #4a4a4a; margin-top: 8px; }

input[type="text"], input[type="email"], input[type="password"],
input[type="date"], input[type="number"], input[type="time"],
input[type="search"], select, textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid var(--borda);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--texto);
    background: #fff;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    font-family: inherit;
}
input:focus, select:focus {
    border-color: var(--laranja);
    box-shadow: 0 0 0 3px rgba(218,100,56,.12);
}
.auth-box button { margin-top: 16px; }
.field-help { font-size: .82rem; color: var(--cinza); margin-bottom: 4px; }
.field-help strong { color: var(--laranja); }

/* ── Interesses (perfil) ───────────────────────────────────── */
.interesses {
    margin-top: 20px; padding: 16px; border: 1px solid var(--borda);
    border-radius: 12px; background: var(--fundo);
}
.interesses__title {
    display: flex; align-items: center; gap: 8px; margin: 0 0 4px;
    font-size: 1rem; color: var(--texto);
}
.interesses__title .icon { color: var(--laranja); width: 1.05em; height: 1.05em; }
.int-cat { padding: 10px 0; border-top: 1px solid var(--borda); }
.int-cat:first-of-type { border-top: 0; }
.int-cat__head {
    display: flex; align-items: center; gap: 9px; margin: 0;
    font-size: .95rem; font-weight: 700; color: var(--texto); cursor: pointer;
}
.int-cat__head input { width: 17px; height: 17px; accent-color: var(--laranja); margin: 0; flex-shrink: 0; }
.int-subs { display: flex; flex-wrap: wrap; gap: 8px; margin: 9px 0 0 26px; }
.int-sub {
    display: inline-flex; align-items: center; gap: 7px; margin: 0;
    padding: 7px 12px; background: #fff; border: 1.5px solid var(--borda);
    border-radius: 999px; font-size: .85rem; font-weight: 600; color: #555;
    cursor: pointer; transition: border-color .12s, color .12s, background .12s;
}
.int-sub input { width: 15px; height: 15px; accent-color: var(--laranja); margin: 0; }
.int-sub:hover { border-color: var(--laranja); }
.int-sub:has(input:checked) { border-color: var(--laranja); color: var(--laranja); background: var(--laranja-claro); }

/* ── Dashboard / Carteira ──────────────────────────────────── */
.dash-greeting { margin-bottom: 22px; }
.dash-greeting h2 { font-size: 1.6rem; color: var(--texto); }
.dash-greeting p { color: #666; }

.wallet-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.wallet-card {
    background: var(--bg-card);
    border: 1px solid var(--borda);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--sombra);
}
.wallet-card--main {
    background: linear-gradient(135deg, var(--laranja) 0%, #e88a62 100%);
    border: none;
    color: #fff;
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
}
.wallet-card--main .card-wm { color: #fff; opacity: .09; }
.wallet-card__label { font-size: .8rem; color: var(--cinza); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.wallet-card--main .wallet-card__label { color: rgba(255,255,255,.85); }
.wallet-card__value { font-size: 2rem; font-weight: 800; color: var(--texto); line-height: 1; }
.wallet-card--main .wallet-card__value { color: #fff; font-size: 2.6rem; }
.wallet-card__value span { font-size: 1rem; font-weight: 600; opacity: .8; }
.wallet-card__hint { font-size: .75rem; color: var(--cinza); margin-top: 6px; }

/* ── Cartão genérico ───────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--borda);
    border-radius: 14px;
    padding: 26px;
    margin-bottom: 20px;
    box-shadow: var(--sombra);
    position: relative;
    overflow: hidden;
}

/* Marca d'água de ícone no canto esquerdo superior dos cards */
.card-wm {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50%;
    aspect-ratio: 1 / 1;
    opacity: .045;
    pointer-events: none;
    color: var(--texto);
    z-index: 0;
}
.card-wm .icon {
    width: 100%;
    height: 100%;
    display: block;
}
.card h2, .card h3 { color: var(--texto); margin-bottom: 12px; }

/* ── Alertas ───────────────────────────────────────────────── */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--vermelho);
    background: #fdecec;
    color: #a30000;
    font-size: .95rem;
}
.alert.success {
    border-left-color: var(--verde);
    background: #e9f5e9;
    color: #006000;
}

/* Aviso de "confirme seu e-mail" (gate suave de verificação) */
.verify-banner {
    display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
    padding: 12px 16px; margin-bottom: 20px;
    border-radius: 10px; border-left: 4px solid var(--laranja, #DA6438);
    background: #fff4ee; color: #8a3b1c; font-size: .92rem;
}
.verify-banner .icon { width: 1em; height: 1em; vertical-align: -.12em; margin-right: 4px; }
.verify-banner form { margin: 0; }
.verify-banner button {
    background: var(--laranja, #DA6438); color: #fff; border: 0; cursor: pointer;
    padding: 8px 16px; border-radius: 8px; font-weight: 700; font-size: .85rem; white-space: nowrap;
}

/* ── Rodapé (3 colunas) ────────────────────────────────────── */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #DA6438 0%, #b34a1e 58%, #973f1a 100%);
    color: #fff;
    font-size: .85rem;
    margin-top: 80px;
}
/* Silhueta de cidade na linha que separa o rodapé (prédios de ponta a ponta) */
.site-footer::before {
    content: "";
    position: absolute; left: 0; right: 0; top: 0;
    transform: translateY(-100%);
    height: 48px;
    background: url('/img/skyline.svg') repeat-x left bottom;
    background-size: auto 48px;
    pointer-events: none;
}
.site-footer__grid {
    max-width: 1080px; margin: 0 auto; padding: 38px 22px 26px;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px;
}
.site-footer__logo { width: 160px; max-width: 70%; height: auto; display: block; }
.site-footer__about { margin: 14px 0 0; line-height: 1.55; font-size: .84rem; color: rgba(255,255,255,.85); max-width: 320px; }
.site-footer__title {
    font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .8px;
    color: #fff; margin: 0 0 14px;
}
.site-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.site-footer__links a { color: rgba(255,255,255,.88); font-size: .88rem; transition: color .15s, text-decoration-color .15s; }
.site-footer__links a:hover { color: #fff; text-decoration: underline; }
.site-footer__social { display: flex; flex-wrap: wrap; gap: 10px; }
.site-footer__social-ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.16); color: #fff; transition: transform .12s, background .15s, color .15s;
}
.site-footer__social-ic:hover { transform: translateY(-2px); color: #fff; }
.site-footer__social-ic .icon { width: 1.15em; height: 1.15em; fill: currentColor; }
.site-footer__social-ic--instagram:hover { background: #E1306C; }
.site-footer__social-ic--facebook:hover  { background: #1877F2; }
.site-footer__social-ic--whatsapp:hover   { background: #25D366; }
.site-footer__social-ic--youtube:hover    { background: #FF0000; }
.site-footer__social-ic--tiktok:hover     { background: #010101; }
.site-footer__social-ic--linkedin:hover   { background: #0A66C2; }
.site-footer__soon { margin: 0; font-size: .84rem; color: rgba(255,255,255,.85); }
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.22); text-align: center;
    padding: 16px 20px; font-size: .8rem; color: rgba(255,255,255,.8);
}
.site-footer__bottom p { margin: 0; }

@media (max-width: 760px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 440px) {
    .site-footer__grid { grid-template-columns: 1fr; }
}

/* ── Página legal (termos / privacidade) ───────────────────── */
.legal-page { max-width: 800px; margin: 0 auto; padding: 30px 28px; }
.legal-page__title { font-size: 1.6rem; color: var(--texto); margin: 0 0 18px; letter-spacing: -.4px; }
.legal-page__body { color: #444; line-height: 1.7; font-size: .95rem; }
.legal-page__body h3 { font-size: 1.05rem; color: var(--texto); margin: 22px 0 7px; }
.legal-page__body h3:first-child { margin-top: 0; }
.legal-page__body p { margin: 0 0 12px; }
.legal-page__body strong { color: var(--texto); }
.legal-page__body a { color: var(--laranja); }

/* ── Navbar: chip de tokens ────────────────────────────────── */
.site-nav__tokens {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--laranja) !important;
    color: #fff !important;
    font-size: .88rem;
    font-weight: 700;
    padding: 8px 13px;
    border-radius: 9px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
}
.site-nav__tokens:hover { background: var(--laranja-escuro) !important; }
.site-nav__tokens .icon { opacity: .9; }
.btn-sm { padding: 6px 14px !important; font-size: .85rem !important; }
.card__head-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.card__head-row h3 { margin: 0; }

/* ── Carrinho de compras (widget do topo) ──────────────────── */
.cartw { position: relative; }
.cartw__btn {
    list-style: none; cursor: pointer; display: inline-flex; align-items: center;
    gap: 4px; padding: 6px 9px; border-radius: 8px; color: var(--texto);
    font-size: 1.05rem; position: relative;
}
.cartw__btn::-webkit-details-marker { display: none; }
.cartw__btn:hover { background: var(--fundo); }
.cartw__badge {
    position: absolute; top: -2px; right: -4px; min-width: 17px; height: 17px;
    padding: 0 4px; border-radius: 99px; background: var(--laranja); color: #fff;
    font-size: .68rem; font-weight: 800; line-height: 17px; text-align: center;
}
.cartw__panel {
    position: absolute; right: 0; top: calc(100% + 8px); width: 290px; z-index: 60;
    background: var(--bg-card); border: 1px solid var(--borda); border-radius: 12px;
    box-shadow: 0 12px 30px rgba(192,83,42,.20); padding: 14px;
}
.cartw__title { font-weight: 800; font-size: .95rem; margin-bottom: 10px; }
.cartw__empty { color: var(--cinza); font-size: .85rem; margin: 0; line-height: 1.5; }
.cartw__line { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-top: 1px solid var(--borda); }
.cartw__line:first-of-type { border-top: none; }
.cartw__info { flex: 1; min-width: 0; line-height: 1.25; }
.cartw__info strong { display: block; font-size: .85rem; }
.cartw__info span { color: var(--cinza); font-size: .75rem; }
.cartw__qty { display: inline-flex; align-items: center; gap: 2px; }
.cartw__step {
    width: 24px; height: 24px; border: 1px solid var(--borda); background: var(--fundo);
    border-radius: 6px; cursor: pointer; color: var(--texto); display: inline-flex;
    align-items: center; justify-content: center; font-size: .7rem; padding: 0;
}
.cartw__step:hover { border-color: var(--laranja); color: var(--laranja); }
.cartw__num { min-width: 18px; text-align: center; font-weight: 700; font-size: .85rem; }
.cartw__rm button {
    width: 24px; height: 24px; border: none; background: none; cursor: pointer;
    color: var(--cinza); display: inline-flex; align-items: center; justify-content: center;
    font-size: .8rem; padding: 0;
}
.cartw__rm button:hover { color: var(--vermelho); }
.cartw__totals {
    display: flex; align-items: center; justify-content: space-between;
    margin: 10px 0; padding-top: 10px; border-top: 1px solid var(--borda); font-size: .9rem;
}
.cartw__totals strong { color: var(--laranja); font-size: 1rem; }
.cartw__checkout {
    width: 100%; border: none; background: var(--laranja); color: #fff; font-weight: 700;
    padding: 9px; border-radius: 8px; cursor: pointer; display: inline-flex;
    align-items: center; justify-content: center; gap: 6px;
}
.cartw__checkout:hover { background: var(--laranja-escuro); }

/* ── Vitrine: hero compacto + filtros ──────────────────────── */
.hero--compact { padding: 30px 24px; margin-bottom: 18px; }
.hero--compact h2 { font-size: 1.6rem; }

/* Vitrine de conquistas (cliente/empresa) */
.conq-vitrine { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
.conq-badge { border: 1px solid var(--borda); border-radius: 14px; padding: 14px 12px; text-align: center; background: #fff; }
.conq-badge__img { width: 88px; height: 88px; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; }
.conq-badge__img img { width: 88px; height: 88px; object-fit: contain; }
.conq-badge__img .icon { width: 52px; height: 52px; color: #c9ccce; }
.conq-badge__nome { font-size: .85rem; font-weight: 700; color: var(--texto); line-height: 1.2; }
.conq-badge__desc { font-size: .72rem; color: #888; margin-top: 3px; line-height: 1.25; }
.conq-badge__status { font-size: .78rem; font-weight: 600; color: var(--cinza); margin-top: 8px; }
.conq-badge__ok { color: var(--verde); display: inline-flex; align-items: center; gap: 4px; }
.conq-badge__ok .icon { width: 1em; height: 1em; }
.conq-badge__soon { color: #b9bbbc; font-style: italic; font-weight: 500; }
.conq-badge.is-off { opacity: 1; }
.conq-badge.is-off .conq-badge__img img { filter: grayscale(1) brightness(1.8) contrast(.55); opacity: .05; }
.conq-badge.is-soon { opacity: .85; }
.conq-badge.is-soon .conq-badge__img img { filter: grayscale(1) brightness(1.95) contrast(.5); opacity: .05; }
.conq-badge.is-on { border-color: #f6d488; background: linear-gradient(160deg,#fffdf7,#fff6e6); }
.conq-badge.is-off .conq-badge__nome, .conq-badge.is-soon .conq-badge__nome,
.conq-badge.is-off .conq-badge__desc, .conq-badge.is-soon .conq-badge__desc,
.conq-badge.is-off .conq-badge__status, .conq-badge.is-soon .conq-badge__status { color: #d2d5d7; }
.conq-grupo { font-size: 1rem; font-weight: 800; color: var(--texto); margin: 20px 0 10px; }
.conq-grupo:first-of-type { margin-top: 4px; }

/* Trilha de níveis de fidelidade */
.nivel-track { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 14px; }
.nivel-item { text-align: center; border: 1px solid var(--borda); border-radius: 12px; padding: 12px 8px; background: #fff; }
.nivel-item.is-atual { border-color: var(--laranja); background: linear-gradient(160deg,#fffdf7,#fff1e6); box-shadow: var(--sombra); }
.nivel-item__img { width: 72px; height: 72px; margin: 0 auto 6px; display: flex; align-items: center; justify-content: center; }
.nivel-item__img img { width: 72px; height: 72px; object-fit: contain; }
.nivel-item__img .icon { width: 46px; height: 46px; color: var(--laranja); }
.nivel-item.is-off .nivel-item__img img { filter: grayscale(1) brightness(1.8) contrast(.55); opacity: .05; }
.nivel-item.is-off .nivel-item__nome, .nivel-item.is-off .nivel-item__lim { color: #d2d5d7; }
.nivel-item__nome { font-size: .8rem; font-weight: 700; color: var(--texto); line-height: 1.15; }
.nivel-item__lim { font-size: .68rem; color: var(--cinza); margin-top: 2px; }

/* Linha "Lembrar-me" no login */
.lembrar-line { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: #555; margin: -2px 0 6px; cursor: pointer; }
.lembrar-line input { width: 16px; height: 16px; accent-color: var(--laranja); flex-shrink: 0; }

/* Carrossel de banners (5:1, mesma proporção no desktop e mobile) */
.banner-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 8 / 3;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: var(--sombra);
    background: #ece7e2;
}
.banner-carousel__track { position: absolute; inset: 0; }
.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s ease;
    display: block;
    pointer-events: none;
    z-index: 1;
}
.banner-slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.banner-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.banner-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: none;
    padding: 4px;
    color: #fff;
    cursor: pointer;
    opacity: .8;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.55));
    transition: opacity .15s, transform .15s;
    z-index: 2;
}
.banner-carousel__nav:hover { opacity: 1; transform: translateY(-50%) scale(1.12); }
.banner-carousel__nav .icon { width: 24px; height: 24px; }
.banner-carousel__nav--prev { left: 6px; }
.banner-carousel__nav--next { right: 6px; }
.banner-carousel__dots {
    position: absolute;
    bottom: 8px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 6px;
    z-index: 2;
}
.banner-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    padding: 0;
    transition: background .15s, transform .15s;
}
.banner-dot.is-active { background: #fff; transform: scale(1.25); }
@media (max-width: 640px) {
    .banner-carousel__nav .icon { width: 19px; height: 19px; }
}

/* Slide automático de promoção em destaque */
.banner-slide--promo { background: linear-gradient(120deg, #3a2417 0%, var(--laranja) 100%); }
.banner-slide--promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner-slide--promo::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,0) 78%);
}
.promo-slide__info {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: center; gap: 3px;
    padding: 0 5%; color: #fff; max-width: 70%;
}
.promo-slide__tag {
    display: inline-flex; align-items: center; gap: 4px; align-self: flex-start;
    background: var(--laranja); color: #fff;
    font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
    padding: 2px 8px; border-radius: 99px; margin-bottom: 2px;
}
.promo-slide__tag .icon { width: .8em; height: .8em; }
.promo-slide__name { font-size: clamp(.95rem, 2.6vw, 1.6rem); line-height: 1.12; font-weight: 800; }
.promo-slide__empresa { font-size: .82rem; opacity: .9; }
.promo-slide__preco { font-weight: 700; font-size: clamp(.85rem, 2vw, 1.1rem); }
.promo-slide__preco s { opacity: .7; font-weight: 400; font-size: .82em; margin-left: 6px; }
.promo-slide__cta {
    align-self: flex-start; margin-top: 4px;
    display: inline-flex; align-items: center; gap: 4px;
    background: #fff; color: var(--laranja);
    font-size: .78rem; font-weight: 700;
    padding: 5px 12px; border-radius: 99px;
}
.promo-slide__cta .icon { width: .85em; height: .85em; }
.promo-slide__off {
    position: absolute; top: 10px; right: 12px; z-index: 2;
    background: #fff; color: var(--laranja);
    font-weight: 800; font-size: clamp(.7rem, 1.8vw, 1rem);
    padding: 4px 10px; border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
@media (max-width: 640px) {
    .promo-slide__empresa { display: none; }
    .promo-slide__info { max-width: 82%; padding: 0 16px; gap: 2px; }
}

/* Fundo skyline (city.svg) do card de destaque da vitrine */
.hero--city { position: relative; overflow: hidden; padding-bottom: 64px; }
.hero--city::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 100%;
    background: url('/img/city.svg') center bottom / 100% auto no-repeat;
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}
.hero--city > * { position: relative; z-index: 1; }

/* ── Passos (como funciona) na home ────────────────────────── */
.passos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}
.passos-wrap__head { display: flex; justify-content: flex-end; margin-bottom: 6px; }
.passos__close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--cinza);
    font-size: .78rem;
    font-weight: 600;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 8px;
    transition: color .12s, background .12s;
}
.passos__close:hover { color: var(--laranja); background: rgba(0,0,0,.04); }
.passos__close .icon { width: .85em; height: .85em; }
.passo-card {
    background: var(--bg-card);
    border: 1px solid var(--borda);
    border-radius: 16px;
    padding: 18px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--sombra);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    text-decoration: none;
    color: inherit;
}
.passo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 10px rgba(192,83,42,.12), 0 16px 32px -10px rgba(218,100,56,.30);
    border-color: #f3d9cb;
}
.passo-card--destaque {
    border-color: #f1c3ad;
    background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
}
.passo-card__topo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.passo-card__ico {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--laranja-claro);
    color: var(--laranja);
    transition: background .22s, color .22s;
}
.passo-card--destaque .passo-card__ico,
.passo-card:hover .passo-card__ico {
    background: var(--laranja);
    color: #fff;
}
.passo-card__ico .icon { width: 22px; height: 22px; }
.passo-card__num {
    margin-left: auto;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--laranja);
    background: var(--laranja-claro);
    border: 1px solid #eccbb9;
    border-radius: 999px;
    padding: 2px 8px;
    line-height: 1.6;
}
.passo-card__titulo {
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--texto);
}
.passo-card__desc {
    font-size: .78rem;
    color: #7a7069;
    line-height: 1.4;
    flex: 1;
}
.passo-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--laranja-escuro);
    background: var(--laranja-claro);
    padding: 4px 9px;
    border-radius: 999px;
    align-self: flex-start;
    margin-top: auto;
}
.passo-card__tag::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--laranja);
    animation: passoPulso 1.8s infinite;
}
@keyframes passoPulso {
    0%   { box-shadow: 0 0 0 0   rgba(218,100,56,.5); }
    70%  { box-shadow: 0 0 0 6px rgba(218,100,56,0);  }
    100% { box-shadow: 0 0 0 0   rgba(218,100,56,0);  }
}
@media (max-width: 900px) {
    .passos { grid-template-columns: repeat(3, 1fr); }
    .passos .passo-card:nth-child(4),
    .passos .passo-card:nth-child(5) { display: none; }
}
@media (max-width: 640px) {
    .passos-wrap { display: none; }
    .passos { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .passo-card { transition: none; }
    .passo-card__tag::before { animation: none; }
}

.offer-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 22px;
}
.offer-filters__search { flex: 1 1 220px; }
.offer-filters input, .offer-filters select {
    padding: 10px 12px;
    border: 1px solid var(--borda);
    border-radius: 10px;
    font-size: .9rem;
    background: #FFFFFF;
    font-family: inherit;
    opacity: 1;
}
.offer-filters .btn { padding: 10px 18px; }
.offer-filters__clear { font-size: .85rem; color: var(--cinza); }

/* Atalhos rápidos (pré-filtro por categoria/subcategoria) */
.quick-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    margin-bottom: 14px;
    -webkit-overflow-scrolling: touch;
    /* barra de rolagem bem sutil */
    scrollbar-width: thin;
    scrollbar-color: rgba(150,152,153,.35) transparent;
}
.quick-filters::-webkit-scrollbar { height: 5px; }
.quick-filters::-webkit-scrollbar-track { background: transparent; }
.quick-filters::-webkit-scrollbar-thumb { background: rgba(150,152,153,.3); border-radius: 99px; }
.quick-filters:hover::-webkit-scrollbar-thumb { background: rgba(150,152,153,.5); }
.quick-filter {
    flex: 0 0 76px;        /* todos do mesmo tamanho */
    width: 76px;
    height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 6px;
    background: #fff;
    border: 1px solid var(--borda);
    border-radius: 14px;
    color: var(--texto);
    text-decoration: none;
    font-size: .66rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    transition: transform .12s, box-shadow .12s, background .12s, border-color .12s;
}
.quick-filter:hover { box-shadow: var(--sombra); transform: translateY(-1px); border-color: var(--laranja-claro); }
.quick-filter__ico { display: flex; color: var(--laranja); }
.quick-filter__ico .icon { width: 22px; height: 22px; }
.quick-filter__lbl { display: block; width: 100%; word-break: break-word; }
.quick-filter.is-active { background: var(--laranja); border-color: var(--laranja); color: #fff; }
.quick-filter.is-active .quick-filter__ico { color: #fff; }

.empty-state {
    text-align: center;
    padding: 48px 20px;
    color: var(--cinza);
}
.empty-state p { margin-bottom: 14px; }
.empty-state__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.empty-state__actions .icon { width: 1em; height: 1em; }

/* ── Grade de ofertas ──────────────────────────────────────── */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

/* ── Card de oferta (home): 3 por linha no desktop, 2 no mobile ── */
.deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.deal-card {
    background: var(--bg-card); border: 1px solid var(--borda); border-radius: 16px;
    overflow: hidden; display: flex; flex-direction: column; position: relative;
    box-shadow: var(--sombra);
    transition: transform .12s, box-shadow .12s;
}
.deal-card:hover { transform: translateY(-3px); box-shadow: var(--sombra-hover); }

/* Card inteiro clicável (abre a página da oferta). Botões ficam por cima. */
.deal-card__link { position: absolute; inset: 0; z-index: 1; }
.deal-card__media { cursor: pointer; }
.deal-card__side { position: relative; z-index: 2; }
/* Selos decorativos não bloqueiam o clique no card */
.deal-card__off, .deal-card__age18, .deal-card__seg, .deal-card__pravoce, .offer-card__ilustra { pointer-events: none; }

/* Oferta esgotada: card todo em cinza (P&B) + selo "ESGOTADO" por cima */
.deal-card--esgotado:hover { transform: none; box-shadow: var(--sombra); }
.deal-card--esgotado .deal-card__media,
.deal-card--esgotado .deal-card__body,
.deal-card--esgotado .deal-card__side { filter: grayscale(1); opacity: .6; }
.deal-card__esgotado {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-7deg);
    z-index: 7; pointer-events: none; white-space: nowrap;
    background: rgba(204,0,0,.92); color: #fff;
    font-weight: 900; letter-spacing: 3px; text-transform: uppercase;
    font-size: 1.15rem; padding: 8px 26px; border-radius: 8px;
    border: 2.5px solid #fff; box-shadow: 0 6px 20px rgba(0,0,0,.45);
}
@media (max-width: 620px) {
    .deal-card__esgotado { font-size: .95rem; letter-spacing: 2px; padding: 6px 18px; }
}

/* Card de oferta horizontal: foto 25% | infos 45% | botões 30% */
.deal-grid { grid-template-columns: 1fr; }
.deal-card--h { flex-direction: row; align-items: stretch; }
.deal-card--h .deal-card__media { width: 25%; height: auto; min-height: 160px; flex-shrink: 0; }
.deal-card--h .deal-card__body { width: 45%; padding: 14px 18px; gap: 6px; justify-content: center; }
.deal-card--h .deal-card__side { width: 30%; flex-shrink: 0; display: flex; flex-direction: column; align-items: stretch; gap: 8px; justify-content: center; padding: 14px 16px; border-left: 1px solid var(--borda); }
.deal-card--h .deal-card__side > * { width: 100%; }
.deal-card--h .deal-card__btn::after { content: none; }
/* Desktop: empilhado — Pegar/Já pegou (topo), Presente (meio), Regras (base) */
.deal-card--h .deal-card__buy, .deal-card--h .deal-card__buy-form { order: 1; }
.deal-card--h .deal-card__gift { order: 2; height: auto; align-self: auto; }
.deal-card--h .deal-card__btn { order: 3; }
.deal-card--h .deal-card__side .btn { width: 100%; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 7px; font-size: .86rem !important; padding: 10px 12px !important; white-space: nowrap; line-height: 1.15; }
.deal-card--h .deal-card__side .btn .icon { width: 16px !important; height: 16px !important; flex-shrink: 0; }
/* Botões preenchidos com borda */
.deal-card--h .deal-card__btn { background: var(--laranja-claro) !important; color: var(--laranja-escuro) !important; border: 2px solid var(--laranja) !important; }
.deal-card--h .deal-card__btn:hover { background: #ecd0c1 !important; }
.deal-card--h .deal-card__gift { background: var(--laranja-escuro) !important; color: #fff !important; border: 2px solid var(--laranja-escuro) !important; }
.deal-card--h .deal-card__gift:hover { background: #a8481f !important; }
.deal-card--h .deal-card__buy { background: var(--verde) !important; color: #fff !important; border: 2px solid var(--verde) !important; }
.deal-card--h .deal-card__buy:hover { background: #006000 !important; }
.deal-card--h .deal-card__buy.is-disabled { background: #e7f1ec !important; color: var(--verde) !important; border: 2px solid #bcdcc9 !important; opacity: 1; }
@media (max-width: 560px) {
    .deal-card__share-txt { display: none; }
    /* Pegar mais largo; Compartilhar só o ícone (estreito). */
    .deal-card--h .deal-card__side .deal-card__buy,
    .deal-card--h .deal-card__side .deal-card__buy-form { flex: 2 1 0; }
    .deal-card--h .deal-card__side .deal-card__share { flex: 0 0 48px !important; width: 48px !important; padding: 9px 0 !important; }
    .deal-card--h .deal-card__side .deal-card__share .icon { width: 18px !important; height: 18px !important; }
    .deal-card--h .deal-card__side .deal-card__buy-lbl { flex-direction: column; gap: 0; align-items: center; }
    .deal-card--h { flex-wrap: wrap; }
    .deal-card--h .deal-card__media { width: 34%; min-height: 120px; }
    .deal-card--h .deal-card__body { width: 66%; padding: 12px; }
    .deal-card--h .deal-card__side { width: 100%; flex-direction: row; flex-wrap: nowrap; border-left: 0; border-top: 1px solid var(--borda); padding: 12px; align-items: stretch; }
    .deal-card--h .deal-card__side > * { flex: 1 1 0; min-width: 0; width: auto; order: 0; }
    .deal-card--h .deal-card__side .btn { flex-direction: column; gap: 4px; font-size: .76rem !important; padding: 9px 4px !important; white-space: normal; text-align: center; }
}

/* Modal de resultado ao pegar o cupom */
.cupom-modal__box--result { max-width: 380px; margin: auto; background: var(--bg-card); border-radius: 16px; padding: 28px 24px; text-align: center; box-shadow: var(--sombra); }
.offer-result { display: flex; flex-direction: column; align-items: stretch; }
.offer-result .btn { width: 100%; white-space: normal; }
.offer-result__icon { width: 58px; height: 58px; margin: 0 auto 10px; border-radius: 50%; background: #e9f5e9; display: flex; align-items: center; justify-content: center; }
.offer-result__icon .icon { width: 30px; height: 30px; color: var(--verde); }
.offer-result__title { margin: 0 0 6px; font-size: 1.2rem; color: var(--texto); }
.offer-result__msg { color: var(--cinza); font-size: .9rem; margin: 0 0 16px; line-height: 1.4; }
.offer-result__go { margin-bottom: 8px; }
.cupom-modal.is-err .offer-result__icon { background: #fdecec; }
.cupom-modal.is-err .offer-result__icon .icon { color: var(--vermelho); }

/* "Pra você": oferta nas categorias de interesse do usuário */
.deal-card--pravoce {
    border-color: var(--laranja);
    box-shadow: 0 0 0 1px var(--laranja), 0 12px 30px rgba(192,83,42,.30);
}
.deal-card--pravoce:hover {
    box-shadow: 0 0 0 1px var(--laranja), 0 16px 38px rgba(192,83,42,.36);
}
.deal-card__pravoce {
    position: absolute; bottom: 10px; left: 10px; z-index: 4;
    display: inline-flex; align-items: center; gap: 5px;
    background: linear-gradient(135deg, var(--laranja), var(--laranja-escuro));
    color: #fff; font-size: .66rem; font-weight: 800; letter-spacing: .5px;
    text-transform: uppercase; padding: 5px 10px; border-radius: 99px;
    box-shadow: 0 3px 10px rgba(192,83,42,.45);
}
.deal-card__pravoce .icon { width: .9em; height: .9em; }
/* Oferta coletiva que bateu o mínimo e está liberada: borda laranja + selo. */
.deal-card--ativada {
    border-color: var(--laranja);
    box-shadow: 0 0 0 1.5px var(--laranja), 0 12px 30px rgba(192,83,42,.28);
}
.deal-card--ativada:hover {
    box-shadow: 0 0 0 1.5px var(--laranja), 0 16px 38px rgba(192,83,42,.34);
}
.deal-card__ativada {
    position: absolute; bottom: 10px; left: 10px; z-index: 4; pointer-events: none;
    display: inline-flex; align-items: center; gap: 6px; max-width: calc(100% - 20px);
    background: linear-gradient(135deg, var(--verde), #0a7a34);
    color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .5px;
    text-transform: uppercase; padding: 6px 12px; border-radius: 99px;
    box-shadow: 0 3px 10px rgba(10,143,60,.45); white-space: nowrap;
}
.deal-card__ativada .icon { width: 1em; height: 1em; flex-shrink: 0; }

/* Página "O que eu perdi" */
.missed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.missed-card { background: var(--bg-card); border: 1px solid var(--borda); border-radius: 14px; overflow: hidden; box-shadow: var(--sombra); display: flex; flex-direction: column; }
.missed-card__media { position: relative; height: 130px; background: #ded7d0 center/cover no-repeat; filter: grayscale(.35); }
.missed-card__media.is-empty { display: flex; align-items: center; justify-content: center; }
.missed-card__badge { position: absolute; top: 8px; left: 8px; display: inline-flex; align-items: center; gap: 5px;
    background: rgba(43,43,43,.82); color: #fff; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; padding: 4px 10px; border-radius: 99px; }
.missed-card__badge .icon { width: .9em; height: .9em; }
.missed-card__off { position: absolute; top: 8px; right: 0; background: #8a8078; color: #fff; font-weight: 800; font-size: .82rem; padding: 4px 10px; border-radius: 10px 0 0 10px; }
.missed-card__body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.missed-card__cat { display: inline-flex; align-items: center; gap: 5px; align-self: flex-start; background: #f4f1ee; color: #96794f; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; padding: 2px 8px; border-radius: 99px; }
.missed-card__cat .icon { width: .85em; height: .85em; }
.missed-card__emp { font-size: .72rem; font-weight: 700; color: var(--cinza); text-transform: uppercase; letter-spacing: .3px; display: flex; align-items: center; gap: 5px; }
.missed-card__emp .icon { width: .9em; height: .9em; color: var(--laranja); }
.missed-card__title { font-size: 1rem; color: var(--texto); margin: 2px 0; line-height: 1.15; }
.missed-card__prices .de { color: var(--cinza); text-decoration: line-through; font-size: .82rem; margin-right: 6px; }
.missed-card__prices .por { color: var(--verde); font-weight: 800; }
.missed-card__when { font-size: .76rem; color: var(--cinza); display: flex; align-items: center; gap: 6px; margin: 2px 0 8px; }
.missed-card__when .icon { width: .9em; height: .9em; }
.missed-card__fav { margin-top: auto; }
.missed-card__fav.is-on { background: var(--laranja); color: #fff; border-color: var(--laranja); }
/* Mobile: só o ícone num círculo verde (sem o texto "ATIVO"). */
@media (max-width: 560px) {
    .deal-card__ativada { gap: 0; padding: 8px; border-radius: 50%; }
    .deal-card__ativada-txt { display: none; }
    .deal-card__ativada .icon { width: 1.15em; height: 1.15em; }
}

/* Botão quadrado de presente (presentear cupom) */
.deal-card__gift {
    flex: 0 0 auto; width: 42px; align-self: stretch;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--laranja-claro); color: var(--laranja);
    border: 1.5px solid var(--laranja); border-radius: 10px;
    cursor: pointer; transition: background .12s, color .12s, transform .12s;
}
.deal-card__gift:hover { background: var(--laranja); color: #fff; transform: translateY(-1px); }
.deal-card__gift .icon { width: 1.15em; height: 1.15em; }
/* Botão de compartilhar (ao lado do presente) — mesmo formato dos demais. */
.deal-card--h .deal-card__share { order: 2; background: #fff !important; color: var(--laranja) !important; border: 2px solid var(--laranja) !important; }
.deal-card--h .deal-card__share:hover { background: var(--laranja-claro) !important; }
/* Botão "Pegar" com o custo (x SHU) em uma linha abaixo. */
/* Desktop: "Pegar (X SHU)" na mesma linha. Mobile: (X SHU) abaixo. */
.deal-card__buy-lbl { display: inline-flex; flex-direction: row; gap: 5px; align-items: baseline; line-height: 1.05; }
.deal-card__buy-lbl small { font-size: .85em; font-weight: 700; opacity: .95; }
.offer-result__icon--share { background: #fff3ee; }
.offer-result__icon--share .icon { color: var(--laranja); }
/* Modal de confirmação ao pegar cupom (preview) */
.offer-result__icon--pegar { background: #eafaf0; }
.offer-result__icon--pegar .icon { color: var(--verde); }
.pegar-cost { display: inline-flex; align-items: center; gap: 8px; align-self: center;
    background: #fff3ee; color: var(--laranja-escuro); font-size: 1rem; font-weight: 700;
    padding: 10px 18px; border-radius: 12px; margin: 4px 0 12px; }
.pegar-cost .icon { width: 1.1em; height: 1.1em; color: var(--laranja); }
.pegar-cost strong { font-weight: 900; }
.pegar-note { font-size: .84rem; color: var(--cinza); line-height: 1.4; margin: 0 0 14px; }
.pegar-agree { display: flex; align-items: flex-start; gap: 9px; text-align: left; cursor: pointer;
    font-size: .9rem; color: var(--texto); font-weight: 600; margin: 0 0 14px; }
.pegar-agree input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px; accent-color: var(--laranja); cursor: pointer; }
.pegar-modal__confirm:disabled { opacity: .5; cursor: not-allowed; }
.deal-card__buy.is-disabled { pointer-events: none; opacity: .75; }
.deal-card__buy.is-disabled .icon { color: var(--verde, #2e7d6b); }

/* Botão "Presentear" na página da oferta */
.offer-gift {
    display: flex; align-items: center; gap: 10px; width: 100%;
    margin-top: 10px; padding: 8px 12px;
    background: #fff; border: 1.5px solid var(--laranja); border-radius: 12px;
    color: var(--laranja); font-weight: 700; font-size: .92rem; cursor: pointer;
    transition: background .12s, color .12s;
}
.offer-gift:hover { background: var(--laranja-claro); }
.offer-gift__ic {
    flex: 0 0 auto; width: 38px; height: 38px; border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--laranja-claro);
}
.offer-gift:hover .offer-gift__ic { background: #fff; }
.offer-gift__ic .icon { width: 1.2em; height: 1.2em; }

/* Selo "Presente de" no cupom */
.coupon__gift {
    display: inline-flex; align-items: center; gap: 6px; margin: 2px 0 8px;
    background: var(--laranja-claro); color: var(--laranja-escuro);
    border-radius: 99px; padding: 4px 11px; font-size: .8rem; font-weight: 700;
}
.coupon__gift .icon { width: 1em; height: 1em; }

/* Botão e área de perigo (excluir conta) */
.btn-danger { background: var(--vermelho); color: #fff; }
.btn-danger:hover { background: #a30000; }
.danger-zone { border: 1px solid #f3c0c0; margin-top: 14px; }
.danger-zone h3 { display: flex; align-items: center; gap: 8px; color: var(--vermelho); margin: 0 0 6px; }
.danger-zone h3 .icon { width: 1em; height: 1em; }
.danger-list ul { margin: 6px 0 4px; }
.del-modal__box { max-width: 440px; text-align: center; position: relative; }
.del-modal__icon { width: 54px; height: 54px; margin: 0 auto 6px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: #fdecec; color: var(--vermelho); }
.del-modal__icon .icon { width: 1.7em; height: 1.7em; }
.del-modal__text { text-align: left; font-size: .9rem; color: #555; line-height: 1.5; margin: 6px 0 12px; }
.del-modal__check { display: flex; gap: 9px; align-items: flex-start; text-align: left; font-size: .86rem; color: #444; margin-bottom: 14px; cursor: pointer; }
.del-modal__check input { margin-top: 2px; width: 18px; height: 18px; accent-color: var(--vermelho); flex-shrink: 0; }

/* Banner de instalação no iPhone (Safari) */
.ios-install {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 950;
    display: flex; align-items: center; gap: 12px;
    background: #fff; border: 1px solid var(--borda);
    border-radius: 14px; padding: 11px 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,.20);
    animation: iosUp .3s ease;
}
.ios-install[hidden] { display: none; }
@keyframes iosUp { from { transform: translateY(140%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.ios-install__icon img { width: 44px; height: 44px; border-radius: 10px; display: block; }
.ios-install__txt { flex: 1; display: flex; flex-direction: column; line-height: 1.35; }
.ios-install__txt strong { color: var(--texto); font-size: .95rem; }
.ios-install__txt small { color: var(--cinza); font-size: .82rem; }
.ios-install__txt small .icon { width: 1em; height: 1em; color: var(--laranja); vertical-align: -.12em; }
.ios-install__close { background: none; border: 0; cursor: pointer; color: var(--cinza); padding: 6px; align-self: flex-start; flex-shrink: 0; }
.ios-install__close .icon { width: 1.1em; height: 1.1em; }
@media (min-width: 620px) { .ios-install { left: auto; right: 16px; bottom: 16px; max-width: 380px; } }

/* Modal de presente */
.modal-overlay[hidden] { display: none; }
.gift-modal__box { position: relative; max-width: 400px; text-align: left; }
.gift-modal__close {
    position: absolute; top: 12px; right: 12px;
    background: none; border: 0; cursor: pointer; color: var(--cinza); padding: 4px;
}
.gift-modal__close .icon { width: 1.2em; height: 1.2em; }
.gift-modal__icon {
    width: 54px; height: 54px; margin: 0 auto 6px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--laranja-claro); color: var(--laranja);
}
.gift-modal__icon .icon { width: 1.6em; height: 1.6em; }
.gift-modal__title { text-align: center; margin: 0 0 2px; color: var(--texto); }
.gift-modal__offer { text-align: center; color: var(--cinza); font-size: .86rem; margin: 0 0 12px; }
.gift-modal__msg { margin: 10px 0 4px; padding: 10px 12px; border-radius: 10px; font-size: .88rem; font-weight: 600; }
.gift-modal__msg.is-ok  { background: #eaf7ef; color: #1f7a44; }
.gift-modal__msg.is-err { background: #fdecec; color: #b3261e; }

.deal-card__media { position: relative; height: 160px; background-size: cover; background-position: center; background-color: #f0ece8; }
.deal-card__media--empty { display: flex; align-items: center; justify-content: center; }
.deal-card__seg {
    position: absolute; top: 8px; left: 8px; z-index: 2;
    display: inline-flex; align-items: center; gap: 5px;
    max-width: calc(100% - 16px);
    background: rgba(43,43,43,.82); color: #fff;
    font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
    padding: 4px 9px; border-radius: 99px; backdrop-filter: blur(2px);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.deal-card__seg .icon { width: .85em; height: .85em; color: #ffb38a; flex-shrink: 0; }
.offer-detail__seg { display: inline-flex; align-items: center; gap: 4px; margin-left: 6px; color: var(--laranja); font-weight: 600; }
.offer-detail__seg .icon { width: .9em; height: .9em; }
.deal-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.deal-card__off { line-height: 1; letter-spacing: -.5px; margin-bottom: 0; }
.deal-card__off .n { font-size: 2rem; font-weight: 900; color: var(--laranja); }
.deal-card__off .w { font-size: 1.35rem; font-weight: 800; color: var(--texto); }
.deal-card__title { font-size: 1.05rem; color: var(--texto); margin: 0; line-height: 1.12; }
/* Título com preço integrado: "Produto por R$X R$Y(riscado)" */
.deal-title { line-height: 1.12; }
.deal-title__por { color: var(--verde); font-weight: 800; white-space: nowrap; }
.deal-title__de { color: var(--cinza); text-decoration: line-through; font-weight: 400; font-size: .8em; white-space: nowrap; }
.deal-title__tk { color: var(--laranja); font-weight: 800; white-space: nowrap; font-size: .9em; }
.deal-card__desc { font-size: .8rem; color: var(--cinza); line-height: 1.35; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.deal-card__value { font-size: .82rem; color: #555; margin-top: 2px; }
.deal-card__value .de { color: var(--cinza); text-decoration: line-through; }
.deal-card__value strong { color: var(--texto); font-weight: 700; }
.deal-card__use { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
    background: #fdf1ea; color: #97431f; font-size: .9rem; padding: 8px 12px; border-radius: 10px; margin-top: 3px; }
.deal-card__use .icon { width: 1em; color: var(--laranja); }
.deal-card__use strong { font-weight: 800; }
.deal-card__timer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin: 6px 0 2px; }
.deal-card__timer .tb { background: var(--fundo); border: 1px solid var(--borda); border-radius: 8px; padding: 5px 2px; text-align: center; }
.deal-card__timer .tb__n { display: block; font-size: 1.05rem; font-weight: 800; color: var(--texto); line-height: 1; font-variant-numeric: tabular-nums; }
.deal-card__timer .tb__l { display: block; font-size: .56rem; color: var(--cinza); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.deal-card__timer.is-ended { opacity: .5; }
.deal-card__stats { display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; font-size: .76rem; color: var(--cinza); margin-top: 4px; }
.deal-card__stats .icon { width: .95em; }
.deal-card__stats .is-esgotado { color: var(--vermelho); font-weight: 700; }
.deal-card__actions { display: flex; gap: 6px; margin-top: auto; }
.deal-card__btn { flex: 1; text-align: center; padding: 10px 12px !important; font-size: .88rem !important; }
.deal-card__btn::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.deal-card__buy-form { flex-shrink: 0; position: relative; z-index: 2; }
.deal-card__buy { position: relative; z-index: 2; white-space: nowrap; padding: 10px 12px !important; font-size: .88rem !important; }
@media (max-width: 880px) {
    .deal-grid { grid-template-columns: 1fr; gap: 12px; }
    .deal-card__media { height: 130px; }
    .deal-card__off .n { font-size: 1.7rem; }
    .deal-card__off .w { font-size: 1.15rem; }
    .deal-card__body { padding: 12px 12px 14px; }
    .deal-card__use { font-size: .82rem; padding: 7px 10px; }
}
.offer-card {
    background: var(--bg-card);
    border: 1px solid var(--borda);
    border-radius: 16px;
    overflow: hidden;
    color: var(--texto);
    display: flex;
    flex-direction: column;
    box-shadow: var(--sombra);
    transition: transform .12s, box-shadow .12s;
}
.offer-card:hover { transform: translateY(-3px); box-shadow: var(--sombra-hover); }
.offer-card__media {
    position: relative;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-color: #f0ece8;
}
.offer-card__media--empty { display: flex; align-items: center; justify-content: center; }
.offer-card__noimg { font-size: 2.6rem; opacity: .5; }
.offer-card__badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--laranja);
    color: #fff;
    font-weight: 700;
    font-size: .78rem;
    padding: 4px 10px;
    border-radius: 99px;
}
.offer-card__ilustra {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: .68rem;
    line-height: 1.3;
    text-align: center;
    padding: 4px 8px;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.offer-card__ilustra .icon { flex-shrink: 0; color: #ffd9a8; }
/* Selo "+18" (proibido para menores) no canto inferior da imagem da oferta. */
.deal-card__age18 {
    position: absolute;
    bottom: 8px; right: 8px;
    z-index: 3;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 3.5px solid #d92d20;
    color: #d92d20;
    font-weight: 800;
    font-size: .72rem;
    line-height: 1;
    letter-spacing: -.5px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,.35);
}
.deal-card__age18::after { content: "+"; font-size: .9em; margin-left: -1px; }
.deal-card__age18--lg { width: 40px; height: 40px; font-size: .95rem; border-width: 5px; bottom: 12px; right: 12px; }
/* Badge de desconto na imagem: rente à borda direita, cantos retos na direita
   e arredondados na esquerda (igual ao da página da oferta). % grande + "OFF"
   na vertical, coladinho. */
.deal-card__off {
    position: absolute; top: 12px; right: 0; left: auto; z-index: 4;
    display: inline-flex; align-items: stretch; gap: 0;
    background: linear-gradient(135deg, var(--laranja), var(--laranja-escuro));
    color: #fff; padding: 4px 7px; border-radius: 12px 0 0 12px;
    box-shadow: 0 3px 10px rgba(192,83,42,.45);
}
.deal-card__off-val {
    display: inline-flex; align-items: baseline;
    font-size: 1.55rem; font-weight: 900; line-height: .85; letter-spacing: -1px;
}
.deal-card__off-pct { font-size: 1em; font-weight: 900; line-height: 1; }
.deal-card__off-txt { display: inline-flex; align-items: center; justify-content: center; }
.deal-card__off-txt b {
    display: block; transform: rotate(-90deg); transform-origin: center;
    font-size: .62rem; font-weight: 900; letter-spacing: 1.5px;
    text-transform: uppercase; white-space: nowrap;
}
@media (max-width: 480px) {
    .deal-card__off-val { font-size: 1.25rem; }
    .deal-card__off { padding: 4px 7px; }
}
/* Categoria no topo do card (acima da empresa) — em todas as plataformas. */
.deal-card__cat {
    display: inline-flex; align-items: center; gap: 5px; align-self: flex-start;
    background: var(--laranja-claro); color: var(--laranja-escuro);
    font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
    padding: 3px 9px; border-radius: 99px; max-width: 100%;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.deal-card__cat .icon { width: .85em; height: .85em; flex-shrink: 0; }
.deal-card__cat span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/* Anunciante no topo do card (ícone loja + nome fantasia / razão social) */
.deal-card__empresa {
    display: flex; align-items: center; gap: 5px;
    font-size: .74rem; font-weight: 700; color: var(--cinza);
    text-transform: uppercase; letter-spacing: .3px; margin-bottom: 3px;
}
.deal-card__empresa .icon { width: .95em; height: .95em; color: var(--laranja); flex-shrink: 0; }
.deal-card__empresa span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.offer-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.offer-card__empresa { font-size: .76rem; color: var(--cinza); text-transform: uppercase; letter-spacing: .4px; }
.offer-card__title { font-size: 1.02rem; color: var(--texto); margin: 0; line-height: 1.25; }
.offer-card__prices { margin: 2px 0; }
.offer-card__prices .de, .offer-detail__prices .de { color: var(--cinza); text-decoration: line-through; font-size: .85rem; margin-right: 6px; }
.offer-card__prices .por, .offer-detail__prices .por { color: var(--verde); font-weight: 800; font-size: 1.15rem; }
.offer-card__group { color: #555; font-size: .8rem; }
.offer-card__vagas { font-size: .76rem; color: var(--cinza); font-weight: 600; }
.offer-card__vagas.is-esgotado { color: var(--vermelho); }
.offer-card__cost {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fdf1ea;
    color: #97431f;
    font-weight: 700;
    font-size: .85rem;
    padding: 6px 12px;
    border-radius: 99px;
    align-self: flex-start;
}

/* ── Barra de progresso da compra coletiva ─────────────────── */
.group-bar { height: 7px; background: #eee5df; border-radius: 99px; overflow: hidden; }
.group-bar__fill { height: 100%; background: linear-gradient(90deg, var(--laranja), #e88a62); border-radius: 99px; }

/* ── Página da oferta ──────────────────────────────────────── */
.back-link { display: inline-block; margin-bottom: 14px; color: var(--cinza); font-size: .9rem; }
.offer-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    background: var(--bg-card);
    border: 1px solid var(--borda);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: var(--sombra);
}
.offer-detail__media { position: relative; min-height: 280px; background-size: cover; background-position: center; background-color: #f0ece8; }
/* % OFF grande sobre a imagem (sem fundo, cores da paleta + contraste) */
.offer-detail__media::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.42) 0%, rgba(0,0,0,0) 45%); pointer-events: none; }
.media-off { position: absolute; top: 14px; right: 0; left: auto; display: flex; align-items: stretch; gap: 1px; line-height: .8; z-index: 1; background: rgba(218,100,56,.85); padding: 5px 9px; border-radius: 14px 0 0 14px; }
.media-off__n { display: inline-flex; align-items: baseline; font-size: 3.5rem; font-weight: 900; color: #fff; letter-spacing: -2px; }
.media-off__pct { font-size: 1em; font-weight: 900; letter-spacing: -2px; }
.media-off__w { display: flex; align-items: center; justify-content: center; }
.media-off__w b { display: block; transform: rotate(-90deg); transform-origin: center; white-space: nowrap; font-size: 1.15rem; font-weight: 800; letter-spacing: 1px; color: #d9d3cf; }
@media (max-width: 760px) {
    .media-off__n { font-size: 2.7rem; letter-spacing: -1px; }
    .media-off__w b { font-size: .95rem; letter-spacing: .5px; }
}
.offer-detail__info { padding: 24px 24px 26px; }
.offer-detail__info h2 { margin: 6px 0 10px; color: var(--texto); }
.offer-detail__desc { color: #555; margin-bottom: 14px; }
.offer-detail__prices { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.offer-detail__prices .economia { color: var(--verde); font-size: .82rem; font-weight: 700; }
.offer-detail__cost {
    display: flex; align-items: center; gap: 8px;
    margin: 14px 0 16px; font-size: .95rem;
}
.group-box {
    background: var(--fundo);
    border: 1px solid var(--borda);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: .9rem;
    color: #555;
}
.group-box strong { color: var(--texto); }
.group-box .group-bar { margin-bottom: 10px; }

/* ── Card de compra em grupo (Team Deal) ──────────────────── */
.teamdeal__head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.teamdeal__tag { display: inline-flex; align-items: center; gap: 6px; background: var(--verde); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; padding: 5px 12px; border-radius: 99px; }
.teamdeal__tag .icon { width: .95em; }
.teamdeal__save { color: var(--verde); font-weight: 800; font-size: .9rem; }
.teamdeal__titlerow { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-top: 2px; }
.teamdeal__titlerow h2 { margin: 0; flex: 1; min-width: 0; }
.teamdeal__titlerow .teamdeal__price { margin: 0; flex-wrap: nowrap; }
.teamdeal__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.teamdeal__por { font-size: 2.2rem; font-weight: 800; color: var(--verde); line-height: 1; }
.teamdeal__de { color: var(--cinza); text-decoration: line-through; font-size: 1rem; }
.teamdeal__price-lbl { color: var(--cinza); font-size: .8rem; margin: 2px 0 14px; }
.teamdeal__progress { background: var(--fundo); border: 1px solid var(--borda); border-radius: 14px; padding: 14px 16px; margin-bottom: 14px; box-shadow: var(--sombra); }
.teamdeal__count { display: flex; align-items: center; gap: 7px; font-size: 1.05rem; color: var(--texto); flex-wrap: wrap; }
.teamdeal__count .icon { width: 1.05em; color: var(--verde); }
.teamdeal__count strong { font-size: 1.3rem; }
.teamdeal__more { color: var(--cinza); font-size: .85rem; font-weight: 500; }
.teamdeal__progress .group-bar { height: 9px; margin: 10px 0 8px; background: #e3e8e3; }
.teamdeal__progress .group-bar__fill { background: linear-gradient(90deg, #1f9d63, #3fbf81); }
.teamdeal__remain { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--verde); }
.teamdeal__remain .icon { width: .95em; }
.teamdeal__remain.is-esgotado { color: var(--vermelho); }
.teamdeal__timer { margin: 4px 0 12px; }
.teamdeal__status { display: flex; align-items: center; gap: 8px; color: var(--texto); font-weight: 600; margin: 4px 0 14px; flex-wrap: wrap; }
.teamdeal__status .icon { color: var(--verde); width: 1.1em; }
.teamdeal__status a { color: var(--laranja); font-weight: 600; }
.teamdeal__share { display: flex; gap: 10px; margin: 6px 0 10px; }
/* Card "compartilhe com amigos" (compra coletiva) — separa do contato/compra */
.share-box { margin: 10px 0; padding: 14px; border: 1px dashed #25D366; border-radius: 14px; background: #f3fbf5; }
.share-box__head { display: flex; align-items: center; gap: 8px; font-size: .98rem; color: #176638; margin-bottom: 10px; }
.share-box__head .icon { width: 1.05em; height: 1.05em; color: #1fb957; }
.share-box__txt { font-size: .86rem; color: #3f6b50; margin: 6px 0 12px; line-height: 1.45; }
.share-box__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.share-box__btns .teamdeal__wa { flex: 1 1 180px; }
/* Botão Google Play */
.btn-googleplay { display: inline-flex; align-items: center; gap: 11px; background: #000; color: #fff; border: 0; border-radius: 11px; padding: 9px 20px; text-decoration: none; line-height: 1.1; }
.btn-googleplay:hover { background: #1c1c1c; }
.btn-googleplay .icon { width: 24px; height: 24px; fill: currentColor; }
.btn-googleplay span { display: flex; flex-direction: column; align-items: flex-start; }
.btn-googleplay small { font-size: .62rem; text-transform: uppercase; letter-spacing: .6px; opacity: .85; }
.btn-googleplay strong { font-size: 1.05rem; font-weight: 700; }
.teamdeal__wa { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: #25D366; color: #fff; font-weight: 800; font-size: 1rem; padding: 13px; border-radius: 12px; }
.teamdeal__wa:hover { background: #1fb957; }
.teamdeal__wa .icon { width: 1.2em; height: 1.2em; }
.teamdeal__copy { flex: 0 0 auto; background: #fff; border: 1px solid var(--borda); color: var(--texto); font-weight: 600; padding: 13px 16px; border-radius: 12px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.teamdeal__copy:hover { border-color: var(--laranja); color: var(--laranja); }
.teamdeal__copy .icon { width: 1em; }
.teamdeal__guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin: 18px 0 12px; border-top: 1px solid var(--borda); border-bottom: 1px solid var(--borda); padding: 14px 0; }
.teamdeal__guarantees > div { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; padding: 0 6px; border-left: 1px solid var(--borda); }
.teamdeal__guarantees > div:first-child { border-left: none; }
.teamdeal__guarantees .icon { width: 1.3em; height: 1.3em; color: var(--verde); margin-bottom: 2px; }
.teamdeal__guarantees strong { font-size: .82rem; color: var(--texto); }
.teamdeal__guarantees span { font-size: .72rem; color: var(--cinza); line-height: 1.2; }
.teamdeal__buyers { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--cinza); }
.teamdeal__buyers .icon { width: 1em; }

.rules { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rules li { padding-left: 18px; position: relative; color: #555; font-size: .92rem; }
.rules li::before { content: '•'; position: absolute; left: 4px; color: var(--laranja); }
.rules strong { color: var(--texto); }
/* Regulamento em frases com ícone (igual ao cupom) */
.rules--icons li { padding-left: 0; display: flex; gap: 8px; align-items: flex-start; }
.rules--icons li::before { display: none; }
.rules--icons li .icon { width: 1em; height: 1em; flex-shrink: 0; margin-top: .18em; color: var(--laranja); }
.offer-bottom { display: grid; grid-template-columns: 65fr 35fr; gap: 18px; margin-bottom: 18px; align-items: start; }
.offer-bottom .card { margin: 0; }
@media (max-width: 760px) { .offer-bottom { grid-template-columns: 1fr; } }
.reg-empresa { margin-top: 4px; display: flex; flex-direction: column; gap: 8px; font-size: .9rem; color: #555; }
.reg-empresa > div { display: flex; gap: 8px; align-items: flex-start; }
.reg-empresa .icon { width: 1em; height: 1em; flex-shrink: 0; margin-top: .18em; color: var(--laranja); }
.reg-empresa strong { color: var(--texto); }

/* ── Cupons ────────────────────────────────────────────────── */
.coupon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; align-items: start; }

/* ── Cupom com virar (frente = cupom, verso = regulamento) ──── */
.coupon-flip { perspective: 1400px; cursor: pointer; }
.coupon-flip__inner { position: relative; transition: transform .55s cubic-bezier(.2,.7,.2,1); transform-style: preserve-3d; }
.coupon-flip.is-flipped .coupon-flip__inner { transform: rotateY(180deg); }
.coupon-flip .coupon { backface-visibility: hidden; -webkit-backface-visibility: hidden; height: 100%; }
.coupon.coupon--back {
    position: absolute; inset: 0; transform: rotateY(180deg);
    overflow-y: auto; cursor: default;
    background: var(--laranja); color: #fff; gap: 8px; border-color: transparent;
}
.coupon--back .coupon__top { align-items: center; border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 8px; }
.coupon--back .coupon__top h3 { margin: 0; color: #fff; font-size: .95rem; }
.coupon--back .rules { margin: 0; gap: 6px; }
.coupon--back .rules li { color: rgba(255,255,255,.9); font-size: .74rem; line-height: 1.35; padding-left: 0; display: flex; gap: 7px; align-items: flex-start; }
.coupon--back .rules li::before { display: none; }
.coupon--back .rules li .icon { width: .95em; height: .95em; flex-shrink: 0; margin-top: .15em; opacity: .85; }
.coupon--back .rules strong { color: #fff; font-weight: 700; }
.coupon__empresa { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.25); display: flex; flex-direction: column; gap: 5px; font-size: .74rem; color: rgba(255,255,255,.92); }
.coupon__empresa > div { display: flex; gap: 7px; align-items: flex-start; }
.coupon__empresa .icon { width: .95em; height: .95em; flex-shrink: 0; margin-top: .15em; opacity: .85; }
.coupon__empresa strong { color: #fff; }
.coupon--back .coupon__flip { color: #fff; opacity: .9; }
.coupon--back .coupon__flip:hover { color: #fff; opacity: 1; }
.coupon__rules { overflow-y: auto; }
/* barra de rolagem discreta no verso */
.coupon--back::-webkit-scrollbar { width: 6px; }
.coupon--back::-webkit-scrollbar-thumb { background: rgba(255,255,255,.35); border-radius: 99px; }
.coupon__flip {
    margin-top: auto; align-self: flex-start;
    background: none; border: none; color: var(--laranja); font-weight: 600;
    font-size: .82rem; cursor: pointer; padding: 4px 0;
    display: inline-flex; align-items: center; gap: 6px;
}
.coupon__flip:hover { color: var(--laranja-escuro); }
.coupon__flip .icon { width: .9em; }
.coupon__flip--back { margin: 0; }

.coupon {
    background: var(--bg-card);
    border: 1px solid var(--borda);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--sombra);
}
.coupon--active { border-color: var(--verde); box-shadow: 0 4px 18px rgba(0,117,0,.08); }
.coupon__top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.coupon__top h3 { margin: 2px 0 0; font-size: 1.05rem; color: var(--texto); }
.coupon__code { text-align: center; background: var(--fundo); border-radius: 12px; padding: 16px; }
.coupon__qr { display: block; margin: 0 auto 8px; border-radius: 8px; background: #fff; }
.coupon__codetext { font-family: monospace; font-size: 1.15rem; font-weight: 700; letter-spacing: 1px; color: var(--texto); }
.coupon__waiting { background: #fdf1ea; border-radius: 10px; padding: 12px 14px; font-size: .88rem; color: #97431f; }
.coupon__foot { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: .82rem; color: var(--cinza); border-top: 1px dashed var(--borda); padding-top: 12px; }
.coupon__foot strong { color: var(--verde); }

/* Meus cupons — tabela compacta + modal */
.cupons-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border: 1px solid var(--borda); border-radius: 14px; overflow: hidden; box-shadow: var(--sombra); }
.cupons-table th { text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: var(--cinza); padding: 12px 14px; background: var(--fundo); border-bottom: 1px solid var(--borda); }
.cupons-table td { padding: 12px 14px; border-bottom: 1px solid var(--borda); vertical-align: middle; }
.cupons-table tr:last-child td { border-bottom: 0; }
.cupons-table__info { max-width: 0; width: 100%; }
.cupons-table__prod, .cupons-table__emp { display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cupons-table__prod { font-weight: 700; color: var(--texto); }
.cupons-table__emp { color: var(--cinza); font-size: .85rem; margin-top: 2px; }
.cup-off { display: inline; font-weight: 800; color: var(--laranja); }
.cupons-table__act { width: 60px; text-align: center; }
.cupom-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--borda); background: var(--fundo); cursor: pointer; color: var(--cinza); }
.cupom-icon .icon { width: 18px; height: 18px; }
.cupom-icon--qr { border-color: var(--verde); color: var(--verde); background: #e9f5e9; }
.cupom-icon--lock { opacity: .65; cursor: default; }

.cupom-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 16px; background: rgba(20,12,6,.55); }
.cupom-modal[hidden] { display: none; }
.cupom-modal__box { position: relative; width: 100%; max-width: 420px; max-height: 90vh; overflow-y: auto; }
.cupom-modal__close { position: absolute; top: 8px; right: 10px; z-index: 2; width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(0,0,0,.08); font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--texto); }
.coupon--modal { margin: 0; }
.coupon__rules h4 { margin: 0 0 8px; font-size: .95rem; color: var(--texto); }
body.modal-open { overflow: hidden; }

/* Hero de contagem regressiva de lançamento (home, não-bloqueante) */
.launch-hero { background: linear-gradient(135deg, var(--laranja), var(--laranja-escuro)); color: #fff; border-radius: 18px; padding: 22px 18px; text-align: center; margin-bottom: 18px; box-shadow: 0 12px 30px -10px rgba(192,83,42,.55); }
.launch-hero__tag { font-size: 1.25rem; font-weight: 800; letter-spacing: -.3px; }
.launch-hero__sub { font-size: .92rem; opacity: .95; margin: 6px auto 0; max-width: 520px; line-height: 1.4; }
.launch-hero__timer { display: flex; justify-content: center; gap: 8px; margin: 14px 0 4px; }
.launch-hero__timer .tb { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); border-radius: 12px; padding: 8px 10px; min-width: 60px; }
.launch-hero__timer .tb__n { display: block; font-size: 1.7rem; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.launch-hero__timer .tb__l { display: block; font-size: .6rem; text-transform: uppercase; letter-spacing: .5px; opacity: .85; margin-top: 4px; }
.launch-hero__cta { font-size: .92rem; margin-top: 10px; }
.launch-hero__cta a { color: #fff; font-weight: 800; text-decoration: underline; }
.launch-hero__btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; padding: 11px 20px; border: 0; border-radius: 999px; background: #fff; color: var(--laranja-escuro); font-size: .95rem; font-weight: 800; cursor: pointer; text-decoration: none; box-shadow: 0 8px 20px -8px rgba(0,0,0,.35); }
.launch-hero__btn:hover { background: #fff3ec; }
.launch-hero__btn .icon { width: 1.05em; height: 1.05em; }
.launch-hero__btn[data-state="on"] { background: rgba(255,255,255,.2); color: #fff; cursor: default; box-shadow: none; }
.launch-hero__btn[disabled] { opacity: .8; }
.launch-hero__hint { font-size: .76rem; opacity: .9; margin-top: 8px; }

.cep-msg { display: block; color: #c0392b; font-size: .82rem; margin: 4px 0 8px; }

/* Data de nascimento em 3 campos */
.nasc-campos { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 8px; }
.nasc-campos select { width: 100%; }

/* Menu lateral (drawer) */
.site-nav__burger { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 0; background: transparent; color: var(--texto); cursor: pointer; border-radius: 10px; }
.site-nav__burger:hover { background: var(--fundo); }
.site-nav__burger .icon { width: 22px; height: 22px; }
.drawer-overlay { position: fixed; inset: 0; background: rgba(20,12,6,.5); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity .25s; }
body.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 320px; max-width: 86vw; background: linear-gradient(180deg, var(--laranja) 0%, var(--laranja-escuro) 100%); color: #fff; z-index: 2000; transform: translateX(100%); transition: transform .25s ease; box-shadow: -12px 0 40px rgba(0,0,0,.3); display: flex; flex-direction: column; }
body.drawer-open .drawer { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px; border-bottom: 1px solid rgba(255,255,255,.25); }
.drawer__logo { height: 30px; filter: brightness(0) invert(1); }
.drawer__user { display: flex; align-items: center; gap: 10px; min-width: 0; }
.drawer__avatar .icon { width: 34px; height: 34px; color: #fff; }
/* Avatar genérico (foto, ou inicial quando não há foto) */
.ava { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex: none; background: rgba(255,255,255,.18); }
.ava__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ava--ini { font-weight: 700; color: #fff; font-size: 1rem; }
.drawer--claro .ava { background: #fbeee7; }
.drawer--claro .ava--ini { color: var(--laranja); }
/* Editor de avatar no perfil */
.avatar-edit { display: flex; align-items: center; gap: 14px; margin: 4px 0 8px; }
.avatar-edit__preview { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; flex: none; background: #f0e9e4; display: inline-flex; align-items: center; justify-content: center; }
.avatar-edit__preview img { width: 100%; height: 100%; object-fit: cover; }
.avatar-edit__preview .icon { width: 40px; height: 40px; color: #b9a89e; }
/* Mostrar/ocultar senha (ícone de olho) */
.pw-field { position: relative; display: block; }
.pw-field > input { display: block; margin-bottom: 0 !important; padding-right: 44px; width: 100%; }
.pw-field .pw-toggle { position: absolute; top: 50%; transform: translateY(-50%); right: 6px; margin: 0 !important; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; background: none; border: 0; padding: 0; cursor: pointer; color: #969899; }
.pw-field .pw-toggle svg { width: 19px; height: 19px; fill: currentColor; display: block; }
.pw-field .pw-toggle:hover { color: #DA6438; }
.drawer__user-info { display: flex; flex-direction: column; min-width: 0; }
.drawer__user-info strong { color: #fff; }
.drawer__user-info small { color: rgba(255,255,255,.8); font-size: .76rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 200px; }
.drawer__close { border: 0; background: none; font-size: 1.8rem; line-height: 1; color: #fff; cursor: pointer; padding: 0 4px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 12px; }
.drawer__sec { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.7); font-weight: 700; margin: 14px 8px 6px; }
.drawer__item { display: flex; align-items: center; gap: 10px; padding: 11px 10px; border-radius: 10px; color: #fff; text-decoration: none; font-size: .95rem; }
.drawer__item:hover { background: rgba(255,255,255,.16); }
.drawer__item .icon { width: 18px; height: 18px; color: #fff; flex-shrink: 0; }
.drawer__item--danger { color: #ffe1e1; }
.drawer__item--danger .icon { color: #ffe1e1; }
.drawer__cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: 12px; background: #fff; color: var(--laranja-escuro); font-weight: 800; text-decoration: none; margin-bottom: 8px; }
.drawer__cta .icon { width: 18px; height: 18px; }
.drawer__cta--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.75); }

/* Variante de fundo claro do menu lateral */
.drawer--claro { background: #fff; color: var(--texto); }
.drawer--claro .drawer__head { border-bottom: 1px solid var(--borda); }
.drawer--claro .drawer__logo { filter: none; }
.drawer--claro .drawer__avatar .icon { color: var(--laranja); }
.drawer--claro .drawer__user-info strong { color: var(--texto); }
.drawer--claro .drawer__user-info small { color: var(--cinza); }
.drawer--claro .drawer__close { color: var(--cinza); }
.drawer--claro .drawer__sec { color: var(--cinza); }
.drawer--claro .drawer__item { color: var(--texto); }
.drawer--claro .drawer__item:hover { background: var(--fundo); }
.drawer--claro .drawer__item .icon { color: var(--laranja); }
.drawer--claro .drawer__item--danger, .drawer--claro .drawer__item--danger .icon { color: var(--vermelho); }
.drawer--claro .drawer__cta { background: var(--laranja); color: #fff; }
.drawer--claro .drawer__cta--ghost { background: #fff; color: var(--laranja); border: 2px solid var(--laranja); }

/* Suporte do cliente — chamados */
.ticket-list { display: flex; flex-direction: column; gap: 10px; }
.ticket { border: 1px solid var(--borda); border-radius: 12px; overflow: hidden; }
.ticket__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; text-decoration: none; color: var(--texto); }
.ticket__assunto { font-weight: 700; }
.ticket.is-open .ticket__head { background: var(--fundo); }
.tstatus { font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.tstatus--aberto { background: #fdecdc; color: #97431f; }
.tstatus--andamento { background: #e1effb; color: #1c6aa8; }
.tstatus--concluido { background: #e9f5e9; color: #006000; }
.ticket__body { padding: 12px 14px; border-top: 1px solid var(--borda); display: flex; flex-direction: column; gap: 10px; }
.tmsg { max-width: 85%; padding: 9px 12px; border-radius: 12px; font-size: .9rem; }
.tmsg__autor { font-size: .7rem; font-weight: 700; opacity: .7; margin-bottom: 2px; }
.tmsg__data { font-size: .66rem; opacity: .6; margin-top: 4px; }
.tmsg--eu { align-self: flex-end; background: #DA6438; color: #fff; }
.tmsg--admin { align-self: flex-start; background: var(--fundo); }
.ticket__reply textarea { width: 100%; border: 1px solid var(--borda); border-radius: 10px; padding: 8px 10px; font: inherit; resize: vertical; }
.ticket__reply-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }

/* Empresas / Favoritos — vitrine de parceiros */
.parc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.parc-card { position: relative; background: var(--bg-card); border: 1px solid var(--borda); border-radius: 14px; padding: 18px 14px 14px; text-align: center; box-shadow: var(--sombra); }
.parc-card__logo { width: 72px; height: 72px; margin: 4px auto 10px; border-radius: 50%; overflow: hidden; background: var(--fundo); display: flex; align-items: center; justify-content: center; }
.parc-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.parc-card__ph .icon { width: 30px; height: 30px; color: var(--cinza); }
.parc-card__nome { font-weight: 700; color: var(--texto); font-size: .95rem; line-height: 1.2; }
.parc-card__cat { font-size: .76rem; color: var(--cinza); margin-top: 3px; }
.parc-card__cat .icon { width: .8em; height: .8em; }
.parc-card__ofertas { font-size: .76rem; color: var(--laranja); font-weight: 600; margin-top: 8px; }
.parc-fav { position: absolute; top: 8px; right: 8px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: var(--fundo); color: #c9c2bb; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: color .12s, transform .12s; }
.parc-fav .icon { width: 18px; height: 18px; }
.parc-fav:active { transform: scale(.9); }
.parc-fav.is-on { color: #e0556b; }
.parc-fav--inline { position: static; width: auto; height: auto; padding: 7px 12px; border-radius: 999px; border: 1.5px solid #e0556b; background: #fff; color: #e0556b; font-weight: 700; font-size: .82rem; gap: 6px; }
.parc-fav--inline.is-on { background: #e0556b; color: #fff; }
.parc-fav--icon { flex: none; width: 40px; height: 40px; padding: 0; border-radius: 50%; }
.parc-fav--icon .icon { width: 1.15em; height: 1.15em; }
.empresa-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.empresa-head h3 { margin: 0; }
.empresa-id { display: flex; align-items: center; gap: 12px; min-width: 0; }
.empresa-id__logo { flex: none; width: 52px; height: 52px; border-radius: 12px; overflow: hidden; background: #f3eee9; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--borda); }
.empresa-id__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.empresa-id__logo--ph .icon { width: 24px; height: 24px; color: #b9a89e; }
.empresa-id__txt { display: flex; flex-direction: column; min-width: 0; }
.empresa-id__nome { font-size: 1.15rem; font-weight: 800; color: var(--texto); line-height: 1.2; }
.empresa-id__txt small { color: var(--cinza); font-size: .82rem; margin-top: 2px; }

/* Avaliações do cliente */
.aval-cta { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: #fff7ef; border: 1px solid #f3d2b8; border-radius: 12px; padding: 14px 16px; margin-bottom: 16px; color: var(--texto); font-size: .92rem; }
.aval-cta .icon { width: 1em; color: #e8a33d; }
.aval-cta__go { color: var(--laranja); font-weight: 700; white-space: nowrap; }
.aval-section { margin: 22px 0 10px; font-size: 1.05rem; color: var(--texto); }
.aval-card { background: var(--bg-card); border: 1px solid var(--borda); border-radius: 14px; padding: 16px 18px; margin-bottom: 14px; box-shadow: var(--sombra); display: flex; flex-direction: column; gap: 4px; }
.aval-card__head strong { font-size: 1.02rem; color: var(--texto); }
.aval-card__prod { font-size: .82rem; color: var(--cinza); margin-top: 2px; }
.aval-label { font-size: .82rem; font-weight: 700; color: var(--texto); margin-top: 8px; }
.aval-radios { display: flex; gap: 16px; flex-wrap: wrap; font-size: .9rem; }
.aval-radios label { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.aval-card textarea { width: 100%; border: 1px solid var(--borda); border-radius: 10px; padding: 8px 10px; font: inherit; resize: vertical; }
.aval-card .btn { align-self: flex-start; margin-top: 8px; }
.aval-fav { align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; margin-top: 6px;
    background: #fff; border: 1.5px solid var(--laranja); color: var(--laranja); font-weight: 700; font-size: .86rem;
    padding: 7px 14px; border-radius: 99px; cursor: pointer; transition: background .12s, color .12s; }
.aval-fav .icon { width: 1em; height: 1em; }
.aval-fav:hover { background: var(--laranja-claro); }
.aval-fav.is-on { background: var(--laranja); color: #fff; border-color: var(--laranja); }
.star-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 2px; font-size: 1.8rem; line-height: 1; position: relative; }
.star-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-input label { color: #d8d2cb; cursor: pointer; transition: color .1s; }
.star-input label:hover, .star-input label:hover ~ label, .star-input input:checked ~ label { color: #f1b434; }
.aval-done-list { display: flex; flex-direction: column; gap: 10px; }
.aval-done { background: var(--bg-card); border: 1px solid var(--borda); border-radius: 12px; padding: 12px 14px; }
.aval-done__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.aval-done__top strong { color: var(--texto); }
.aval-done__stars { color: #f1b434; letter-spacing: 1px; white-space: nowrap; }
.aval-done__prod { font-size: .8rem; color: var(--cinza); margin-top: 2px; }
.aval-done__cmt { font-size: .86rem; color: #555; margin: 8px 0 0; font-style: italic; }

.coupon-status { font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 99px; white-space: nowrap; }
.coupon-status--ativo { background: #e9f5e9; color: #006000; }
.coupon-status--comprometido { background: #fff4e5; color: #97431f; }
.coupon-status--resgatado { background: #eef0f2; color: #555; }
.coupon-status--expirado { background: #fdecec; color: #a30000; }
.coupon-status--presenteado { background: #fdf1ea; color: #97431f; }

/* Pacotes de tokens (compra) — mesmos cards da área da empresa */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
    margin-top: 6px;
}
.pkg-card {
    border: 1px solid var(--borda);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--sombra);
}
.pkg-card__tokens { font-size: 1.6rem; font-weight: 800; color: var(--texto); line-height: 1; }
.pkg-card__tokens span { font-size: .8rem; font-weight: 600; color: var(--cinza); }
.pkg-card__price { color: var(--verde); font-weight: 700; font-size: 1.1rem; }
.pkg-card button { margin-top: 4px; width: 100%; justify-content: center; }

/* Pedidos de tokens + cobrança Pix */
.order-row { border: 1px solid var(--borda); border-radius: 12px; padding: 14px 16px; margin-bottom: 12px; }
.order-row__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.pix-pay { display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-start; margin-top: 14px; }
.pix-pay__qr { border: 1px solid var(--borda); border-radius: 10px; background: #fff; flex: 0 0 auto; }
.pix-pay__side { flex: 1 1 240px; min-width: 0; }
.pix-code {
    width: 100%;
    font-family: monospace;
    font-size: .8rem;
    padding: 8px 10px;
    border: 1.5px solid var(--borda);
    border-radius: 8px;
    resize: vertical;
    word-break: break-all;
}

.mini-coupons { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mini-coupons li { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: .9rem; }
.mini-coupons__title { color: var(--texto); }

/* ── Filtros numa linha só ─────────────────────────────────── */
.offer-filters { flex-wrap: nowrap; }
.offer-filters select { flex: 1 1 0; min-width: 0; }
.offer-filters .btn { flex: 0 0 auto; white-space: nowrap; }

/* ── Cronômetro regressivo ─────────────────────────────────── */
.countdown {
    font-size: .82rem;
    color: #97431f;
    background: #fdf1ea;
    border-radius: 8px;
    padding: 4px 10px;
    font-weight: 700;
    align-self: flex-start;
}
.countdown__t { font-variant-numeric: tabular-nums; }
.countdown--big { font-size: .95rem; padding: 8px 14px; margin: 4px 0 12px; }
.countdown--ended { background: #fdecec; color: #a30000; }

/* ── Banner "precisa de tokens?" ───────────────────────────── */
.tokens-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    background: var(--bg-card);
    border: 1px solid var(--borda);
    border-radius: 14px;
    padding: 12px 18px;
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--texto);
    box-shadow: var(--sombra);
}
.tokens-cta__actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Carteira: layout solo + cards de ação ─────────────────── */
/* Card "Meu saldo" com botões embutidos à direita */
.wallet-card--main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.wallet-main__info { min-width: 0; width: 49%; }
.wallet-main__actions {
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wallet-main__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: background .15s, transform .1s;
    background: rgba(255,255,255,.22);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
}
.wallet-main__btn:hover { background: rgba(255,255,255,.32); transform: translateY(-1px); }
.wallet-main__btn--ghost {
    background: transparent;
    border-color: rgba(255,255,255,.4);
    color: rgba(255,255,255,.9);
}
.wallet-main__btn--ghost:hover { background: rgba(255,255,255,.12); }
/* No mobile quando os botões quebram para uma linha ocupam toda a largura */
@media (max-width: 480px) {
    .wallet-main__actions { flex-direction: column; }
    .wallet-main__btn { justify-content: center; }
}

.warn-expiry { border-left-color: #DA6438; background: #fdf1ea; color: #97431f; }

/* ── Card "Tokens acabaram" ────────────────────────────────── */
.tokens-zero {
    background: linear-gradient(135deg, var(--laranja) 0%, #c0532a 100%);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    box-shadow: 0 6px 24px rgba(218,100,56,.35);
    position: relative;
    overflow: hidden;
}
.tokens-zero::before {
    content: '';
    position: absolute;
    right: -30px; top: -30px;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    pointer-events: none;
}
.tokens-zero__left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}
.tokens-zero__ico {
    flex: none;
    width: 48px; height: 48px;
    background: rgba(255,255,255,.15);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
}
.tokens-zero__ico .icon { width: 26px; height: 26px; }
.tokens-zero__titulo {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.tokens-zero__sub {
    font-size: .82rem;
    color: rgba(255,255,255,.8);
    margin-top: 3px;
    line-height: 1.4;
}
.tokens-zero__btn {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--laranja);
    font-size: .9rem;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .15s, transform .1s;
    white-space: nowrap;
}
.tokens-zero__btn:hover { background: #fff3ee; transform: translateY(-1px); }
.tokens-zero__btn .icon { width: 1em; height: 1em; }
@media (max-width: 480px) {
    .tokens-zero { flex-direction: column; align-items: flex-start; }
    .tokens-zero__btn { width: 100%; justify-content: center; }
}

/* ── Card "Complete seu cadastro" ──────────────────────────── */
.compl-card { border-left: 4px solid var(--laranja); padding-bottom: 20px; }
.compl-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.compl-card__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 4px;
}
.compl-card__title .icon { color: var(--laranja); }
.compl-card__falta { font-size: .82rem; color: var(--cinza); margin: 0; }
.compl-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}
.compl-progress__track {
    flex: 1;
    height: 8px;
    background: var(--fundo);
    border: 1px solid var(--borda);
    border-radius: 99px;
    overflow: hidden;
}
.compl-progress__fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--laranja), #e88a62);
    transition: width .4s ease;
    min-width: 4px;
}
.compl-progress__pct {
    flex: none;
    font-size: .82rem;
    font-weight: 700;
    color: var(--laranja);
    min-width: 36px;
    text-align: right;
}

/* ── Modal genérico ────────────────────────────────────────── */
.modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(20,16,12,.55); backdrop-filter: blur(3px);
    display: flex; align-items: center; justify-content: center; padding: 20px;
    animation: modalFade .2s ease;
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
    background: #fff; border-radius: 18px; padding: 28px 26px;
    width: 100%; max-width: 440px; text-align: center;
    box-shadow: 0 24px 70px rgba(140,55,25,.40);
    animation: modalPop .25s cubic-bezier(.2,.8,.3,1.2);
}
@keyframes modalPop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Boas-vindas de volta (cliente do sistema antigo) */
.welcome-back__emoji { font-size: 2.6rem; line-height: 1; }
.welcome-back__title { font-size: 1.4rem; color: var(--texto); margin: 10px 0 6px; letter-spacing: -.3px; }
.welcome-back__lead { color: var(--cinza); font-size: .92rem; margin: 0 0 16px; line-height: 1.5; }
.welcome-back__gift {
    display: flex; align-items: center; gap: 12px; text-align: left;
    background: linear-gradient(135deg, #fff6ef 0%, #fbeee6 100%);
    border: 1px solid #f0e0d4; border-radius: 14px; padding: 14px 16px; margin-bottom: 12px;
    font-size: .9rem; color: #6a4a36; line-height: 1.45;
}
.welcome-back__gift .icon { width: 1.9rem; height: 1.9rem; color: var(--laranja); flex-shrink: 0; }
.welcome-back__gift strong { color: var(--texto); }
.welcome-back__hist { font-size: .88rem; color: var(--cinza); margin: 0 0 18px; line-height: 1.45; }
.welcome-back__hist .icon { width: 1em; height: 1em; color: var(--laranja); vertical-align: -.12em; }
.welcome-back__hist strong { color: var(--texto); }

/* ── Convite de amigos (indicação) ─────────────────────────── */
.ref-invite {
    display: flex; align-items: center; gap: 9px;
    background: #fbeee6; border: 1px solid #f0e0d4; border-radius: 10px;
    padding: 10px 13px; margin-bottom: 14px; font-size: .88rem; color: #97431f;
}
.ref-invite .icon { width: 1.1em; height: 1.1em; color: var(--laranja); flex-shrink: 0; }
.ref-invite strong { color: var(--texto); }

.ref-card { margin-bottom: 22px; }
.ref-link { display: flex; gap: 8px; flex-wrap: wrap; }
.ref-link input {
    flex: 1 1 220px; min-width: 0; padding: 11px 14px;
    border: 1.5px solid var(--borda); border-radius: 10px; background: #faf8f6;
    font-size: .85rem; color: var(--texto);
}
.ref-link .btn { flex: 0 0 auto; }
.ref-summary {
    display: flex; flex-wrap: wrap; gap: 16px; margin: 14px 0 10px;
    font-size: .82rem; color: var(--cinza);
}
.ref-summary strong { color: var(--texto); }
.ref-summary .icon { width: 1em; height: 1em; color: var(--laranja); vertical-align: -.12em; }
.ref-friends { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ref-friend {
    display: flex; align-items: center; gap: 11px;
    padding: 10px 12px; border: 1px solid var(--borda); border-radius: 12px; background: #fff;
}
.ref-friend.is-ok { background: linear-gradient(135deg, #fff 0%, #eaf6ee 100%); border-color: #cfe9d8; }
.ref-friend__avatar {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--laranja); color: #fff; font-weight: 700;
}
.ref-friend.is-ok .ref-friend__avatar { background: var(--verde); }
.ref-friend__info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.ref-friend__name { font-weight: 700; color: var(--texto); font-size: .9rem; }
.ref-friend__date { font-size: .74rem; color: var(--cinza); }
.ref-friend__ok {
    display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
    color: #1f6d44; font-weight: 700; font-size: .82rem;
}
.ref-friend__ok .icon { width: 1em; height: 1em; }
.ref-friend__pending {
    display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
    color: var(--cinza); font-size: .78rem;
}
.ref-friend__pending .icon { width: 1em; height: 1em; }

/* ── Objetivos do cliente (gamificação) ────────────────────── */
.obj-cli-card { margin-bottom: 22px; }
.obj-cli-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.obj-cli {
    border: 1px solid var(--borda); border-radius: 14px; padding: 16px;
    background: linear-gradient(135deg, #fff 0%, #fbeee6 100%);
    display: flex; flex-direction: column; gap: 7px;
}
.obj-cli.is-done { background: linear-gradient(135deg, #fff 0%, #eaf6ee 100%); border-color: #cfe9d8; }
.obj-cli__tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--laranja);
}
.obj-cli__tag .icon { width: 1em; height: 1em; }
.obj-cli.is-done .obj-cli__tag { color: var(--verde); }
.obj-cli__titulo { font-size: 1.05rem; font-weight: 800; color: var(--texto); line-height: 1.2; }
.obj-cli__desc { font-size: .82rem; color: var(--cinza); line-height: 1.4; }
.obj-cli__reward {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .9rem; color: #97431f; margin-top: 2px;
}
.obj-cli__reward .icon { width: 1em; height: 1em; color: var(--laranja); }
.obj-cli__reward strong { font-size: 1.1rem; color: var(--texto); }
.obj-cli form { margin-top: auto; }
.obj-cli .btn { margin-top: 4px; }
.obj-cli__done {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px; margin-top: 4px;
    padding: 10px; border-radius: 10px; background: #e7f6ee; color: #1f6d44; font-weight: 700; font-size: .9rem;
}
.obj-cli__done .icon { width: 1em; height: 1em; }

/* ── Cards de estatística do usuário ───────────────────────── */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--borda);
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
    box-shadow: var(--sombra);
    position: relative;
    overflow: hidden;
}
.stat-card__num { font-size: 1.5rem; font-weight: 800; color: var(--laranja); line-height: 1; }
.stat-card__num small { font-size: .8rem; color: var(--cinza); font-weight: 600; }
.stat-card__num--nivel { font-size: 1.15rem; }
.perfil-savebar { position: sticky; bottom: 12px; z-index: 20; margin-top: 14px; }
.perfil-savebar .btn { box-shadow: 0 8px 22px -6px rgba(218,100,56,.6); }
.stat-card__lbl { font-size: .78rem; color: var(--cinza); margin-top: 6px; }

/* ── Mensagem fixa do cupom ────────────────────────────────── */
.fixed-msg {
    background: #e9f5e9;
    border: 1px solid #c5e6c5;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: .85rem;
    color: #1a5c1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* ── Extrato de tokens ─────────────────────────────────────── */
.ledger { list-style: none; }
.ledger__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--borda);
}
.ledger__row:last-child { border-bottom: none; }
.ledger__main { display: flex; flex-direction: column; gap: 2px; }
.ledger__label { color: var(--texto); font-weight: 600; font-size: .92rem; }
.ledger__date { color: var(--cinza); font-size: .78rem; }
.ledger__amount { font-weight: 800; font-variant-numeric: tabular-nums; font-size: 1.05rem; }
.ledger__amount.is-pos { color: var(--verde); }
.ledger__amount.is-neg { color: var(--vermelho); }

/* ── Responsivo ────────────────────────────────────────────── */
@media (max-width: 760px) {
    .features { grid-template-columns: 1fr; }
    .wallet-cards { grid-template-columns: 1fr; }
    .hero h2 { font-size: 1.6rem; }
    .hero { padding: 32px 22px; }
    .offer-detail { grid-template-columns: 1fr; }
    .offer-detail__media { min-height: 200px; }
    .stat-cards { grid-template-columns: 1fr 1fr; }
    .offer-filters { flex-wrap: wrap; }
    .offer-filters__search { flex: 1 1 100%; }
}

/* ── Mobile (≤ 480px) ──────────────────────────────────────── */
@media (max-width: 480px) {

    /* Container com menos margem */
    .site-main { padding: 16px 12px 40px; }

    /* Header: logo menor */
    .brand__logo { height: 34px; }
    .site-header__inner { padding: 10px 12px; gap: 8px; }

    /* Nav: compacto no mobile — só ícones, sem texto */
    .nav-label { display: none; }
    /* exceto "Como funciona" e "Entrar", que mantêm o texto junto do ícone */
    .site-nav__link--mlabel .nav-label { display: inline; }
    /* o primeiro nome aparece ao lado do ícone de conta também no mobile/app */
    .site-nav__dropdown-toggle .nav-label {
        display: inline-block;
        max-width: 84px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
    }
    .site-nav { gap: 2px; }
    .site-nav__link { padding: 7px 8px; }
    .site-nav__tokens { padding: 7px 10px; font-size: .82rem; }
    .site-nav__cta { padding: 7px 8px; }

    /* Hero compacto */
    .hero--compact { padding: 18px 14px; margin-bottom: 14px; }
    .hero--compact h2 { font-size: 1.25rem; }

    /* Banner tokens: empilha */
    .tokens-cta { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 14px; }
    .tokens-cta__actions { display: flex; gap: 8px; flex-wrap: wrap; }

    /* Deal cards: 2 colunas */
    .deal-grid { grid-template-columns: 1fr; gap: 10px; }
    .deal-card__media { height: 110px; }
    .deal-card__body { padding: 10px 10px 12px; gap: 4px; }
    .deal-title { font-size: .82rem; }
    .deal-card__desc { font-size: .72rem; -webkit-line-clamp: 1; line-clamp: 1; }
    .deal-card__use { font-size: .75rem; padding: 6px 9px; gap: 5px; }
    .deal-card__timer { gap: 3px; }
    .deal-card__timer .tb { padding: 4px 1px; border-radius: 6px; }
    .deal-card__timer .tb__n { font-size: .88rem; }
    .deal-card__timer .tb__l { font-size: .48rem; }
    .deal-card__stats { font-size: .68rem; gap: 4px; }
    .deal-card__btn { font-size: .78rem !important; padding: 8px 8px !important; }
    .deal-card__buy { font-size: .78rem !important; padding: 8px 8px !important; }

    /* Filtros: empilha tudo */
    .offer-filters { gap: 8px; }
    .offer-filters input,
    .offer-filters select { font-size: .85rem; padding: 9px 10px; }
    .offer-filters .btn { width: 100%; }

    /* Offer detail */
    .offer-detail__info { padding: 16px 16px 20px; }
}

/* ── Telas muito pequenas (≤ 360px): 1 coluna nos cards ───── */
@media (max-width: 360px) {
    .deal-grid { grid-template-columns: 1fr; gap: 10px; }
    .deal-card__media { height: 160px; }
    .deal-card__body { padding: 12px 14px 14px; }
    .deal-title { font-size: .9rem; }
    .deal-card__desc { -webkit-line-clamp: 2; line-clamp: 2; font-size: .78rem; }
}

/* Barra superior de lembrete de notificações */
.notif-bar{overflow:hidden;max-height:0;transition:max-height .42s ease;background:linear-gradient(135deg,#DA6438 0%,#e88a62 100%);color:#fff;box-shadow:0 2px 10px rgba(0,0,0,.12)}
.notif-bar.is-open{max-height:120px}
.notif-bar__inner{max-width:1040px;margin:0 auto;padding:11px 16px;display:flex;align-items:center;gap:12px}
.notif-bar__txt{flex:1;font-size:14px;font-weight:600;line-height:1.3;display:flex;align-items:center;gap:8px}
.notif-bar__txt .icon{width:18px;height:18px;flex-shrink:0}
.notif-bar__btn{flex-shrink:0;background:#fff;color:#DA6438;border:none;border-radius:8px;font-weight:700;font-size:14px;padding:8px 18px;cursor:pointer;white-space:nowrap}
.notif-bar__btn:hover{opacity:.92}
.notif-bar__btn:disabled{opacity:.7;cursor:default}
.notif-bar__close{flex-shrink:0;background:transparent;border:none;color:#fff;cursor:pointer;padding:4px;display:inline-flex;opacity:.85}
.notif-bar__close .icon{width:18px;height:18px}
.notif-bar__close:hover{opacity:1}
@media (max-width:560px){
  .notif-bar.is-open{max-height:140px}
  .notif-bar__txt{font-size:13px}
  .notif-bar__btn{padding:7px 14px;font-size:13px}
}

/* Barra superior de aviso (ex.: suporte respondeu) */
.topnote{overflow:hidden;max-height:0;transition:max-height .42s ease;background:linear-gradient(135deg,#1f9d63 0%,#46c489 100%);color:#fff;box-shadow:0 2px 10px rgba(0,0,0,.12)}
.topnote.is-open{max-height:140px}
.topnote__inner{max-width:1040px;margin:0 auto;padding:11px 16px;display:flex;align-items:center;gap:12px}
.topnote__txt{flex:1;font-size:14px;font-weight:600;line-height:1.3;display:flex;align-items:center;gap:8px}
.topnote__txt .icon{width:18px;height:18px;flex-shrink:0}
.topnote__btn{flex-shrink:0;background:#fff;color:#1f7d52;border:none;border-radius:8px;font-weight:700;font-size:14px;padding:8px 16px;cursor:pointer;text-decoration:none;white-space:nowrap;display:inline-flex;align-items:center;gap:6px}
.topnote__btn .icon{width:15px;height:15px}
.topnote__btn:hover{opacity:.92}
.topnote__close{flex-shrink:0;background:transparent;border:none;color:#fff;cursor:pointer;padding:4px;display:inline-flex;opacity:.85}
.topnote__close .icon{width:18px;height:18px}
.topnote__close:hover{opacity:1}
@media (max-width:560px){.topnote.is-open{max-height:160px}.topnote__txt{font-size:13px}.topnote__btn{padding:7px 12px;font-size:13px}}

/* Anexo em mensagens de suporte */
.sup-anexo-label{display:inline-flex;align-items:center;gap:6px;margin-top:6px;font-size:13px;color:#555}
.sup-anexo-label .icon{width:14px;height:14px}
.sup-anexo-label small{color:#969899;font-weight:400}
.tanexo{display:inline-flex;align-items:center;gap:6px;margin-top:6px;padding:6px 10px;background:rgba(0,0,0,.06);border-radius:8px;font-size:13px;color:inherit;text-decoration:none;max-width:100%;word-break:break-all}
.tanexo .icon{width:15px;height:15px;flex-shrink:0}
.tanexo:hover{background:rgba(0,0,0,.12)}
.tmsg--admin .tanexo,.tmsg--eu .tanexo{background:rgba(255,255,255,.25)}

/* ── Check-in diário (modal) ───────────────────────────────────────────── */
.chkmodal{position:fixed;inset:0;z-index:1200;display:flex;align-items:center;justify-content:center;padding:16px;background:rgba(43,37,34,.55);backdrop-filter:blur(2px)}
.chkmodal[hidden]{display:none}
.chkmodal__box{position:relative;width:100%;max-width:560px;max-height:92vh;overflow:auto;background:#fff;border-radius:22px;padding:22px 20px 18px;box-shadow:0 24px 60px rgba(0,0,0,.3)}
.chkmodal__close{position:absolute;top:12px;right:12px;border:none;background:#f0ece8;color:#7a6f68;width:34px;height:34px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center}
.chkmodal__close:hover{background:#e6ded7}
.chkmodal__head{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.chkmodal__cal{width:42px;height:42px;border-radius:12px;background:var(--verde);color:#fff;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.chkmodal__cal .icon{width:22px;height:22px}
.chkmodal__head h3{margin:0;font-size:1.35rem;color:var(--texto)}
.chkmodal__head p{margin:2px 0 0;color:var(--cinza);font-size:.92rem}
.chkmodal__flash{display:flex;align-items:center;gap:8px;padding:10px 12px;border-radius:12px;font-size:.92rem;margin-bottom:14px}
.chkmodal__flash--ok{background:rgba(0,117,0,.1);color:#0a6b32}
.chkmodal__flash--err{background:rgba(204,0,0,.08);color:#a31515}
.chkmodal__flash .icon{flex-shrink:0}
.chkmodal__days{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;margin-bottom:14px}
.chkday{display:flex;flex-direction:column;align-items:center;gap:6px;padding:10px 2px;background:#fbf6ef;border:1.5px solid #f0e6da;border-radius:12px;text-align:center}
.chkday__coin{width:30px;height:30px;border-radius:50%;background:#f6d98a;color:#b8860b;display:flex;align-items:center;justify-content:center}
.chkday__coin .icon{width:17px;height:17px}
.chkday__lbl{font-size:.66rem;color:#8a7f76;font-weight:700}
.chkday.is-done{background:rgba(0,117,0,.08);border-color:rgba(0,117,0,.3)}
.chkday.is-done .chkday__coin{background:var(--verde);color:#fff}
.chkday.is-today{border-color:var(--laranja);box-shadow:0 0 0 2px rgba(218,100,56,.18)}
.chkday.is-today .chkday__coin{background:var(--laranja);color:#fff}
.chkmodal__weeks{display:grid;grid-template-columns:repeat(4,1fr);gap:6px;margin-bottom:12px}
.chkweek{display:flex;flex-direction:column;align-items:center;gap:2px;padding:8px 2px;background:#fbf6ef;border:1.5px solid #f0e6da;border-radius:12px;text-align:center}
.chkweek__val{font-size:.78rem;font-weight:800;color:#b8860b}
.chkweek__lbl{font-size:.62rem;color:#8a7f76;font-weight:700}
.chkweek.is-current{background:rgba(218,100,56,.1);border-color:var(--laranja)}
.chkweek.is-current .chkweek__val{color:var(--laranja-escuro)}
.chkmodal__hint{font-size:.8rem;color:var(--cinza);text-align:center;margin:0 0 14px}
.chkmodal__btn{font-size:1.05rem;padding:14px}
.chkmodal__btn.is-done{background:#eef2ee;color:#0a6b32;cursor:default}
.chkmodal__saldo{margin-top:14px;text-align:center;font-size:.92rem;color:var(--texto)}
.chkmodal__saldo strong{color:var(--laranja-escuro)}
.chkmodal__saldo .icon{color:#e0a516;vertical-align:-.2em}
@media (max-width:480px){
    .chkmodal__days{gap:4px}
    .chkday{padding:8px 1px}
    .chkday__coin{width:26px;height:26px}
    .chkday__lbl{font-size:.58rem}
    .chkweek__val{font-size:.66rem}
    .chkweek__lbl{font-size:.56rem}
}
