  :root {
    --bg: #0f1a2d;
    --bg-alt: #16233a;
    --bg-alt-2: #1c2b45;
    --paper: #ffffff;
    --ink: #f4f6fa;
    --ink-dim: #b8c2d4;
    --ink-faint: #8592a8;
    --amber: #f0a52d;
    --amber-soft: rgba(240,165,45,0.14);
    --line: rgba(244,246,250,0.10);
    --line-strong: rgba(244,246,250,0.22);
    --radius: 12px;
    --shadow: 0 14px 34px rgba(0,0,0,0.45);
    --sans: "Manrope", system-ui, sans-serif;
    --display: "Fraunces", Georgia, serif;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 100vh;
  }
  body::before {
    content: "";
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background:
      radial-gradient(60% 45% at 78% 8%, rgba(240,165,45,0.10), transparent 70%),
      radial-gradient(55% 40% at 8% 0%, rgba(120,150,220,0.07), transparent 70%);
  }
  a { color: inherit; }
  button { font-family: inherit; }
  :focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
  ::selection { background: var(--amber-soft); color: var(--ink); }

  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

  /* ---- topo / volta pro catálogo ---- */
  .topbar { display: flex; align-items: center; justify-content: space-between; padding: 28px 0; border-bottom: 1px solid var(--line); }
  .brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; }
  .brand-mark {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    background: var(--amber); color: #16233a;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display); font-weight: 800; font-size: 14px; letter-spacing: -0.02em;
    object-fit: cover;
  }
  img.brand-mark { background: none; padding: 0; }
  .brand-name { font-weight: 700; font-size: 15px; letter-spacing: 0.01em; }
  .back-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 600; color: var(--ink-dim); text-decoration: none;
    padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 999px;
    transition: border-color .15s ease, color .15s ease;
  }
  .back-link:hover { border-color: var(--amber); color: var(--amber); }
  .back-link svg { width: 14px; height: 14px; }

  /* ---- hero ---- */
  .hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; padding: 56px 0 40px; }
  .eyebrow-tag {
    display: inline-flex; align-items: center; gap: 9px;
    font-weight: 600; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 18px;
  }
  .eyebrow-tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); display: inline-block; }
  h1.headline {
    font-family: var(--display); font-weight: 800; font-size: clamp(38px, 5.4vw, 60px);
    line-height: 1.05; letter-spacing: -0.015em; margin: 0 0 18px; text-wrap: balance;
  }
  h1.headline .accent { color: var(--amber); }
  .subhead { font-size: 17px; line-height: 1.6; color: var(--ink-dim); max-width: 42ch; margin: 0 0 26px; }

  .meta-strip { display: flex; flex-wrap: wrap; gap: 10px; }
  .meta-pill {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--bg-alt); border: 1px solid var(--line); color: var(--ink-dim);
    font-size: 12.5px; font-weight: 600; padding: 8px 13px; border-radius: 999px;
  }
  .meta-pill svg { width: 14px; height: 14px; color: var(--amber); flex-shrink: 0; }

  .hero-art {
    aspect-ratio: 1/1; border-radius: 20px; background: var(--bg-alt);
    border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-art img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .wa-group-btn {
    display: inline-flex; align-items: center; gap: 0.55rem;
    margin-top: 22px; padding: 0.8rem 1.3rem; min-height: 48px;
    border-radius: 999px; border: 0;
    background: #25d366; color: #0a1f13;
    font-family: var(--sans); font-weight: 700; font-size: 1rem; line-height: 1;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  }
  .wa-group-btn:hover {
    background: #1ebe5b; transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.36);
  }
  .wa-group-btn:active { transform: translateY(0); }
  .wa-group-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
  .wa-group-btn svg { width: 22px; height: 22px; flex: none; }
  @media (max-width: 520px) {
    .wa-group-btn { display: flex; width: 100%; justify-content: center; }
  }

  /* ---- modo de preparo ---- */
  section.block { padding: 34px 0; border-top: 1px solid var(--line); }
  .block-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
  .block-head h2 { font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -0.01em; margin: 0; }
  .block-sub { font-size: 13.5px; color: var(--ink-faint); }
  .block-head-title { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }

  .block-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

  .cart-all-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; border: 1.5px solid var(--amber); color: var(--amber);
    padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 700;
    text-decoration: none; white-space: nowrap;
    transition: transform .15s ease, background .15s ease, color .15s ease;
  }
  .cart-all-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
  .cart-all-btn:hover { background: var(--amber); color: #16233a; transform: translateY(-2px); }

  .steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; max-width: 62ch; }
  .steps li {
    display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: start;
    padding: 4px 0;
  }
  .steps .num {
    width: 34px; height: 34px; border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--line-strong);
    color: var(--amber); font-family: var(--display); font-weight: 700; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
  }
  .steps p { margin: 0; padding-top: 6px; font-size: 15px; line-height: 1.65; color: var(--ink-dim); }
  .steps strong { color: var(--ink); font-weight: 700; }

  .tip {
    display: flex; gap: 12px; align-items: flex-start; max-width: 62ch;
    margin-top: 22px; padding: 14px 16px; border-radius: 10px;
    background: var(--amber-soft); border: 1px solid rgba(240,165,45,0.35);
  }
  .tip svg { width: 17px; height: 17px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
  .tip p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-dim); }
  .tip strong { color: var(--ink); font-weight: 700; }

  /* ---- rails (ingredientes / acessorios), mesmo padrao do catalogo ---- */
  .rail-track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x proximity; padding: 6px 2px 12px; scrollbar-width: none; }
  .rail-track::-webkit-scrollbar { display: none; }

  .card {
    position: relative; flex: 0 0 190px; scroll-snap-align: start;
    background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 14px; display: flex; flex-direction: column; gap: 10px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  }
  .card:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow); z-index: 3; }

  .card-photo {
    position: relative;
    width: 100%; aspect-ratio: 1/1; border-radius: 9px; background: var(--paper);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .card-photo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; display: block; }
  .card-photo svg { width: 44%; height: 44%; fill: none; stroke: var(--amber); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; opacity: .85; }
  .card-photo-fallback { display: none; width: 100%; height: 100%; align-items: center; justify-content: center; }
  .card-photo.placeholder { background: var(--bg-alt-2); }
  .card-photo.placeholder .card-photo-fallback { display: flex; }
  .card-photo.placeholder img { display: none; }

  .card-name { font-size: 13.5px; line-height: 1.4; font-weight: 600; color: var(--ink); flex: 1; }

  .card-qty { font-size: 12px; font-weight: 700; color: var(--amber); font-family: var(--display); }

  .card-cta {
    position: relative;
    min-height: 42px;
    display: inline-flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 11px 13px; border-radius: 8px; border: 1px solid var(--line-strong); color: var(--ink-dim);
    text-decoration: none; font-size: 12.5px; font-weight: 600;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
  }
  .card-cta:hover { background: var(--amber); border-color: var(--amber); color: #16233a; }
  .card-cta svg { width: 13px; height: 13px; flex-shrink: 0; }

  /* ---- ponte pro bot ---- */
  .bridge {
    margin: 34px 0 10px; padding: 30px 28px; border-radius: 16px;
    background: linear-gradient(135deg, var(--bg-alt), var(--bg-alt-2));
    border: 1px solid var(--line-strong);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  }
  .bridge-text h3 { font-family: var(--display); font-size: 21px; font-weight: 700; margin: 0 0 6px; }
  .bridge-text p { margin: 0; font-size: 13.5px; color: var(--ink-faint); max-width: 46ch; line-height: 1.55; }
  .bridge-cta {
    display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
    background: var(--amber); color: #16233a; font-weight: 700; font-size: 14px;
    padding: 13px 22px; border-radius: 999px; text-decoration: none; white-space: nowrap;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .bridge-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

  /* ---- rodapé ---- */
  footer { border-top: 1px solid var(--line); padding: 40px 0 50px; margin-top: 10px; }
  .footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
  .footer-brand { font-family: var(--display); font-size: 22px; font-weight: 700; }
  .footer-tagline { color: var(--ink-faint); font-size: 13px; margin-top: 6px; max-width: 34ch; line-height: 1.55; }
  .footer-disclosure { font-size: 12.5px; line-height: 1.65; color: var(--ink-faint); max-width: 520px; }
  .footer-bottom { font-size: 12px; color: var(--ink-faint); opacity: .75; padding-top: 20px; border-top: 1px solid var(--line); }

  @media (max-width: 760px) {
    .hero { grid-template-columns: 1fr; padding: 40px 0 30px; }
    .hero-art { max-width: 260px; margin: 0 auto; }
    .card { flex-basis: 158px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .card, .bridge-cta, .wa-group-btn { transition: none !important; transform: none !important; }
  }

