/* ============================================================
   BIKE BUNKER DESIGN SYSTEM — GLOBAL ENTRY
   Consumers link this single file. Imports only.
   ============================================================ */

/* vietnamese */

/* latin-ext */

/* latin */

/* vietnamese */

/* latin-ext */

/* latin */

/* vietnamese */

/* latin-ext */

/* latin */

/* vietnamese */

/* latin-ext */

/* latin */

/* vietnamese */

/* latin-ext */

/* latin */

/* vietnamese */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */



/* ============================================================
   BIKE BUNKER — COLOR TOKENS
   Monochrome-first: matte black, steel greys, warm paper.
   One restrained hi-vis "signal" accent for CTAs / active state.
   ============================================================ */

:root {
  /* --- Base ink & paper --------------------------------------- */
  --bb-black: #000000;          /* logo / pure black */
  --bb-ink: #0E0E10;            /* near-black, slightly warm — primary surface */
  --bb-ink-2: #16171A;          /* raised dark surface */
  --bb-paper: #F5F4F1;          /* warm off-white — seamless backdrop */
  --bb-white: #FFFFFF;

  /* --- Steel neutral scale (cool industrial grey) ------------- */
  --bb-steel-950: #0E0E10;
  --bb-steel-900: #15161A;
  --bb-steel-800: #232529;
  --bb-steel-700: #34373D;
  --bb-steel-600: #4B4F57;
  --bb-steel-500: #6B6F78;
  --bb-steel-400: #9398A1;
  --bb-steel-300: #BFC3CA;
  --bb-steel-200: #DDE0E4;
  --bb-steel-100: #ECEDEF;
  --bb-steel-50:  #F5F4F1;

  /* --- Chrome / metal hardware accents ------------------------ */
  --bb-chrome: #C7CBD1;         /* polished steel latch */
  --bb-chrome-dark: #8A8F98;

  /* --- Signal: hi-vis amber (secure cargo / caution) ---------- */
  --bb-signal-700: #B07E1E;
  --bb-signal-600: #C9922F;     /* press / hover-dark */
  --bb-signal-500: #EBB54A;     /* base accent */
  --bb-signal-400: #F4C766;
  --bb-signal-300: #F8D88F;
  --bb-signal-100: #FBEFCF;
  --bb-signal-tint: #FCF6E6;    /* faint amber wash */

  /* --- Semantic (forms / status) ------------------------------ */
  --bb-danger: #D64533;
  --bb-danger-tint: #FBE9E6;
  --bb-success: #3E8E5A;
  --bb-success-tint: #E7F2EB;
  --bb-info: #3D6FB0;
  --bb-info-tint: #E8EFF7;

  /* ============================================================
     SEMANTIC ALIASES — reference these in components
     ============================================================ */

  /* Surfaces */
  --surface-page: var(--bb-paper);
  --surface-card: var(--bb-white);
  --surface-sunken: var(--bb-steel-100);
  --surface-inverse: var(--bb-ink);        /* dark "bunker" sections */
  --surface-inverse-2: var(--bb-ink-2);

  /* Text */
  --text-strong: var(--bb-ink);
  --text-body: var(--bb-steel-700);
  --text-muted: var(--bb-steel-500);
  --text-faint: var(--bb-steel-400);
  --text-on-dark: var(--bb-paper);
  --text-on-dark-muted: var(--bb-steel-400);
  --text-on-signal: var(--bb-ink);

  /* Borders & rules */
  --border-hairline: var(--bb-steel-200);
  --border-default: var(--bb-steel-300);
  --border-strong: var(--bb-ink);          /* signature framed border */
  --border-on-dark: rgba(255, 255, 255, 0.14);

  /* Interactive */
  --action-primary: var(--bb-ink);
  --action-primary-hover: var(--bb-steel-800);
  --action-signal: var(--bb-signal-500);
  --action-signal-hover: var(--bb-signal-600);
  --focus-ring: var(--bb-signal-500);
}

/* ============================================================
   BIKE BUNKER — TYPOGRAPHY TOKENS
   Display/UI: Archivo (industrial grotesque, heavy weights).
   Technical accent: Spline Sans Mono (spec-sheet labels, eyebrows).
   Fonts loaded via Google Fonts in styles.css.
   NOTE: the wordmark uses custom stencil lettering; Archivo Black
   is the closest system substitute for headline display.
   ============================================================ */

:root {
  /* --- Families ----------------------------------------------- */
  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Spline Sans Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* --- Weights ------------------------------------------------- */
  --fw-regular: 400;   /* @kind font */
  --fw-medium: 500;    /* @kind font */
  --fw-semibold: 600;  /* @kind font */
  --fw-bold: 700;      /* @kind font */
  --fw-extrabold: 800; /* @kind font */
  --fw-black: 900;     /* @kind font */

  /* --- Fluid display scale (clamp) ---------------------------- */
  --fs-display-xl: clamp(3.5rem, 8vw, 7rem);    /* @kind font */
  --fs-display-lg: clamp(2.75rem, 5.5vw, 4.5rem); /* @kind font */
  --fs-display-md: clamp(2rem, 4vw, 3rem);      /* @kind font */
  --fs-display-sm: clamp(1.625rem, 3vw, 2.25rem); /* @kind font */

  /* --- Static UI scale ---------------------------------------- */
  --fs-h1: 2.5rem;
  --fs-h2: 2rem;
  --fs-h3: 1.5rem;
  --fs-h4: 1.25rem;
  --fs-lg: 1.125rem;
  --fs-base: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.75rem;
  --fs-2xs: 0.6875rem;          /* mono micro-labels */

  /* --- Line heights ------------------------------------------- */
  --lh-tight: 0.95;    /* @kind font */
  --lh-snug: 1.1;      /* @kind font */
  --lh-heading: 1.15;  /* @kind font */
  --lh-base: 1.55;     /* @kind font */
  --lh-relaxed: 1.7;   /* @kind font */

  /* --- Letter spacing ----------------------------------------- */
  --ls-display: -0.02em; /* @kind font */
  --ls-tight: -0.01em;   /* @kind font */
  --ls-normal: 0;        /* @kind font */
  --ls-label: 0.08em;    /* @kind font */
  --ls-eyebrow: 0.22em;  /* @kind font */

  /* --- Semantic aliases --------------------------------------- */
  --text-eyebrow-size: var(--fs-2xs);
  --text-eyebrow-tracking: var(--ls-eyebrow);
}

/* ------------------------------------------------------------------
   Optional helper classes (components mostly use the vars directly)
   ------------------------------------------------------------------ */
.bb-display {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}

.bb-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow-size);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
}

.bb-label {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

/* ============================================================
   BIKE BUNKER — SPACING & LAYOUT TOKENS
   4px base grid. Industrial, structured rhythm.
   ============================================================ */

:root {
  /* --- Space scale (4px base) --------------------------------- */
  --space-0: 0;
  --space-1: 0.25rem;   /* 4 */
  --space-2: 0.5rem;    /* 8 */
  --space-3: 0.75rem;   /* 12 */
  --space-4: 1rem;      /* 16 */
  --space-5: 1.25rem;   /* 20 */
  --space-6: 1.5rem;    /* 24 */
  --space-8: 2rem;      /* 32 */
  --space-10: 2.5rem;   /* 40 */
  --space-12: 3rem;     /* 48 */
  --space-16: 4rem;     /* 64 */
  --space-20: 5rem;     /* 80 */
  --space-24: 6rem;     /* 96 */
  --space-32: 8rem;     /* 128 */

  /* --- Layout ------------------------------------------------- */
  --container-max: 1240px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 4rem);  /* @kind spacing */
  --section-y: clamp(4rem, 9vw, 8rem);  /* @kind spacing */

  /* --- Grid --------------------------------------------------- */
  --grid-cols: 12;  /* @kind other */
  --grid-gap: var(--space-6);
}

/* ============================================================
   BIKE BUNKER — EFFECTS: RADII, BORDERS, SHADOWS, MOTION
   Squared & tough. Crisp hard shadows. Framed-border signature.
   ============================================================ */

:root {
  /* --- Corner radii (modest — industrial toughness) ----------- */
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-pill: 999px;

  /* --- Border widths ------------------------------------------ */
  --border-w-hair: 1px;
  --border-w: 1.5px;
  --border-w-frame: 2px;        /* signature framed border */
  --border-w-heavy: 3px;

  /* --- Shadows (crisp, low-blur, neutral-cool) ---------------- */
  --shadow-xs: 0 1px 2px rgba(14, 14, 16, 0.06);
  --shadow-sm: 0 1px 3px rgba(14, 14, 16, 0.08), 0 1px 2px rgba(14, 14, 16, 0.06);
  --shadow-md: 0 4px 12px rgba(14, 14, 16, 0.10), 0 2px 4px rgba(14, 14, 16, 0.06);
  --shadow-lg: 0 12px 28px rgba(14, 14, 16, 0.14), 0 4px 8px rgba(14, 14, 16, 0.08);
  --shadow-xl: 0 24px 60px rgba(14, 14, 16, 0.20);
  --shadow-inset: inset 0 1px 2px rgba(14, 14, 16, 0.12);
  --shadow-signal: 0 4px 16px rgba(235, 181, 74, 0.35);

  /* --- Focus ring --------------------------------------------- */
  --ring-w: 3px;       /* @kind spacing */
  --ring-offset: 2px;  /* @kind spacing */
  --ring-color: var(--focus-ring);

  /* --- Motion ------------------------------------------------- */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);     /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);  /* @kind other */
  --ease-snap: cubic-bezier(0.34, 1.4, 0.5, 1);   /* @kind other */
  --dur-fast: 120ms;  /* @kind other */
  --dur-base: 200ms;  /* @kind other */
  --dur-slow: 360ms;  /* @kind other */

  /* --- Press / hover deltas ----------------------------------- */
  --press-scale: 0.97;  /* @kind other */
  --hover-lift: -2px;   /* @kind spacing */
}



/* Bike Bunker — portal: loja, carrinho, checkout, pedidos, detalhe e contrato.
   Mesmo vocabulário visual do portal (cards claros sobre --bb-paper). */

/* ───────── Fluxo de reserva (Confirmar · Contrato · Pagamento) ───────── */
.bbrent__single { max-width: 640px; display: flex; flex-direction: column; gap: 16px; }
.bbrent__single--center { margin-left: auto; margin-right: auto; width: 100%; }
.bbrent__paynote { display: flex; align-items: center; gap: 8px; font-size: 13px; line-height: 1.5; color: var(--text-muted); margin: 20px 0 20px; }
.bbrent__paynote i { width: 16px; height: 16px; flex: none; color: var(--bb-signal-600); }

/* respiro do callout "reserva confirmada" na conta */
.bbacc__booked { margin-bottom: 24px; }
/* sem barra de acento à esquerda nos callouts do portal */
.bbrent .bb-callout, .bbdetail .bb-callout, .bbacc__content .bb-callout, .bbacc__booked, .bbrent__hold { border-left: none !important; }

/* contrato — layout centrado */
.bbpayhead, .bbsign__hero { text-align: center; }
.bbpayhead { margin-bottom: 26px; }
.bbpayhead .bbsign__lead { margin-left: auto; margin-right: auto; }
.bbsign { max-width: 560px; margin: 8px auto 0; display: flex; flex-direction: column; gap: 22px; }
.bbsign__hero { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.bbsign__ic { width: 68px; height: 68px; border-radius: 999px; background: var(--bb-ink); color: var(--bb-signal-500); display: flex; align-items: center; justify-content: center; }
.bbsign__ic i { width: 32px; height: 32px; }
.bbsign__h { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; margin: 2px 0 0; color: var(--text-strong); }
.bbsign__lead { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0 auto; max-width: 46ch; }
.bbpayhead .bbsign__lead { margin-bottom: 8px; }
.bbsign__sentto { display: flex; align-items: center; gap: 12px; width: 100%; margin-top: 6px; padding: 14px 16px; background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-md); text-align: left; }
.bbsign__sentto > i { width: 20px; height: 20px; flex: none; color: var(--bb-signal-600); }
.bbsign__sentto > div { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.bbsign__sentk { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.bbsign__sentv { font-size: 14px; font-weight: 700; color: var(--text-strong); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bbsign__flow { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bbsign__stepc { display: flex; flex-direction: column; gap: 6px; padding: 18px 16px; background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-md); text-align: left; }
.bbsign__n { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--bb-signal-600); }
.bbsign__stepc b { font-size: 14px; font-weight: 700; color: var(--text-strong); }
.bbsign__stepc span { font-size: 12.5px; line-height: 1.5; color: var(--text-muted); }
.bbsign__resend { display: flex; justify-content: center; }
.bbsign__cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.bbsign__back { background: none; border: none; cursor: pointer; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--text-muted); padding: 4px; }
.bbsign__back:hover { color: var(--text-strong); }

@media (max-width: 560px) {
  .bbsign__flow { grid-template-columns: 1fr; }
}


/* cupom no resumo (sobre fundo escuro) */
.bbsum__disc { color: var(--bb-signal-500) !important; }
.bbsum__coupon { margin: 16px 0 4px; }
.bbsum__coupontoggle { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; cursor: pointer; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--bb-signal-500); padding: 0; }
.bbsum__coupontoggle i { width: 15px; height: 15px; }
.bbsum__couponrow { display: flex; gap: 8px; }
.bbsum__couponi { flex: 1; min-width: 0; background: rgba(255,255,255,.06); border: 1px solid var(--border-on-dark); border-radius: var(--radius-sm); padding: 10px 12px; color: var(--bb-paper); font-size: 13px; font-family: var(--font-mono); }
.bbsum__couponi::placeholder { color: var(--bb-steel-400); }
.bbsum__couponb { flex: none; background: var(--bb-white); color: var(--bb-ink); border: none; border-radius: var(--radius-sm); padding: 0 16px; font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; }
.bbsum__couponmsg { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; margin-top: 8px; }
.bbsum__couponmsg i { width: 14px; height: 14px; }
.bbsum__couponmsg.is-ok { color: var(--bb-signal-500); }
.bbsum__couponmsg.is-no { color: var(--bb-danger); }

/* PIX completo */
.bbpixfull { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.bbpixfull__brand { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.bbpixfull__brand i { width: 15px; height: 15px; color: var(--bb-signal-600); }
.bbpixfull__qr { width: 200px; height: 200px; background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.bbpixfull__qr i { width: 150px; height: 150px; color: var(--bb-ink); }
.bbpixfull__amt { font-family: var(--font-mono); font-size: 30px; font-weight: 600; color: var(--text-strong); }
.bbpixfull__timer { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 12px; color: var(--bb-danger); }
.bbpixfull__timer i { width: 14px; height: 14px; }
.bbpixfull__hint { font-size: 13px; line-height: 1.5; color: var(--text-muted); margin: 0; max-width: 40ch; }
.bbpixfull__code { display: flex; align-items: stretch; gap: 8px; width: 100%; background: var(--bb-paper); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 6px 6px 6px 14px; }
.bbpixfull__codet { flex: 1; min-width: 0; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; align-self: center; text-align: left; }
.bbpixfull__copy { flex: none; display: inline-flex; align-items: center; gap: 6px; background: var(--bb-ink); color: var(--bb-paper); border: none; border-radius: var(--radius-sm); padding: 9px 14px; font-family: var(--font-mono); font-size: 12px; font-weight: 600; cursor: pointer; }
.bbpixfull__copy.is-done { background: var(--bb-signal-600); color: var(--bb-ink); }
.bbpixfull__copy i { width: 14px; height: 14px; }

/* overlay de processamento */
.bbpayproc { position: fixed; inset: 0; z-index: 200; background: rgba(20,20,22,.86); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.bbpayproc__spin { color: var(--bb-signal-500); animation: bbspin 0.9s linear infinite; }
.bbpayproc__spin i { width: 36px; height: 36px; }
.bbpayproc__t { font-family: var(--font-mono); font-size: 14px; letter-spacing: .04em; color: var(--bb-paper); margin: 0; }
@keyframes bbspin { to { transform: rotate(360deg); } }

/* opções de endereço no checkout */
.bbship__opts { display: flex; flex-direction: column; gap: 10px; }
.bbship__opt { display: flex; align-items: flex-start; gap: 12px; text-align: left; padding: 14px 16px; background: var(--bb-white); border: 1.5px solid var(--border-default); border-radius: var(--radius-md); cursor: pointer; transition: border-color var(--dur-fast); }
.bbship__opt:hover { border-color: var(--bb-steel-500); }
.bbship__opt.is-on { border-color: var(--bb-ink); }
.bbship__radio { width: 18px; height: 18px; flex: none; margin-top: 2px; border-radius: 999px; border: 2px solid var(--border-strong, var(--bb-ink)); position: relative; }
.bbship__opt.is-on .bbship__radio { border-color: var(--bb-ink); }
.bbship__opt.is-on .bbship__radio::after { content: ""; position: absolute; inset: 3px; border-radius: 999px; background: var(--bb-signal-500); }
.bbship__optb { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.bbship__optk { font-size: 14px; font-weight: 700; color: var(--text-strong); }
.bbship__optv { font-size: 13px; line-height: 1.5; color: var(--text-muted); }

/* ───────── Upsell de acessório no Confirmar reserva ───────── */
.bbups__head { margin-bottom: 18px; }
.bbups__tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bb-ink); background: var(--bb-signal-500); padding: 5px 10px; border-radius: var(--radius-sm); margin-bottom: 12px; }
.bbups__tag i { width: 13px; height: 13px; }
.bbups__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bbups__card { display: flex; flex-direction: column; gap: 12px; padding: 14px; background: var(--bb-white); border: 1.5px solid var(--border-default); border-radius: var(--radius-md); transition: border-color var(--dur-fast); }
.bbups__card.is-on { border-color: var(--bb-ink); }
.bbups__nm { min-height: 2.2em; }
.bbups__card > .bbups__btn, .bbups__card > .bbups__stepper { margin-top: auto; }
.bbups__img { aspect-ratio: 4/3; border-radius: var(--radius-sm); background: var(--bb-steel-100, #eef0f2); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.bbups__img img { width: 100%; height: 100%; object-fit: cover; }
.bbups__b { display: flex; flex-direction: column; gap: 4px; }
.bbups__nm { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text-strong); line-height: 1.1; }
.bbups__pr { display: flex; align-items: baseline; gap: 8px; }
.bbups__pr s { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.bbups__pr b { font-family: var(--font-mono); font-size: 17px; font-weight: 600; color: var(--bb-signal-600); }
.bbups__btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px; border-radius: var(--radius-sm); border: 1.5px solid var(--bb-ink); background: var(--bb-white); color: var(--bb-ink); font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; cursor: pointer; transition: background var(--dur-fast), color var(--dur-fast); }
.bbups__btn i { width: 15px; height: 15px; }
.bbups__btn.is-on { background: var(--bb-ink); color: var(--bb-paper); }
.bbups__ship { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border-default); }
.bbups__shipk { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.bbups__shipopts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bbups__shipopt { display: flex; align-items: flex-start; gap: 11px; text-align: left; padding: 13px 14px; background: var(--bb-white); border: 1.5px solid var(--border-default); border-radius: var(--radius-md); cursor: pointer; transition: border-color var(--dur-fast); }
.bbups__shipopt:hover { border-color: var(--bb-steel-500); }
.bbups__shipopt.is-on { border-color: var(--bb-ink); }
.bbups__shipopt.is-on .bbship__radio { border-color: var(--bb-ink); }
.bbups__shipopt.is-on .bbship__radio::after { content: ""; position: absolute; inset: 3px; border-radius: 999px; background: var(--bb-signal-500); }
.bbups__shipb { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bbups__shipb b { font-size: 13.5px; font-weight: 700; color: var(--text-strong); }
.bbups__shipb span { font-size: 12px; color: var(--text-muted); }

@media (max-width: 560px) {
  .bbups__grid, .bbups__shipopts { grid-template-columns: 1fr; }
}

/* CEP + frete calculado no upsell */
.bbups__addr { margin-top: 14px; }
.bbups__cep { margin-top: 14px; }
.bbups__cepres { margin-top: 8px; min-height: 20px; }
.bbups__cepmsg { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; }
.bbups__cepmsg i { width: 15px; height: 15px; flex: none; }
.bbups__cepmsg.is-ok { color: var(--bb-signal-600); font-weight: 600; }
.bbups__cepmsg.is-muted { color: var(--text-muted); }
.bbspin { display: inline-flex; animation: bbspin 0.8s linear infinite; transform-origin: center; }
@keyframes bbspin { to { transform: rotate(360deg); } }

/* imagem clicável + stepper do upsell */
.bbups__img { position: relative; padding: 0; border: none; cursor: pointer; }
.bbups__zoom { position: absolute; right: 8px; bottom: 8px; width: 28px; height: 28px; border-radius: var(--radius-sm); background: rgba(20,20,22,.78); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--dur-fast); }
.bbups__zoom i { width: 15px; height: 15px; }
.bbups__img:hover .bbups__zoom { opacity: 1; }
.bbups__nm { background: none; border: none; padding: 0; text-align: left; cursor: pointer; }
.bbups__nm:hover { text-decoration: underline; text-underline-offset: 2px; }
.bbups__stepper { display: flex; align-items: center; justify-content: space-between; border: 1.5px solid var(--bb-ink); border-radius: var(--radius-sm); overflow: hidden; }
.bbups__stepper button { width: 40px; height: 40px; background: var(--bb-white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--bb-ink); transition: background var(--dur-fast); }
.bbups__stepper button:hover { background: var(--bb-steel-100, #eef0f2); }
.bbups__stepper button i { width: 15px; height: 15px; }
.bbups__stepper > span { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--text-strong); }
.bbups__stepper--lg { flex: none; width: 150px; }
.bbups__stepper--lg button { width: 48px; height: 48px; }

/* modal de preview do acessório */
.bbpeek { position: fixed; inset: 0; z-index: 300; background: rgba(18,18,20,.74); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 20px; animation: bbpeekin .16s ease-out; }
@keyframes bbpeekin { from { opacity: 0; } to { opacity: 1; } }
.bbpeek__box { position: relative; width: 100%; max-width: 820px; max-height: 90vh; overflow: auto; display: grid; grid-template-columns: 1.1fr 1fr; background: var(--bb-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.bbpeek__close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px; border-radius: 999px; background: rgba(20,20,22,.78); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.bbpeek__close i { width: 18px; height: 18px; }
.bbpeek__gallery { display: flex; flex-direction: column; background: var(--bb-steel-100, #eef0f2); }
.bbpeek__stage { position: relative; flex: 1; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.bbpeek__stage img { width: 100%; height: 100%; object-fit: cover; }
.bbpeek__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.92); border: 1px solid var(--border-default); color: var(--bb-ink); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--dur-fast); }
.bbpeek__nav:hover { background: #fff; }
.bbpeek__nav i { width: 20px; height: 20px; }
.bbpeek__nav--prev { left: 12px; }
.bbpeek__nav--next { right: 12px; }
.bbpeek__dots { display: flex; gap: 7px; justify-content: center; padding: 14px; }
.bbpeek__dot { width: 8px; height: 8px; border-radius: 999px; border: none; background: var(--bb-steel-400); cursor: pointer; padding: 0; transition: background var(--dur-fast), transform var(--dur-fast); }
.bbpeek__dot.is-on { background: var(--bb-ink); transform: scale(1.25); }
.bbpeek__info { display: flex; flex-direction: column; gap: 12px; padding: 30px 30px 28px; }
.bbpeek__nm { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.02; margin: 2px 0 0; color: var(--text-strong); }
.bbpeek__pr { display: flex; align-items: baseline; gap: 10px; }
.bbpeek__pr s { font-family: var(--font-mono); font-size: 15px; color: var(--text-muted); }
.bbpeek__pr b { font-family: var(--font-mono); font-size: 24px; font-weight: 600; color: var(--bb-signal-600); }
.bbpeek__blurb { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin: 2px 0 0; }
.bbpeek__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.bbpeek__added { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--bb-signal-600); }
.bbpeek__added i { width: 15px; height: 15px; }

@media (max-width: 640px) {
  .bbpeek__box { grid-template-columns: 1fr; max-height: 88vh; }
  .bbpeek__stage { aspect-ratio: 4/3; }
}


.bbfield-locked__ic { position: absolute; right: 14px; top: 34px; color: var(--text-muted); pointer-events: none; }
.bbfield-locked__ic i { width: 16px; height: 16px; }

/* Header — badge do carrinho */
.bbhdr__cartn { position: absolute; top: -3px; right: -4px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px; background: var(--bb-signal-500); color: var(--bb-ink); font-family: var(--font-mono); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* Thumb de produto (reutilizável) */
.bbprodimg { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-md); background: var(--bb-steel-100, #eef0f2); border: 1px solid var(--border-default); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.bbprodimg img { width: 100%; height: 100%; object-fit: cover; }
.bbprodimg > i { width: 34px; height: 34px; color: var(--bb-steel-400); }
.bbprodimg__out { position: absolute; top: 10px; left: 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; background: var(--bb-ink); color: var(--bb-paper); padding: 4px 8px; border-radius: var(--radius-sm); }
.bbprodimg--mini { width: 76px; height: 76px; flex: none; aspect-ratio: auto; }
.bbprodimg--mini > i { width: 26px; height: 26px; }
.bbprodimg--tiny { width: 46px; height: 46px; flex: none; aspect-ratio: auto; border-radius: var(--radius-sm); }
.bbprodimg--tiny > i { width: 20px; height: 20px; }
.bbprodimg--hero { aspect-ratio: 4/3; border-radius: var(--radius-lg); }
.bbprodimg--hero > i { width: 64px; height: 64px; }

/* ───────── Loja (grade) ───────── */
.bbshop { background: var(--bb-paper); color: var(--text-strong); min-height: calc(100vh - 70px); padding-bottom: var(--section-y); }
.bbshop__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.bbshop__hero { background: var(--bb-ink); color: var(--bb-paper); padding: clamp(2.5rem,5vw,4rem) 0 clamp(2rem,3vw,2.75rem); position: relative; overflow: hidden; }
.bbshop__hero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(var(--border-on-dark) 1px, transparent 1px), linear-gradient(90deg, var(--border-on-dark) 1px, transparent 1px); background-size: 56px 56px; opacity:.5; }
.bbshop__hero .bbshop__inner { position: relative; }
.bbshop__body { margin-top: 0; position: relative; padding-top: 30px; }
.bbshop__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.bbshop__chip { padding: 9px 16px; background: var(--bb-white); border: 1.5px solid var(--border-default); border-radius: 999px; cursor: pointer; font-family: var(--font-mono); font-size: 13px; color: var(--text-body); transition: border-color var(--dur-fast), background var(--dur-fast); }
.bbshop__chip:hover { border-color: var(--bb-steel-500); }
.bbshop__chip.is-on { border-color: var(--bb-ink); background: var(--bb-ink); color: var(--bb-paper); }
.bbshop__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.bbpcard { display: flex; flex-direction: column; gap: 0; text-align: left; background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast), box-shadow var(--dur-base); }
.bbpcard:hover { transform: translateY(-3px); border-color: var(--bb-ink); box-shadow: var(--shadow-md, var(--shadow-lg)); }
.bbpcard.is-out { opacity: .72; }
.bbpcard .bbprodimg { border: none; border-bottom: 1px solid var(--border-default); border-radius: 0; aspect-ratio: 4/3; }
.bbpcard__b { display: flex; flex-direction: column; gap: 4px; padding: 16px 18px 18px; }
.bbpcard__cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.bbpcard__nm { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text-strong); }
.bbpcard__pr { font-family: var(--font-mono); font-size: 17px; font-weight: 600; color: var(--bb-signal-600); margin-top: 4px; }

/* ───────── Produto ───────── */
.bbprod { background: var(--bb-paper); color: var(--text-strong); padding: clamp(1.5rem,3vw,2.5rem) 0 var(--section-y); min-height: calc(100vh - 70px); }
.bbprod__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.bbprod__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: start; margin-top: 14px; }
.bbprod__gallery { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 90px; }
.bbprod__thumbs { display: flex; gap: 10px; }
.bbprod__thumb { width: 72px; height: 72px; border-radius: var(--radius-md); overflow: hidden; border: 2px solid var(--border-default); background: var(--bb-steel-100, #eef0f2); cursor: pointer; padding: 0; transition: border-color var(--dur-fast); }
.bbprod__thumb img { width: 100%; height: 100%; object-fit: cover; }
.bbprod__thumb.is-on { border-color: var(--bb-ink); }
.bbprod__info { display: flex; flex-direction: column; gap: 14px; }
.bbprod__cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.bbprod__nm { font-size: clamp(1.5rem,2.6vw,2.1rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.02; margin: 2px 0 0; }
.bbprod__pr { font-family: var(--font-mono); font-size: 26px; font-weight: 600; color: var(--bb-signal-600); }
.bbprod__blurb { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.bbprod__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px 0; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
.bbprod__meta > div { display: flex; flex-direction: column; gap: 4px; }
.bbprod__metak { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.bbprod__metav { font-size: 14px; font-weight: 600; color: var(--text-strong); }
.bbprod__sizes { display: flex; flex-direction: column; gap: 10px; }
.bbprod__sizerow { display: flex; flex-wrap: wrap; gap: 8px; }
.bbsize { min-width: 46px; padding: 10px 12px; background: var(--bb-white); border: 1.5px solid var(--border-default); border-radius: var(--radius-md); cursor: pointer; font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--text-body); transition: border-color var(--dur-fast), background var(--dur-fast); }
.bbsize:hover { border-color: var(--bb-steel-500); }
.bbsize.is-on { border-color: var(--bb-ink); background: var(--bb-ink); color: var(--bb-paper); }
.bbprod__qty { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.bbstepper { display: inline-flex; align-items: center; gap: 2px; border: 1.5px solid var(--border-default); border-radius: var(--radius-md); overflow: hidden; }
.bbstepper button { width: 42px; height: 42px; background: var(--bb-white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-strong); transition: background var(--dur-fast); }
.bbstepper button:hover { background: var(--bb-steel-100, #eef0f2); }
.bbstepper button i { width: 16px; height: 16px; }
.bbstepper > span { min-width: 38px; text-align: center; font-family: var(--font-mono); font-size: 15px; font-weight: 600; }
.bbstepper--sm button { width: 32px; height: 32px; }
.bbstepper--sm button i { width: 14px; height: 14px; }
.bbstepper--sm > span { min-width: 30px; font-size: 13px; }
.bbprod__cta { margin-top: 6px; }

/* ───────── Carrinho ───────── */
.bbcartv { background: var(--bb-paper); color: var(--text-strong); padding: clamp(1.5rem,3vw,2.5rem) 0 var(--section-y); min-height: calc(100vh - 70px); }
.bbcartv__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.bbcartv__grid { display: grid; grid-template-columns: 1.6fr 0.9fr; gap: clamp(1.5rem,3vw,2.5rem); align-items: start; }
.bbcartv__items { display: flex; flex-direction: column; gap: 12px; }
.bbcitem { display: flex; gap: 16px; background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 16px; }
.bbcitem__b { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; }
.bbcitem__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.bbcitem__cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.bbcitem__nm { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; margin: 3px 0 0; }
.bbcitem__size { display: inline-block; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.bbcitem__rm { background: none; border: none; cursor: pointer; color: var(--text-muted); padding: 4px; flex: none; transition: color var(--dur-fast); }
.bbcitem__rm:hover { color: var(--bb-danger); }
.bbcitem__rm i { width: 18px; height: 18px; }
.bbcitem__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bbcitem__pr { font-family: var(--font-mono); font-size: 18px; font-weight: 600; color: var(--text-strong); }

/* resumo — itens */
.bbsum__items { display: flex; flex-direction: column; gap: 12px; margin: 16px 0; padding-bottom: 16px; border-bottom: 1px solid var(--border-on-dark); }
.bbsum__item { display: flex; align-items: center; gap: 11px; }
.bbsum__item .bbprodimg { border-color: var(--border-on-dark); background: rgba(255,255,255,.06); }
.bbsum__itemb { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.bbsum__itemn { font-size: 13px; font-weight: 700; color: var(--bb-paper); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bbsum__itemq { font-family: var(--font-mono); font-size: 11px; color: var(--bb-steel-400); }
.bbsum__itempr { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--bb-paper); white-space: nowrap; }

/* ───────── Pedido confirmado ───────── */
.bbdone { background: var(--bb-paper); min-height: calc(100vh - 70px); display: flex; align-items: center; justify-content: center; padding: clamp(2rem,5vw,4rem) var(--gutter); }
.bbdone__card { max-width: 520px; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(2rem,4vw,3rem); }
.bbdone__check { width: 72px; height: 72px; border-radius: 999px; background: var(--bb-ink); color: var(--bb-signal-500); display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.bbdone__check i { width: 38px; height: 38px; }
.bbdone__h { font-size: clamp(1.5rem,3vw,2rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; }
.bbdone__p { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; max-width: 42ch; }
.bbdone__tag { font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em; background: var(--bb-paper); border: 1px solid var(--border-default); border-radius: var(--radius-sm); padding: 10px 16px; color: var(--text-strong); margin: 4px 0; }
.bbdone__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 6px; }

/* ───────── Detalhe (pedido & reserva) — redesenhado ───────── */
.bbdetail { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }
.bbdetail__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin: 14px 0 22px; }
.bbdetail__hero { display: flex; align-items: center; justify-content: space-between; gap: 28px 40px; flex-wrap: wrap; background: var(--bb-ink); color: var(--bb-paper); border-radius: var(--radius-lg); padding: 26px 30px; margin-bottom: 20px; }
.bbdetail__heroprod { display: flex; align-items: center; gap: 16px; }
.bbdetail__herologo { width: 54px; height: 54px; flex: none; border-radius: var(--radius-md); background: var(--bb-signal-500); color: var(--bb-ink); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 18px; font-weight: 700; }
.bbdetail__herologo i { width: 26px; height: 26px; }
.bbdetail__herok { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--bb-steel-400); }
.bbdetail__heron { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; margin: 4px 0 0; color: var(--bb-paper); }
.bbdetail__heron em { font-family: var(--font-mono); font-size: 13px; font-style: normal; font-weight: 600; color: var(--bb-steel-300); margin-left: 6px; }
.bbdetail__heronote { font-size: 13px; line-height: 1.5; color: var(--bb-steel-300); margin: 6px 0 0; max-width: 46ch; }
.bbdetail__herostats { display: flex; gap: 36px; }
.bbdetail__herostats > div { display: flex; flex-direction: column; gap: 6px; }
.bbdetail__herostats b { font-size: 16px; font-weight: 700; color: var(--bb-paper); white-space: nowrap; }
.bbdetail__herostats b.is-ok { color: var(--bb-signal-500); }
.bbdetail__herostats b.is-wait { color: var(--bb-signal-300, #f3c969); }
.bbdetail__heroval { font-family: var(--font-mono); font-size: 20px !important; color: var(--bb-signal-500) !important; white-space: nowrap; }
.bbdetail__track { text-align: right; }
.bbdetail__track b { font-size: 15px; color: var(--bb-paper); }

.bbdetail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bbdetail__grid + .bbdetail__grid { margin-top: 20px; }
.bbdetail__card { background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 26px 28px; }
.bbdetail__card--wide { grid-column: 1 / -1; }
.bbdetail > .bbdetail__card--wide { margin-bottom: 20px; }
.bbdetail__cardh { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--text-strong); margin: 0 0 16px; }
.bbdetail__cardh i { width: 17px; height: 17px; color: var(--bb-signal-600); }

.bbdetail__daterow { display: flex; align-items: stretch; gap: 18px; }
.bbdetail__dateitem { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 18px 20px; background: var(--bb-paper); border: 1px solid var(--border-default); border-radius: var(--radius-md); }
.bbdetail__datek { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.bbdetail__datek i { width: 14px; height: 14px; color: var(--bb-signal-600); }
.bbdetail__datev { font-size: 16px; font-weight: 700; color: var(--text-strong); text-transform: capitalize; white-space: nowrap; }
.bbdetail__datearrow { display: flex; align-items: center; color: var(--text-muted); flex: none; }
.bbdetail__datearrow i { width: 18px; height: 18px; }
.bbdetail__sign { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .03em; color: var(--text-body); }
.bbdetail__sign i { width: 16px; height: 16px; color: var(--bb-signal-600); }

.bbdetail__store h4 { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; margin: 0; }
.bbdetail__store p { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); margin: 5px 0 0; }
.bbdetail__hours { margin-top: 14px; padding-top: 4px; border-top: 1px solid var(--border-default); }
.bbdetail__hr { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 7px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; color: var(--text-strong); }
.bbdetail__hr:last-child { border-bottom: none; }
.bbdetail__hr > span:first-child { color: var(--text-muted); }
.bbdetail__hr > span:last-child { font-family: var(--font-mono); font-weight: 600; }
.bbdetail__hr.is-closed > span { color: var(--bb-danger); }

.bbdetail__nfrow { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.bbdetail__nfmeta { display: flex; flex-wrap: wrap; gap: 18px 36px; flex: 1; min-width: 0; }
.bbdetail__nfmeta > div { display: flex; flex-direction: column; gap: 5px; }
.bbdetail__nfmeta b { font-size: 15px; font-weight: 700; color: var(--text-strong); }
.bbdetail__nfkey { flex-basis: 100%; }
.bbdetail__nfkey b { font-size: 12px; letter-spacing: .02em; color: var(--text-body); word-break: break-all; }

.bbdetail__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

@media (max-width: 760px) {
  .bbdetail__grid { grid-template-columns: 1fr; }
  .bbdetail__hero { flex-direction: column; align-items: stretch; }
  .bbdetail__herostats { justify-content: space-between; }
  .bbdetail__track { text-align: left; }
}

/* ───────── Detalhe (legado, ainda usado em telas antigas) ───────── */
.bbacc__inner--single { display: block; max-width: 760px; }
.bbod { display: flex; flex-direction: column; gap: 16px; }
.bbod__note { font-size: 14px; line-height: 1.55; color: var(--text-body); margin: 0; }
.bbod__kv { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--border-default); }
.bbod__kv:last-child { border-bottom: none; }
.bbod__kv > span { font-size: 13px; color: var(--text-muted); }
.bbod__kv > b { font-size: 14px; font-weight: 700; color: var(--text-strong); text-align: right; }
.bbod__kv .mono { font-family: var(--font-mono); }
.bbod__kv--total > span { font-size: 14px; color: var(--text-strong); font-weight: 700; }
.bbod__kv--total > b { font-size: 20px; color: var(--bb-signal-600); }
.bbod__items { display: flex; flex-direction: column; gap: 14px; }
.bbod__item { display: flex; align-items: center; gap: 14px; }
.bbod__itemb { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.bbod__itemn { font-size: 15px; font-weight: 700; color: var(--text-strong); }
.bbod__itemq { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.bbod__itempr { font-family: var(--font-mono); font-size: 15px; font-weight: 600; color: var(--text-strong); white-space: nowrap; flex: none; }
.bbod__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bbod__addr { font-size: 13.5px; line-height: 1.5; color: var(--text-body); margin-top: 6px; }
.bbod__sign { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-body); }
.bbod__sign i { width: 16px; height: 16px; color: var(--bb-signal-600); }
.bbod__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

/* horários */
.bbhours { display: flex; flex-direction: column; gap: 0; margin-top: 10px; border-top: 1px solid var(--border-default); }
.bbhours__r { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border-default); font-size: 13.5px; }
.bbhours__r > span:first-child { color: var(--text-muted); }
.bbhours__r > span:last-child { font-family: var(--font-mono); font-weight: 600; color: var(--text-strong); }
.bbhours__r .is-closed { color: var(--bb-danger); }

/* contrato (etapa da locação) */
.bbcontract { display: flex; flex-direction: column; gap: 18px; padding: 22px; background: var(--bb-paper); border: 1px solid var(--border-default); border-radius: var(--radius-lg); }
.bbcontract__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bbcontract__ic { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--bb-ink); color: var(--bb-signal-500); display: flex; align-items: center; justify-content: center; }
.bbcontract__ic i { width: 24px; height: 24px; }
.bbcontract__sentto { display: flex; flex-direction: column; gap: 4px; padding: 14px 16px; background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-md); }
.bbcontract__sentk { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.bbcontract__sentv { font-size: 15px; font-weight: 700; color: var(--text-strong); }
.bbcontract__flow { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.bbcontract__flow li { display: flex; gap: 14px; align-items: flex-start; }
.bbcontract__n { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--bb-signal-600); padding-top: 1px; }
.bbcontract__t { display: flex; flex-direction: column; gap: 2px; }
.bbcontract__t b { font-size: 14px; font-weight: 700; color: var(--text-strong); }
.bbcontract__t span { font-size: 13px; color: var(--text-muted); }

/* reserva — código do bunker no título */
.bbresv__bunker { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: .02em; }

/* responsivo */
@media (max-width: 920px) {
  .bbshop__grid { grid-template-columns: 1fr 1fr; }
  .bbprod__grid { grid-template-columns: 1fr; }
  .bbprod__gallery { position: static; }
  .bbcartv__grid { grid-template-columns: 1fr; }
  .bbod__cols { grid-template-columns: 1fr; }
  .bbacc__inner--single { max-width: none; }
}
@media (max-width: 560px) {
  .bbshop__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bbprod__meta { grid-template-columns: 1fr; }
  .bbdone__btns { flex-direction: column; align-self: stretch; }
  .bbdone__btns > * { width: 100%; }
}



  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { margin: 0; background: var(--bb-paper); color: var(--text-strong); font-family: var(--font-sans); }
  img { display: block; max-width: 100%; }
  h1,h2,h3,h4 { margin: 0; }
  a { text-decoration: none; color: inherit; }

  .bbsec__title { font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.02; font-size: clamp(1.9rem, 3.6vw, 3rem); color: var(--text-strong); margin-top: 10px; }
  .bbsec__title--light { max-width: 16ch; }
  .bbsec__title--ondark { color: #ffffff; }

  /* Header */
  .bbhdr { position: sticky; top: 0; z-index: 50; background: var(--bb-ink); border-bottom: 1px solid var(--border-on-dark); transition: background var(--dur-base), box-shadow var(--dur-base); }
  .bbhdr--scrolled { box-shadow: var(--shadow-lg); background: rgba(14,14,16,0.92); backdrop-filter: blur(10px); }
  .bbhdr__inner { max-width: var(--container-max); margin: 0 auto; padding: 14px var(--gutter); display: flex; align-items: center; gap: 24px; }
  .bbhdr__logo img { height: 40px; width: auto; }
  .bbhdr__nav { display: flex; gap: 28px; margin-left: 12px; }
  .bbhdr__nav a { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--bb-steel-300); transition: color var(--dur-fast); }
  .bbhdr__nav a:hover { color: var(--bb-signal-500); }
  .bbhdr__actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
  .bbhdr__cart { position: relative; background: none; border: none; color: var(--bb-paper); cursor: pointer; padding: 6px; display: flex; }
  .bbhdr__cart i { width: 22px; height: 22px; }
  .bbhdr__cartbadge { position: absolute; top: -4px; right: -6px; }
  .bbhdr__burger { display: none; background: none; border: none; color: var(--bb-paper); cursor: pointer; padding: 6px; }
  .bbhdr__burger i { width: 26px; height: 26px; }
  .bbhdr__mobile { display: none; flex-direction: column; gap: 14px; padding: 18px var(--gutter) 24px; background: var(--bb-ink); border-top: 1px solid var(--border-on-dark); }
  .bbhdr__mobile a { font-family: var(--font-mono); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--bb-steel-200); }

  /* Hero */
  .bbhero { background: var(--bb-ink); color: var(--bb-paper); padding: clamp(3rem,6vw,6rem) 0 clamp(4rem,7vw,7rem); position: relative; overflow: hidden; }
  .bbhero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(var(--border-on-dark) 1px, transparent 1px), linear-gradient(90deg, var(--border-on-dark) 1px, transparent 1px); background-size: 64px 64px; opacity: .5; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%); }
  .bbhero__grid { position: relative; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,4vw,4.5rem); align-items: center; }
  .bbhero__title { font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.92; font-size: clamp(3rem, 6.2vw, 5.6rem); margin: 20px 0 22px; }
  .bbhero__hl { color: var(--bb-signal-500); }
  .bbhero__sub { font-size: clamp(1rem,1.4vw,1.2rem); line-height: 1.6; color: var(--bb-steel-300); max-width: 46ch; margin: 0 0 30px; }
  .bbhero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
  .bbhero__ghost { color: var(--bb-paper) !important; border-color: var(--bb-paper) !important; }
  .bbhero__chips { display: flex; gap: 10px; flex-wrap: wrap; }
  .bbhero__chips .bb-tag { color: var(--bb-steel-200) !important; border-color: var(--border-on-dark) !important; }
  .bbhero__media { position: relative; }
  .bbhero__frame { padding: 10px; }
  .bbhero__frame img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
  .bbhero__tag { position: absolute; left: -10px; bottom: 22px; background: var(--bb-signal-500); color: var(--bb-ink); padding: 8px 14px; border-radius: var(--radius-sm); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
  .bbhero__tagk { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; opacity: .7; }
  .bbhero__tagv { font-family: var(--font-mono); font-size: 15px; font-weight: 600; }

  /* Specs — datasheet band */
  .bbspecs { background: var(--bb-ink); color: var(--bb-paper); padding: 0 0 clamp(4rem,7vw,7rem); }
  .bbspecs__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
  .bbspecs__head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,4rem); align-items: end; padding: clamp(2.5rem,4vw,3.5rem) 0 clamp(2rem,3vw,2.75rem); border-top: 1px solid var(--border-on-dark); }
  .bbspecs__lead { font-size: 15px; line-height: 1.65; color: var(--bb-steel-300); max-width: 46ch; margin: 0; justify-self: end; }
  .bbspecs__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--border-on-dark); }
  .bbspec { display: flex; flex-direction: column; gap: 8px; padding: 30px 26px 32px; border-right: 1px solid var(--border-on-dark); }
  .bbspec:last-child { border-right: none; }
  .bbspec__idx { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; color: var(--bb-signal-500); }
  .bbspec__k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bb-steel-400); }
  .bbspec__v { font-family: var(--font-mono); font-weight: 600; font-size: clamp(34px,3.4vw,46px); line-height: .95; letter-spacing: -0.02em; color: var(--bb-paper); margin-top: 4px; }
  .bbspec__v em { font-style: normal; font-size: 18px; color: var(--bb-steel-400); margin-left: 5px; }
  .bbspec__d { font-size: 13px; line-height: 1.55; color: var(--bb-steel-400); margin-top: 6px; max-width: 26ch; }

  /* Features */
  .bbfeat { padding: var(--section-y) 0; }
  .bbfeat__head { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter) 40px; }
  .bbfeat__grid { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
  .bbfeat__card { display: flex; flex-direction: column; gap: 10px; }
  .bbfeat__icon { width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--bb-ink); color: var(--bb-signal-500); display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
  .bbfeat__icon i { width: 24px; height: 24px; }
  .bbfeat__card h3 { font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
  .bbfeat__card p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }

  /* Gallery */
  .bbgal { background: var(--bb-ink); color: var(--bb-paper); padding: var(--section-y) 0; }
  .bbgal__head { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter) 36px; }
  .bbgal__grid { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
  .bbgal__cell { position: relative; margin: 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-on-dark); }
  .bbgal__cell--wide { grid-column: span 2; }
  .bbgal__cell img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; filter: saturate(.92); transition: transform var(--dur-slow) var(--ease-out); }
  .bbgal__cell:hover img { transform: scale(1.04); }
  .bbgal__cell figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--bb-paper); background: linear-gradient(transparent, rgba(0,0,0,.75)); }

  /* CTA */
  .bbcta { padding: var(--section-y) 0; max-width: var(--container-max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
  .bbcta__panel { padding: clamp(1.5rem,3vw,3rem); }
  .bbcta__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
  .bbcta__title { font-size: clamp(1.9rem,3.4vw,2.8rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; margin: 10px 0 14px; }
  .bbcta__sub { font-size: 16px; line-height: 1.6; color: var(--text-body); max-width: 40ch; margin: 0 0 18px; }
  .bbcta__buy { background: var(--bb-ink); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 10px; }
  .bbcta__action { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .bbcta__tag { display: flex; align-items: baseline; gap: 9px; }
  .bbcta__tagk { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
  .bbcta__tagv { font-family: var(--font-mono); font-size: clamp(38px,5vw,52px); font-weight: 600; color: var(--text-strong); line-height: 1; letter-spacing: -0.02em; }
  .bbcta__tagd { font-family: var(--font-mono); font-size: 16px; color: var(--text-muted); }
  .bbcta__pricek { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bb-steel-400); }
  .bbcta__price { font-family: var(--font-mono); font-weight: 600; font-size: 40px; color: var(--bb-paper); line-height: 1; }
  .bbcta__price span { font-size: 22px; color: var(--bb-steel-400); }
  .bbcta__price-note { font-size: 13px; color: var(--bb-steel-400); margin-bottom: 8px; }

  /* Footer */
  .bbftr { background: var(--bb-black); color: var(--bb-steel-300); padding: clamp(3rem,5vw,4.5rem) 0 26px; }
  .bbftr__top { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--border-on-dark); }
  .bbftr__brand img { height: 54px; margin-bottom: 16px; }
  .bbftr__brand p { font-size: 14px; line-height: 1.6; max-width: 34ch; margin: 0; color: var(--bb-steel-400); }
  .bbftr__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .bbftr__cols h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--bb-steel-500); margin-bottom: 14px; }
  .bbftr__cols a { display: block; font-size: 14px; color: var(--bb-steel-300); padding: 5px 0; transition: color var(--dur-fast); }
  .bbftr__cols a:hover { color: var(--bb-signal-500); }
  .bbftr__bottom { max-width: var(--container-max); margin: 24px auto 0; padding: 0 var(--gutter); display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--bb-steel-600); }

  /* How it works */
  .bbhow { padding: var(--section-y) 0; }
  .bbhow__head { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter) 44px; }
  .bbhow__grid { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .bbhow__step { display: flex; flex-direction: column; gap: 12px; padding-top: 20px; border-top: 2px solid var(--bb-ink); }
  .bbhow__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--bb-signal-500); }
  .bbhow__icon { width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--bb-ink); color: var(--bb-signal-500); display: flex; align-items: center; justify-content: center; margin: 2px 0 2px; }
  .bbhow__icon i { width: 24px; height: 24px; }
  .bbhow__step h3 { font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
  .bbhow__step p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }

  /* Pricing */
  .bbprice { background: var(--bb-ink); color: var(--bb-paper); padding: var(--section-y) 0; }
  .bbprice__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,4.5rem); align-items: center; }
  .bbprice__title { font-size: clamp(1.9rem,3.4vw,2.8rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.02; color: var(--bb-paper); margin: 10px 0 14px; }
  .bbprice__sub { font-size: 16px; line-height: 1.6; color: var(--bb-steel-300); max-width: 44ch; margin: 0 0 22px; }
  .bbprice__incl { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .bbprice__incl li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--bb-steel-200); }
  .bbprice__incl i { width: 18px; height: 18px; color: var(--bb-signal-500); flex: none; }
  .bbprice__panel { background: rgba(255,255,255,0.03); border: 1px solid var(--border-on-dark); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-lg); }
  .bbprice__list { display: flex; flex-direction: column; margin-bottom: 14px; }
  .bbprice__row { display: flex; align-items: center; justify-content: space-between; padding: 18px 12px; border-bottom: 1px solid var(--border-on-dark); }
  .bbprice__row:last-child { border-bottom: none; }
  .bbprice__row--pop { background: rgba(255,255,255,0.04); border-left: 3px solid var(--bb-signal-500); border-radius: var(--radius-sm); padding-left: 14px; }
  .bbprice__rowL { display: flex; align-items: center; gap: 12px; }
  .bbprice__days { font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; color: var(--bb-paper); }
  .bbprice__pv { font-family: var(--font-mono); font-size: 24px; font-weight: 600; color: var(--bb-paper); }
  .bbprice__note { font-size: 13px; color: var(--bb-steel-400); margin: 0 0 16px; padding: 0 12px; }
  .bbprice__note b { color: var(--bb-signal-500); }

  /* Stores */
  .bbstores { padding: var(--section-y) 0; }
  .bbstores__head { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter) 40px; }
  .bbstores__lead { font-size: 15px; line-height: 1.6; color: var(--text-muted); max-width: 46ch; margin: 0; }
  .bbstores__foot { max-width: var(--container-max); margin: 32px auto 0; padding: 0 var(--gutter); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .bbstores__grid { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
  .bbstores__card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--border-strong, var(--bb-ink)); border-radius: var(--radius-md); background: var(--bb-paper); text-align: left;ransition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base); }
  .bbstores__card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md, var(--shadow-lg)); }
  .bbstores__pin { width: 42px; height: 42px; border-radius: var(--radius-md); background: var(--bb-ink); color: var(--bb-signal-500); display: flex; align-items: center; justify-content: center; flex: none; }
  .bbstores__pin i { width: 22px; height: 22px; }
  .bbstores__txt { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
  .bbstores__txt h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text-strong); margin: 0; line-height: 1.1; }
  .bbstores__txt h3 span { color: var(--text-muted); font-weight: 600; }
  .bbstores__units { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--text-muted); line-height: 1.1; }

  /* CTA — rental extras */
  .bbcta__price span { font-size: 18px; color: var(--bb-steel-400); }
  .bbcta__alt { font-size: 13px; color: var(--bb-steel-400); margin: 6px 0 0; text-align: center; }
  .bbcta__altlink { color: var(--bb-signal-500); border-bottom: 1px solid currentColor; }

  @media (max-width: 920px) {
    .bbhdr__nav, .bbhdr__cta { display: none; }
    .bbhdr__burger { display: flex; }
    .bbhdr__mobile.open { display: flex !important; }
    .bbhero__grid, .bbcta__inner, .bbftr__top, .bbprice__inner, .bbspecs__head { grid-template-columns: 1fr; }
    .bbspecs__head { align-items: start; }
    .bbspecs__lead { justify-self: start; }
    .bbspecs__grid, .bbfeat__grid, .bbhow__grid { grid-template-columns: repeat(2,1fr); }
    .bbspec:nth-child(2n) { border-right: none; }
    .bbspec:nth-child(-n+2) { border-bottom: 1px solid var(--border-on-dark); }
    .bbstores__grid { grid-template-columns: 1fr 1fr; }
    .bbgal__grid { grid-template-columns: 1fr 1fr; }
    .bbgal__cell--wide { grid-column: span 2; }
  }
  @media (max-width: 560px) {
    .bbspecs__grid, .bbfeat__grid, .bbgal__grid, .bbhow__grid, .bbstores__grid { grid-template-columns: 1fr; }
    .bbspec { border-right: none; border-bottom: 1px solid var(--border-on-dark); }
    .bbspec:last-child { border-bottom: none; }
    .bbgal__cell--wide { grid-column: span 1; }
  }

  /* ═══════════════════════ PORTAL ═══════════════════════ */
  /* Inline-svg icons */
  i[data-ic] { display: inline-flex; align-items: center; justify-content: center; width: 1em; height: 1em; flex: none; vertical-align: -0.14em; }
  i[data-ic] svg { width: 100%; height: 100%; display: block; }

  /* Floating WhatsApp */
  .bbwa { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #07291a; border: none; border-radius: 999px; padding: 13px 18px 13px 15px; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,.28); font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base); }
  .bbwa:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 36px rgba(0,0,0,.34); }
  .bbwa i { width: 22px; height: 22px; }
  .bbwa__label { white-space: nowrap; }
  @media (max-width: 560px) { .bbwa { padding: 14px; } .bbwa__label { display: none; } }

  /* Header additions */
  .bbhdr__link { display: inline-flex; align-items: center; gap: 7px; background: none; border: none; cursor: pointer; font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--bb-steel-300); transition: color var(--dur-fast); }
  .bbhdr__link:hover { color: var(--bb-signal-500); }
  .bbhdr__link i { width: 16px; height: 16px; }
  .bbhdr__account { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-on-dark); border-radius: 999px; padding: 5px 14px 5px 5px; cursor: pointer; transition: border-color var(--dur-fast), background var(--dur-fast); }
  .bbhdr__account:hover { border-color: var(--bb-signal-500); background: rgba(255,255,255,0.08); }
  .bbhdr__avatar { width: 30px; height: 30px; border-radius: 999px; background: var(--bb-signal-500); color: var(--bb-ink); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 14px; }
  .bbhdr__accountname { font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; color: var(--bb-paper); }

  .bbsec__title--ondark, .bbsec__title.bbsec__title--ondark { color: #ffffff; }

  /* ── Auth ── */
  .bbauth { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: calc(100vh - 70px); }
  .bbauth__brand { position: relative; background: var(--bb-black); color: var(--bb-paper); padding: clamp(2rem,4vw,4rem); display: flex; flex-direction: column; gap: 32px; justify-content: flex-start;een; border-right: 1px solid var(--border-on-dark); overflow: hidden; }
  .bbauth__brand::before { content:""; position:absolute; inset:0; background-image: linear-gradient(var(--border-on-dark) 1px, transparent 1px), linear-gradient(90deg, var(--border-on-dark) 1px, transparent 1px); background-size: 56px 56px; opacity: .5; mask-image: radial-gradient(circle at 30% 20%, #000, transparent 70%); }
  .bbauth__brandtop, .bbauth__perks, .bbauth__brandimg { position: relative; }
  .bbauth__brandh { font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.02; font-size: clamp(1.7rem,2.6vw,2.4rem); margin-top: 14px; max-width: 16ch; }
  .bbauth__perks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
  .bbauth__perks li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--bb-steel-200); }
  .bbauth__perks i { width: 18px; height: 18px; color: var(--bb-signal-500); flex: none; }
  .bbauth__brandimg { padding: 8px; flex: 1; min-height: 0; display: flex; }
  .bbauth__brandimg img { border-radius: var(--radius-md); width: 100%; height: 100%; min-height: 200px; object-fit: cover; }
  .bbauth__form { background: var(--bb-paper); color: var(--text-strong); padding: clamp(2rem,4vw,4rem); display: flex; align-items: center; justify-content: center; }
  .bbauth__card { width: 100%; max-width: 410px; }
  .bbauth__steps { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
  .bbauth__step { display: flex; align-items: center; gap: 8px; flex: 1; }
  .bbauth__stepn { width: 28px; height: 28px; flex: none; border-radius: 999px; border: 1.5px solid var(--border-default); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--text-muted); background: var(--bb-white); transition: all var(--dur-fast); }
  .bbauth__stepn i { width: 14px; height: 14px; }
  .bbauth__steplbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
  .bbauth__step.is-on .bbauth__stepn { border-color: var(--bb-ink); background: var(--bb-ink); color: var(--bb-paper); }
  .bbauth__step.is-on .bbauth__steplbl { color: var(--text-strong); font-weight: 700; }
  .bbauth__step.is-done .bbauth__stepn { border-color: var(--bb-signal-500); background: var(--bb-signal-500); color: var(--bb-ink); }
  .bbauth__nav { display: flex; gap: 12px; align-items: stretch; margin-top: 4px; }
  .bbauth__tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--bb-steel-100, #eef0f2); border-radius: var(--radius-md); padding: 4px; margin-bottom: 28px; }
  .bbauth__tab { border: none; background: none; cursor: pointer; padding: 10px; border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); transition: background var(--dur-fast), color var(--dur-fast); }
  .bbauth__tab.is-on { background: var(--bb-paper); color: var(--text-strong); box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,.12)); }
  .bbauth__h1 { font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; font-size: clamp(1.6rem,2.4vw,2.1rem); line-height: 1.04; }
  .bbauth__sub { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 8px 0 26px; }
  .bbauth__fields { display: flex; flex-direction: column; gap: 16px; }
.bbauth__panel { display: flex; flex-direction: column; gap: 16px; }
.bbauth__panel .bbrent__row2 { margin-top: 0; }
  .bbauth__forgot { align-self: flex-end; background: none; border: none; cursor: pointer; font-size: 13px; color: var(--bb-signal-600); margin-top: -6px; }
  .bbauth__err { font-size: 13px; color: var(--bb-danger); margin: 0; }
  .bbauth__switch { font-size: 14px; color: var(--text-muted); text-align: center; margin: 4px 0 0; }
  .bbauth__switch button { background: none; border: none; cursor: pointer; font-size: 14px; font-weight: 700; color: var(--bb-signal-600); }
  .bbauth__sent { display: flex; flex-direction: column; gap: 16px; }
  .bbauth__back { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-top: 30px; }
  .bbauth__back i { width: 15px; height: 15px; }
  .bbauth__back:hover { color: var(--text-strong); }

  /* ── Catálogo ── */
  .bbcat { background: var(--bb-paper); color: var(--text-strong); min-height: calc(100vh - 70px); padding-bottom: var(--section-y); }
  .bbcat__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
  .bbcat__hero { background: var(--bb-ink); color: var(--bb-paper); padding: clamp(2.5rem,5vw,4rem) 0 clamp(4rem,7vw,6rem); position: relative; overflow: hidden; }
  .bbcat__hero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(var(--border-on-dark) 1px, transparent 1px), linear-gradient(90deg, var(--border-on-dark) 1px, transparent 1px); background-size: 56px 56px; opacity: .5; mask-image: radial-gradient(circle at 75% 20%, #000, transparent 70%); }
  .bbcat__hero .bbcat__inner { position: relative; }
  .bbcat__h1 { font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; font-size: clamp(2rem,4vw,3.2rem); margin: 12px 0 14px; }
  .bbcat__lead { font-size: 15px; line-height: 1.6; color: var(--bb-steel-300); max-width: 52ch; margin: 0; }
  .bbcat__body { margin-top: clamp(-3rem,-4vw,-2rem); position: relative; }
  .bbcat__panel { background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-lg); }
  .bbcat__filters { display: grid; grid-template-columns: 1.1fr 1fr 1fr auto; gap: 16px; align-items: end; }
  .bbcat__searchbtn { min-width: 180px; }
  .bbcat__subbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-default); }
  .bbcat__period { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
  .bbcat__period i { width: 16px; height: 16px; color: var(--bb-signal-600); }
  .bbcat__period b, .bbcat__subprice b { color: var(--text-strong); }
  .bbcat__subprice { font-size: 14px; color: var(--text-muted); }
  .bbcat__subprice b { font-family: var(--font-mono); font-size: 18px; color: var(--bb-signal-600); }
  .bbcat__results { display: grid; grid-template-columns: 1fr 320px; gap: clamp(1.5rem,3vw,2.5rem); align-items: start; margin-top: 28px; }
  .bbcat__bar { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; background: var(--bb-signal-50, #fdf6ee); border: 1px solid var(--bb-signal-200, #f0d9bd); border-radius: var(--radius-md); padding: 14px 18px; margin-bottom: 16px; font-size: 13px; color: var(--text-body); }
  .bbcat__bar b { color: var(--text-strong); }
  .bbcat__barprice { font-family: var(--font-mono); font-size: 20px; font-weight: 600; color: var(--bb-signal-600); white-space: nowrap; }
  .bbcat__barprice em { font-style: normal; font-size: 12px; color: var(--text-muted); }
  .bbcat__empty { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 56px 24px; background: var(--bb-white); border: 1px dashed var(--border-strong, var(--border-default)); border-radius: var(--radius-lg); }
  .bbcat__emptyic { width: 56px; height: 56px; border-radius: 999px; background: var(--bb-ink); color: var(--bb-signal-500); display: flex; align-items: center; justify-content: center; }
  .bbcat__emptyic i { width: 26px; height: 26px; }
  .bbcat__empty h3 { font-size: 18px; font-weight: 800; text-transform: uppercase; margin-top: 4px; }
  .bbcat__empty p { font-size: 14px; line-height: 1.55; color: var(--text-muted); max-width: 42ch; margin: 0; }
  .bbcat__list { display: flex; flex-direction: column; gap: 10px; }
  .bbrow { display: grid; grid-template-columns: 46px minmax(0, 1fr); align-items: center; gap: 16px; background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 18px 20px; transition: border-color var(--dur-fast), box-shadow var(--dur-base); }
  .bbrow:hover { border-color: var(--bb-ink); box-shadow: var(--shadow-md, var(--shadow-lg)); }
  .bbrow.is-out { opacity: .6; }
  .bbrow.is-out:hover { box-shadow: none; }
  .bbrow__logo { position: relative; overflow: hidden; width: 46px; height: 46px; border-radius: 999px; background: var(--bb-ink); color: var(--bb-signal-500); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 15px; flex: none; }
  .bbrow__logo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }
  .bbrow__body { min-width: 0; display: flex; flex-direction: column; gap: 12px; }
  .bbrow__id { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
  .bbrow__id h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.1; }
  .bbrow__loc { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); }
  .bbrow__loc i { width: 12px; height: 12px; color: var(--bb-signal-600); }
  .bbrow__stats { display: flex; align-items: center; gap: 18px; padding: 12px 0; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
  .bbrow__addr { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; line-height: 1.4; color: var(--text-muted); margin: 0; }
  .bbrow__addr i { width: 13px; height: 13px; flex: none; color: var(--text-muted); }
  .bbrow__avail { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
  .bbrow__meter { flex: 1; max-width: 160px; height: 6px; border-radius: 999px; background: var(--bb-steel-100, #eceef0); overflow: hidden; }
  .bbrow__meter span { display: block; height: 100%; border-radius: 999px; background: var(--bb-signal-500); }
  .bbrow__availn { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-body); white-space: nowrap; }
  .bbrow__price { display: flex; flex-direction: column; text-align: right; padding-right: 18px; border-right: 1px solid var(--border-default); }
  .bbrow__pricek { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
  .bbrow__pricev { font-family: var(--font-mono); font-size: 20px; font-weight: 600; color: var(--text-strong); line-height: 1; }
  @media (max-width: 560px) {
    .bbrow__stats { flex-wrap: wrap; gap: 12px; }
    .bbrow__price { border-right: none; padding-right: 0; }
  }
  /* value table */
  .bbcat__side { position: sticky; top: 90px; }
  .bbtable { background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; }
  .bbtable__h { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; padding: 16px 20px; border-bottom: 1px solid var(--border-default); background: var(--bb-paper); }
  .bbtable__rows { padding: 6px 20px; }
  .bbtable__row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-default); font-size: 14px; }
  .bbtable__row:last-child { border-bottom: none; }
  .bbtable__row strong { font-family: var(--font-mono); font-size: 16px; }
  .bbtable__row.is-on { color: var(--bb-signal-600); }
  .bbtable__row.is-on strong { color: var(--bb-signal-600); }
  .bbtable__row.is-rec { color: var(--bb-signal-600); }
  .bbtable__row.is-rec strong { color: var(--bb-signal-600); }
  .bbtable__row span { display: inline-flex; align-items: center; gap: 8px; }
  .bbtable__rec { font-style: normal; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--bb-ink); background: var(--bb-signal-500); padding: 2px 6px; border-radius: var(--radius-sm); }
  .bbtable__note { font-size: 12.5px; line-height: 1.5; color: var(--text-muted); padding: 12px 20px; margin: 0; border-top: 1px solid var(--border-default); }
  .bbtable__note b, .bbtable__block b { color: var(--text-strong); }
  .bbtable__block { padding: 14px 20px; border-top: 1px solid var(--border-default); }
  .bbtable__blockh { display: flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-strong); margin-bottom: 6px; }
  .bbtable__blockh i { width: 15px; height: 15px; color: var(--bb-signal-600); }
  .bbtable__block p { font-size: 12.5px; line-height: 1.5; color: var(--text-muted); margin: 0; }
  .bbchip { padding: 9px 14px; background: var(--bb-paper); border: 1.5px solid var(--border-default); border-radius: 999px; cursor: pointer; font-family: var(--font-mono); font-size: 13px; color: var(--text-body); transition: border-color var(--dur-fast), background var(--dur-fast); }
  .bbchip:hover { border-color: var(--bb-steel-500); }
  .bbchip.is-on { border-color: var(--bb-ink); background: var(--bb-ink); color: var(--bb-paper); }
  .bbrent__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }

  /* ── Contato ── */
  .bbcontact { background: var(--bb-ink); color: var(--bb-paper); min-height: calc(100vh - 70px); padding: clamp(2.5rem,5vw,4rem) 0 var(--section-y); }
  .bbcontact__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
  .bbcontact__head { margin-bottom: 36px; max-width: 60ch; }
  .bbcontact__lead { font-size: 15px; line-height: 1.6; color: var(--bb-steel-300); margin: 12px 0 0; }
  .bbcontact__grid { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: clamp(1.5rem,3vw,2.5rem); align-items: start; }
  .bbcontact__form { background: var(--bb-paper); color: var(--text-strong); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.4rem); }
  .bbcontact__textarea { font-family: var(--font-sans); font-size: 15px; color: var(--text-strong); background: var(--bb-white); border: var(--border-w) solid var(--border-default); border-radius: var(--radius-md); padding: 12px 14px; width: 100%; resize: vertical; box-sizing: border-box; transition: border-color var(--dur-base); }
  .bbphone { display: grid; grid-template-columns: 116px 1fr; gap: 10px; }
  .bbphone__hint { display: block; font-size: 12px; color: var(--text-muted); margin-top: 6px; }
  .bbcontact__textarea:focus { outline: none; border-color: var(--bb-ink); box-shadow: 0 0 0 3px var(--bb-signal-100); }
  .bbcontact__sent { text-align: center; padding: 30px 10px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
  .bbcontact__sentic { width: 56px; height: 56px; border-radius: 999px; background: var(--bb-signal-500); color: var(--bb-ink); display: flex; align-items: center; justify-content: center; }
  .bbcontact__sentic i { width: 28px; height: 28px; }
  .bbcontact__sent h2 { font-size: 22px; font-weight: 800; text-transform: uppercase; }
  .bbcontact__sent p { font-size: 14px; color: var(--text-muted); max-width: 36ch; margin: 0; }
  .bbcontact__sentbtns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
  .bbcontact__channels { display: flex; flex-direction: column; gap: 12px; }
  .bbchan { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-on-dark); border-radius: var(--radius-md); transition: border-color var(--dur-fast), background var(--dur-fast); }
  a.bbchan:hover { border-color: var(--bb-signal-500); background: rgba(255,255,255,0.07); }
  .bbchan__ic { width: 42px; height: 42px; border-radius: var(--radius-md); background: var(--bb-black); color: var(--bb-signal-500); display: flex; align-items: center; justify-content: center; flex: none; }
  .bbchan__ic i { width: 20px; height: 20px; }
  .bbchan div { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
  .bbchan__k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--bb-steel-400); }
  .bbchan__v { font-size: 14px; color: var(--bb-paper); font-weight: 600; overflow-wrap: anywhere; }
  .bbchan__cta { margin-top: 8px; padding: 18px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-on-dark); border-radius: var(--radius-md); }
  .bbchan__cta p { font-size: 13px; color: var(--bb-steel-300); margin: 0 0 12px; }
  /* signup address group */
  .bbauth__addr { display: flex; flex-direction: column; gap: 16px; padding-top: 6px; border-top: 1px dashed var(--border-default); margin-top: 4px; }
  .bbauth__addrk { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }

  /* ── Locação ── */
  .bbrent { background: var(--bb-paper); color: var(--text-strong); padding: clamp(1.5rem,3vw,2.5rem) 0 var(--section-y); min-height: calc(100vh - 70px); }
  .bbrent__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
  .bbrent__crumb { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; }
  .bbrent__crumb i { width: 15px; height: 15px; }
  .bbrent__crumb:hover { color: var(--text-strong); }
  .bbrent__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 30px; }
  .bbrent__step { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 2px solid var(--border-default); color: var(--text-faint); }
  .bbrent__step.is-on { border-top-color: var(--bb-signal-500); color: var(--text-strong); }
  .bbrent__step.is-done { border-top-color: var(--bb-ink); color: var(--text-muted); }
  .bbrent__stepn { width: 26px; height: 26px; border-radius: 999px; border: 1px solid currentColor; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 11px; font-weight: 600; flex: none; }
  .bbrent__step.is-on .bbrent__stepn { background: var(--bb-signal-500); border-color: var(--bb-signal-500); color: var(--bb-ink); }
  .bbrent__step.is-done .bbrent__stepn { background: var(--bb-ink); border-color: var(--bb-ink); color: var(--bb-paper); }
  .bbrent__stepn i { width: 14px; height: 14px; }
  .bbrent__stepl { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
  .bbrent__grid { display: grid; grid-template-columns: 1.5fr 0.85fr; gap: clamp(1.5rem,3vw,2.5rem); align-items: start; }
  .bbrent__main { display: flex; flex-direction: column; gap: clamp(1.1rem,2vw,1.6rem); }
  .bbrent__panel { background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: clamp(1.4rem,2.4vw,2.2rem); }
  .bbrent__h { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 18px; }
  .bbrent__h + .bbrent__p { margin-top: -10px; }
  .bbrent__p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 8px 0 22px; }
  .bbrent__pkgs { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
  .bbpkg { position: relative; display: flex; flex-direction: column; gap: 4px; padding: 18px 14px; background: var(--bb-paper); border: 1.5px solid var(--border-default); border-radius: var(--radius-md); cursor: pointer; text-align: left; transition: border-color var(--dur-fast), background var(--dur-fast); }
  .bbpkg:hover { border-color: var(--bb-steel-500); }
  .bbpkg.is-on { border-color: var(--bb-ink); background: var(--bb-white); box-shadow: inset 0 0 0 1px var(--bb-ink); }
  .bbpkg__tag { position: absolute; top: -9px; left: 12px; background: var(--bb-signal-500); color: var(--bb-ink); font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 2px 7px; border-radius: 999px; }
  .bbpkg__days { font-size: 16px; font-weight: 800; text-transform: uppercase; }
  .bbpkg__price { font-family: var(--font-mono); font-size: 18px; font-weight: 600; color: var(--text-strong); }
  .bbpkg__daily { font-size: 11px; color: var(--text-muted); }
  .bbrent__row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: end; margin-top: 22px; }
  .bbrent__return, .bbrent__period { display: flex; flex-direction: column; gap: 7px; }
  .bbrent__returnk { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
  .bbrent__returnv { font-family: var(--font-mono); font-size: 20px; font-weight: 600; color: var(--text-strong); }
  .bbrent__store { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--bb-paper); border: 1px solid var(--border-default); border-radius: var(--radius-md); margin-bottom: 12px; }
  .bbrent__storeh { display: flex; flex-direction: column; gap: 1px; }
  .bbrent__storephone { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 12px; color: var(--bb-signal-600); margin-top: 8px; }
  .bbrent__storephone i { width: 14px; height: 14px; }8px; }
  .bbrent__storepin { width: 42px; height: 42px; border-radius: var(--radius-md); background: var(--bb-ink); color: var(--bb-signal-500); display: flex; align-items: center; justify-content: center; flex: none; }
  .bbrent__store h3 { font-size: 15px; font-weight: 800; text-transform: uppercase; }
  .bbrent__store p { font-size: 13px; color: var(--text-muted); margin: 2px 0 0; }
  .bbrent__storehours { padding: 16px; background: var(--bb-paper); border: 1px solid var(--border-default); border-radius: var(--radius-md); margin-bottom: 18px; }
  .bbrent__hourslbl { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
  .bbrent__hourslbl i { width: 14px; height: 14px; color: var(--bb-signal-600); }
  .bbrent__hoursgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
  .bbrent__storehr { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--text-strong); }
  .bbrent__storehr b { font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
  .bbrent__storehr.is-closed { color: var(--bb-danger); }
  .bbrent__storehr.is-closed b { color: var(--bb-danger); }
  .bbrent__slots { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-bottom: 20px; }
  .bbrent__daterow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
  .bbrent__dateitem { display: flex; flex-direction: column; gap: 7px; padding: 16px; background: var(--bb-paper); border: 1px solid var(--border-default); border-radius: var(--radius-md); }
  .bbrent__datek { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
  .bbrent__datek i { width: 15px; height: 15px; color: var(--bb-signal-600); }
  .bbrent__datev { font-size: 15px; font-weight: 700; color: var(--text-strong); text-transform: capitalize; }
  .bbslot { display: flex; align-items: center; gap: 9px; padding: 14px 16px; background: var(--bb-paper); border: 1.5px solid var(--border-default); border-radius: var(--radius-md); cursor: pointer; font-family: var(--font-mono); font-size: 13px; color: var(--text-body); transition: border-color var(--dur-fast); }
  .bbslot i { width: 16px; height: 16px; color: var(--text-muted); }
  .bbslot:hover { border-color: var(--bb-steel-500); }
  .bbslot.is-on { border-color: var(--bb-ink); background: var(--bb-white); box-shadow: inset 0 0 0 1px var(--bb-ink); color: var(--text-strong); }
  .bbslot.is-on i { color: var(--bb-signal-600); }
  .bbrent__fields { display: flex; flex-direction: column; gap: 16px; }
  .bbrent__pays { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
  .bbpaytab { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px; background: var(--bb-paper); border: 1.5px solid var(--border-default); border-radius: var(--radius-md); cursor: pointer; font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-body); transition: border-color var(--dur-fast); }
  .bbpaytab i { width: 18px; height: 18px; }
  .bbpaytab.is-on { border-color: var(--bb-ink); background: var(--bb-white); box-shadow: inset 0 0 0 1px var(--bb-ink); color: var(--text-strong); }
  .bbpix { display: flex; gap: 20px; align-items: center; }
  .bbpix__qr { width: 130px; height: 130px; border-radius: var(--radius-md); background: var(--bb-ink); color: var(--bb-signal-500); display: flex; align-items: center; justify-content: center; flex: none; }
  .bbpix__qr i { width: 84px; height: 84px; }
  .bbpix__info { display: flex; flex-direction: column; gap: 12px; }
  .bbpix__info p { font-size: 14px; line-height: 1.5; color: var(--text-muted); margin: 0; }
  .bbpix__code { font-family: var(--font-mono); font-size: 12px; color: var(--text-body); background: var(--bb-paper); border: 1px solid var(--border-default); border-radius: var(--radius-sm); padding: 10px 12px; word-break: break-all; }
  .bbrent__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
  /* summary */
  .bbrent__summary { position: sticky; top: 90px; }
  .bbsum { background: var(--bb-ink); color: var(--bb-paper); border-radius: var(--radius-lg); padding: 28px 26px; }
  .bbsum > button { margin-top: 22px; }
  .bbsum > button { white-space: nowrap; }
  .bbsum__k { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--bb-steel-400); margin-bottom: 18px; }
  .bbsum__store { display: flex; align-items: center; gap: 13px; margin: 16px 0; padding-bottom: 18px; border-bottom: 1px solid var(--border-on-dark); }
  .bbsum__store img { width: 60px; height: 60px; border-radius: var(--radius-md); object-fit: cover; flex: none; }
  .bbsum__store h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; }
  .bbsum__store p { font-size: 12px; color: var(--bb-steel-300); margin: 3px 0 0; }
  .bbsum__rows { margin: 0; display: flex; flex-direction: column; gap: 14px; }
  .bbsum__rows > div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
  .bbsum__rows dt { flex: 1; min-width: 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--bb-steel-400); margin: 0; }
  .bbsum__rows dd { flex: none; font-size: 13px; color: var(--bb-paper); margin: 0; text-align: right; font-weight: 600; white-space: nowrap; }
  .bbsum__total { display: flex; align-items: baseline; justify-content: space-between; margin: 22px 0 0; padding-top: 20px; border-top: 1px solid var(--border-on-dark); }
  .bbsum__total span { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--bb-steel-300); }
  .bbsum__total strong { font-family: var(--font-mono); font-size: 28px; font-weight: 600; color: var(--bb-signal-500); white-space: nowrap; }
  .bbsum__total + .bb-btn { margin-top: 18px; }
  .bbsum__note { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--bb-steel-300); margin: 18px 0 0; }
  .bbsum__note i { width: 16px; height: 16px; color: var(--bb-signal-500); flex: none; }

  /* ── Conta ── */
  .bbacc { background: var(--bb-paper); color: var(--text-strong); padding: clamp(2rem,4vw,3rem) 0 var(--section-y); min-height: calc(100vh - 70px); }
  .bbacc__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 270px 1fr; gap: clamp(1.5rem,3vw,2.5rem); align-items: start; }
  .bbacc__side { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 18px; }
  .bbacc__user { display: flex; align-items: center; gap: 13px; padding: 18px; background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-md); }
  .bbacc__avatar { width: 46px; height: 46px; border-radius: 999px; background: var(--bb-ink); color: var(--bb-signal-500); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 20px; flex: none; }
  .bbacc__user h3 { font-size: 15px; font-weight: 800; }
  .bbacc__user p { font-size: 12px; color: var(--text-muted); margin: 2px 0 0; overflow: hidden; text-overflow: ellipsis; }
  .bbacc__nav { display: flex; flex-direction: column; gap: 2px; }
  .bbacc__nav button, .bbacc__nav a { display: flex; align-items: center; gap: 11px; padding: 12px 14px; background: none; border: none; border-radius: var(--radius-md); cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text-body); text-align: left; text-decoration: none; transition: background var(--dur-fast), color var(--dur-fast); }
  .bbacc__nav button i, .bbacc__nav a i { width: 18px; height: 18px; color: var(--text-muted); }
  .bbacc__nav button:hover, .bbacc__nav a:hover { background: var(--bb-white); }
  .bbacc__nav button.is-on { background: var(--bb-ink); color: var(--bb-paper); }
  .bbacc__nav button.is-on i { color: var(--bb-signal-500); }
  .bbacc__logout { display: flex; align-items: center; gap: 11px; width: 100%; padding: 12px 14px; background: none; border: none; border-radius: var(--radius-md); cursor: pointer; font-size: 14px; font-weight: 600; text-align: left; color: var(--bb-danger) !important; margin-top: 8px; transition: background var(--dur-fast); }
  .bbacc__logout:hover { background: var(--bb-white); }
  .bbacc__logout i { color: var(--bb-danger) !important; }
  .bbacc__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
  .bbacc__empty { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 76px 24px; background: var(--bb-white); border: 1px dashed var(--border-strong, var(--border-default)); border-radius: var(--radius-lg); }
  .bbacc__empty > i { width: 42px; height: 42px; color: var(--text-faint); }
  .bbacc__empty h3 { font-size: 18px; font-weight: 800; text-transform: uppercase; margin-top: 10px; }
  .bbacc__empty p { font-size: 14px; color: var(--text-muted); max-width: 38ch; margin: 0 0 16px; }
  .bbacc__list { display: flex; flex-direction: column; gap: 14px; }
  .bbacc__booked { border-left: 1px solid var(--bb-signal-500) !important; }
  .bbresv { background: var(--bb-white); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 24px 24px 22px; }
  .bbresv__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 16px; margin-bottom: 4px; border-bottom: 1px solid var(--border-default); }
  .bbresv__id { display: flex; flex-direction: column; }
  .bbresv__idk { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
  .bbresv__idv { font-family: var(--font-mono); font-size: 15px; font-weight: 600; color: var(--text-strong); }
  .bbresv__title { font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; margin: 16px 0 12px; }
  .bbresv__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; }
  .bbresv__meta span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-muted); }
  .bbresv__meta i { width: 15px; height: 15px; color: var(--bb-signal-600); }
  .bbresv__actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
  .bbresv__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-default); }
  .bbresv__price { font-family: var(--font-mono); font-size: 20px; font-weight: 600; color: var(--text-strong); }
  .bbresv__price em { font-style: normal; font-size: 12px; color: var(--text-muted); }
  .bbacc__card { margin-bottom: 16px; }
  .bbacc__cardh { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; font-size: 15px; font-weight: 800; text-transform: uppercase; margin-bottom: 16px; }
  .pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; white-space: nowrap; flex: none; line-height: 1.3; }
  .pill--success { background: rgba(45,150,80,.14); color: #2b7a46; }
  .pill--signal { background: var(--bb-signal-tint, rgba(235,181,74,.18)); color: var(--bb-signal-700, #a9781f); }
  .pill--danger { background: rgba(201,66,66,.13); color: #c0392b; }
  .pill--muted { background: var(--bb-steel-100, #eceef0); color: var(--text-muted); }
  .bbacc__save { margin-top: 18px; }

  @media (max-width: 920px) {
    .bbauth { grid-template-columns: 1fr; }
    .bbauth__brand { display: none; }
    .bbcat__filters { grid-template-columns: 1fr 1fr; }
    .bbcat__searchbtn { grid-column: 1 / -1; }
    .bbcat__results { grid-template-columns: 1fr; }
    .bbcat__side { position: static; order: -1; }
    .bbcontact__grid { grid-template-columns: 1fr; }
    .bbrent__grid { grid-template-columns: 1fr; }
    .bbrent__summary { position: static; }
    .bbrent__pkgs { grid-template-columns: 1fr 1fr; }
    .bbacc__inner { grid-template-columns: 1fr; }
    .bbacc__side { position: static; }
    .bbhdr__link, .bbhdr__accountname { display: none; }
  }
  @media (max-width: 560px) {
    .bbcat__filters, .bbcat__grid, .bbrent__steps, .bbrent__slots, .bbrent__pays, .bbrent__row2 { grid-template-columns: 1fr; }
    .bbrent__pkgs { grid-template-columns: 1fr 1fr; }
    .bbpix { flex-direction: column; align-items: flex-start; }
    .bbrent__steps .bbrent__stepl { display: none; }
    .bbrent__steps { grid-template-columns: repeat(4,1fr); }
    .bbphone { grid-template-columns: 104px 1fr; }
  }


/* ===== component library (extraído do bundle) ===== */

.bb-btn {
  --_bg: var(--action-primary);
  --_fg: var(--bb-paper);
  --_bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; line-height: 1; white-space: nowrap; cursor: pointer;
  border: var(--border-w-frame) solid var(--_bd); border-radius: var(--radius-md);
  background: var(--_bg); color: var(--_fg);
  padding: 0 var(--space-5); height: 44px; font-size: 14px;
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.bb-btn:hover { background: var(--_bgh, var(--_bg)); transform: translateY(var(--hover-lift)); }
.bb-btn:active { transform: scale(var(--press-scale)); box-shadow: var(--shadow-inset); }
.bb-btn:focus-visible { outline: var(--ring-w) solid var(--ring-color); outline-offset: var(--ring-offset); }
.bb-btn[disabled] { opacity: 0.4; pointer-events: none; }
.bb-btn--full { width: 100%; }

.bb-btn--primary { --_bg: var(--action-primary); --_bgh: var(--action-primary-hover); --_fg: var(--bb-paper); }
.bb-btn--signal  { --_bg: var(--action-signal); --_bgh: var(--action-signal-hover); --_fg: var(--text-on-signal); }
.bb-btn--secondary { --_bg: transparent; --_bgh: var(--bb-ink); --_fg: var(--bb-ink); --_bd: var(--bb-ink); }
.bb-btn--secondary:hover { --_fg: var(--bb-paper); color: var(--bb-paper); }
.bb-btn--ghost { --_bg: transparent; --_bgh: var(--bb-steel-100); --_fg: var(--bb-ink); --_bd: transparent; }
.bb-btn--outline-light { --_bg: transparent; --_bgh: rgba(255,255,255,0.14); --_fg: var(--bb-paper); --_bd: var(--bb-paper); }

.bb-btn--pill { border-radius: var(--radius-pill); padding-left: var(--space-8); padding-right: var(--space-8); letter-spacing: 0.1em; }

.bb-btn--sm { height: 36px; padding: 0 var(--space-4); font-size: 12px; }
.bb-btn--lg { height: 54px; padding: 0 var(--space-8); font-size: 16px; }

.bb-btn svg { width: 1.15em; height: 1.15em; }



.bb-check { display:flex; align-items:flex-start; gap:11px; cursor:pointer; font-family: var(--font-sans); }
.bb-check input { position:absolute; opacity:0; width:0; height:0; }
.bb-check__box { flex:none; width:22px; height:22px; border-radius: var(--radius-sm); border: var(--border-w) solid var(--border-default); background: var(--bb-white); display:flex; align-items:center; justify-content:center; margin-top:1px; transition: background-color var(--dur-fast) var(--ease-snap), border-color var(--dur-fast) var(--ease-out); }
.bb-check__box svg { width:14px; height:14px; opacity:0; transform: scale(.5); transition: opacity var(--dur-fast), transform var(--dur-fast) var(--ease-snap); }
.bb-check input:checked + .bb-check__box { background: var(--bb-ink); border-color: var(--bb-ink); }
.bb-check input:checked + .bb-check__box svg { opacity:1; transform: scale(1); stroke: var(--bb-paper); }
.bb-check input:focus-visible + .bb-check__box { outline: 3px solid var(--bb-signal-300); outline-offset: 2px; }
.bb-check__text { font-size: 14px; color: var(--text-body); line-height: 1.45; }



.bb-field { display:flex; flex-direction:column; gap:7px; font-family: var(--font-sans); }
.bb-field__label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
}
.bb-field__req { color: var(--bb-signal-600); }
.bb-input, .bb-select {
  font-family: var(--font-sans); font-size: 15px; color: var(--text-strong);
  background: var(--bb-white); border: var(--border-w) solid var(--border-default);
  border-radius: var(--radius-md); height: 46px; padding: 0 14px; width: 100%;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  box-sizing: border-box;
}
.bb-select { appearance: none; background-image: none; cursor: pointer; }
.bb-input::placeholder { color: var(--text-faint); }
.bb-input:hover, .bb-select:hover { border-color: var(--bb-steel-500); }
.bb-input:focus, .bb-select:focus {
  outline: none; border-color: var(--bb-ink);
  box-shadow: 0 0 0 3px var(--bb-signal-100);
}
.bb-input--error { border-color: var(--bb-danger); }
.bb-input--error:focus { box-shadow: 0 0 0 3px var(--bb-danger-tint); }
.bb-field__hint { font-size: 12px; color: var(--text-muted); }
.bb-field__hint--error { color: var(--bb-danger); }
.bb-select-wrap { position: relative; }
.bb-select-wrap::after {
  content: ""; position: absolute; right: 14px; top: 50%; width: 8px; height: 8px;
  border-right: 2px solid var(--text-muted); border-bottom: 2px solid var(--text-muted);
  transform: translateY(-65%) rotate(45deg); pointer-events: none;
}
.bb-check { display:flex; align-items:flex-start; gap:11px; cursor:pointer; font-family: var(--font-sans); }
.bb-check input { position:absolute; opacity:0; width:0; height:0; }
.bb-check__box {
  flex:none; width:22px; height:22px; border-radius: var(--radius-sm);
  border: var(--border-w) solid var(--border-default); background: var(--bb-white);
  display:flex; align-items:center; justify-content:center; margin-top:1px;
  transition: background-color var(--dur-fast) var(--ease-snap), border-color var(--dur-fast) var(--ease-out);
}
.bb-check__box svg { width:14px; height:14px; opacity:0; transform: scale(.5); transition: opacity var(--dur-fast), transform var(--dur-fast) var(--ease-snap); }
.bb-check input:checked + .bb-check__box { background: var(--bb-ink); border-color: var(--bb-ink); }
.bb-check input:checked + .bb-check__box svg { opacity:1; transform: scale(1); stroke: var(--bb-paper); }
.bb-check input:focus-visible + .bb-check__box { outline: 3px solid var(--bb-signal-300); outline-offset: 2px; }
.bb-check__text { font-size: 14px; color: var(--text-body); line-height: 1.45; }



.bb-field { display:flex; flex-direction:column; gap:7px; font-family: var(--font-sans); }
.bb-field__label { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.bb-field__req { color: var(--bb-signal-600); }
.bb-input, .bb-select { font-family: var(--font-sans); font-size: 15px; color: var(--text-strong); background: var(--bb-white); border: var(--border-w) solid var(--border-default); border-radius: var(--radius-md); height: 46px; padding: 0 14px; width: 100%; transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); box-sizing: border-box; }
.bb-select { appearance: none; background-image: none; cursor: pointer; }
.bb-input:hover, .bb-select:hover { border-color: var(--bb-steel-500); }
.bb-input:focus, .bb-select:focus { outline: none; border-color: var(--bb-ink); box-shadow: 0 0 0 3px var(--bb-signal-100); }
.bb-field__hint { font-size: 12px; color: var(--text-muted); }
.bb-select-wrap { position: relative; }
.bb-select-wrap::after { content: ""; position: absolute; right: 14px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--text-muted); border-bottom: 2px solid var(--text-muted); transform: translateY(-65%) rotate(45deg); pointer-events: none; }
