/* Extraído dos blocos <style> inline do index.html (10/08/2026), */
/* para fechar a CSP: style-src 'self', sem 'unsafe-inline'. */

    :root {
      --bg: #0A0C0E;
      --surface: #14171B;
      --surface-2: #1A1E23;
      --border: #23272E;
      --text: #F4F5F6;
      --muted: #9BA1A8;
      --green: #1FB877;
      --green-hover: #25CE86;
      --green-soft: rgba(31, 184, 119, 0.12);
      --gold: #E7B85C;
      --red: #EF6A5C;
      --display: 'Bricolage Grotesque', system-ui, sans-serif;
      --body: 'Manrope', system-ui, sans-serif;
      --container: 1140px;
      --radius: 16px;
      color-scheme: dark;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--body);
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1, h2, h3, .display { font-family: var(--display); letter-spacing: -0.02em; line-height: 1.08; }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* QA: foco visível pra navegação por teclado */
    a:focus-visible, button:focus-visible, summary:focus-visible {
      outline: 2px solid var(--green); outline-offset: 3px; border-radius: 6px;
    }
    /* QA: âncoras não ficam atrás da nav fixa */
    section[id] { scroll-margin-top: 86px; }

    .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
    .section { padding: 96px 0; position: relative; }
    .eyebrow {
      font-family: var(--body);
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--green); display: inline-flex; align-items: center; gap: 8px;
    }
    .eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--green); border-radius: 2px; }
    .muted { color: var(--muted); }
    .green { color: var(--green); }
    .gold { color: var(--gold); }
    .center { text-align: center; }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      font-family: var(--body); font-weight: 700; font-size: 1.02rem;
      padding: 16px 30px; border-radius: 12px; cursor: pointer; border: none;
      transition: transform .18s ease, box-shadow .25s ease, background .2s ease, filter .2s ease;
    }
    .btn-primary {
      background: var(--green); color: #04130C;
      box-shadow: 0 8px 24px rgba(31,184,119,0.35);
    }
    .btn-primary:hover { background: var(--green-hover); transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 46px rgba(31,184,119,0.5); filter: brightness(1.05); }
    .btn-primary:active { transform: translateY(0) scale(0.98); box-shadow: 0 5px 16px rgba(31,184,119,0.32); }
    @media (prefers-reduced-motion: reduce) {
      .btn-primary:hover, .btn-primary:active { transform: none; }
    }
    .btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
    .btn-ghost:hover { border-color: var(--muted); transform: translateY(-2px); }
    .btn-lg { padding: 19px 38px; font-size: 1.1rem; }

    /* Nav */
    header.nav {
      position: sticky; top: 0; z-index: 50;
      background: rgba(10,12,14,0.72); backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .logo { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 1.18rem; }
    .logo-mark {
      width: 30px; height: 30px; border-radius: 9px; position: relative; flex-shrink: 0;
      background: linear-gradient(135deg, var(--red) 0%, var(--gold) 42%, var(--green) 100%);
    }
    .logo-mark::after { content: ""; position: absolute; inset: 7px; border-radius: 4px; background: var(--bg); }
    .nav-cta { font-size: 0.92rem; padding: 11px 22px; }
    .nav-links { display: none; gap: 30px; font-size: 0.95rem; font-weight: 600; }
    .nav-links a { color: var(--muted); transition: color .2s; }
    .nav-links a:hover { color: var(--text); }
    @media (min-width: 900px) { .nav-links { display: flex; } }

    /* Hero */
    .hero { padding: 88px 0 80px; position: relative; overflow: hidden; }
    .hero::before {
      content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
      width: 760px; height: 520px; pointer-events: none; z-index: 0;
      background: radial-gradient(ellipse at center, rgba(31,184,119,0.16), transparent 65%);
      filter: blur(20px);
    }
    .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
    @media (min-width: 940px) { .hero-grid { grid-template-columns: 1.08fr 0.92fr; gap: 40px; } }

    .badge-pill {
      display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 100px;
      background: var(--green-soft); border: 1px solid rgba(31,184,119,0.25);
      font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; color: var(--green); margin-bottom: 26px;
    }
    .badge-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
    .hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.7rem); font-weight: 700; margin-bottom: 22px; text-wrap: balance; }
    .hero .sub { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--muted); max-width: 560px; margin-bottom: 34px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 30px; }
    .reassure { font-size: 0.86rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 18px; }
    .reassure span { display: inline-flex; align-items: center; gap: 7px; }
    .reassure svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

    .proof-row { display: flex; align-items: center; gap: 16px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--border); }
    .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }
    .proof-row .pt { font-size: 0.9rem; color: var(--muted); }
    .proof-row .pt b { color: var(--text); }

    /* Book mockup */
    .book-stage { display: flex; justify-content: center; perspective: 1600px; }
    .book {
      position: relative; width: 270px; height: 372px; border-radius: 6px 10px 10px 6px;
      transform: rotateY(-22deg) rotateX(5deg); transform-style: preserve-3d;
      box-shadow: 38px 42px 80px rgba(0,0,0,0.6);
      background: linear-gradient(135deg, #0E2A1E 0%, #0B1A14 55%, #0A0C0E 100%);
      border: 1px solid rgba(31,184,119,0.25);
      transition: transform .6s cubic-bezier(.2,.7,.2,1);
    }
    .book:hover { transform: rotateY(-12deg) rotateX(3deg) translateY(-6px); }
    .book::before { /* spine */
      content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 16px;
      background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0));
      border-radius: 6px 0 0 6px;
    }
    .book::after { /* page edge */
      content: ""; position: absolute; right: -7px; top: 6px; bottom: 6px; width: 8px;
      background: repeating-linear-gradient(90deg, #d8dadc, #d8dadc 1px, #b9bcbe 1px, #b9bcbe 2px);
      transform: rotateY(20deg); transform-origin: left; border-radius: 0 3px 3px 0;
    }
    .book-inner { position: absolute; inset: 0; padding: 30px 26px; display: flex; flex-direction: column; }
    .book-kicker { font-family: var(--body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
    .book-arc { margin: 18px 0 14px; height: 64px; display: flex; align-items: flex-end; gap: 6px; }
    .book-arc i { flex: 1; border-radius: 3px 3px 0 0; display: block; }
    .book-arc i:nth-child(1) { height: 30%; background: var(--red); }
    .book-arc i:nth-child(2) { height: 46%; background: #E08A52; }
    .book-arc i:nth-child(3) { height: 64%; background: var(--gold); }
    .book-arc i:nth-child(4) { height: 84%; background: #6BBF7E; }
    .book-arc i:nth-child(5) { height: 100%; background: var(--green); box-shadow: 0 0 16px rgba(31,184,119,0.6); }
    .book h3 { font-size: 1.72rem; font-weight: 700; line-height: 1.05; margin-top: auto; }
    .book h3 .vm { color: var(--red); }
    .book h3 .vd { color: var(--green); }
    .book-sub { font-family: var(--body); font-size: 0.8rem; color: var(--muted); margin-top: 12px; }
    .book-author { font-family: var(--body); font-size: 0.78rem; font-weight: 700; color: var(--text); margin-top: 18px; letter-spacing: 0.03em; }

    .book-tag {
      position: absolute; bottom: -16px; right: -14px; z-index: 3;
      background: var(--gold); color: #1A1303; font-family: var(--body); font-weight: 800;
      font-size: 0.74rem; padding: 10px 16px; border-radius: 100px; transform: rotateY(0);
      box-shadow: 0 10px 26px rgba(0,0,0,0.45); text-align: center; line-height: 1.15;
    }

    /* Section heads */
    .sec-head { max-width: 640px; margin-bottom: 56px; }
    .sec-head.center { margin-left: auto; margin-right: auto; }
    .sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; margin: 16px 0 16px; text-wrap: balance; }
    .sec-head p { color: var(--muted); font-size: 1.08rem; }

    /* Personas */
    .cards-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
    @media (min-width: 760px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }
    .card {
      background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 30px 28px; transition: border-color .25s, transform .25s, background .25s;
    }
    .card:hover { border-color: rgba(31,184,119,0.4); transform: translateY(-4px); background: var(--surface-2); }
    .card .ic {
      width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
      background: var(--green-soft); color: var(--green); margin-bottom: 20px;
    }
    .card .ic svg { width: 23px; height: 23px; }
    .card h3 { font-family: var(--display); font-size: 1.16rem; font-weight: 600; margin-bottom: 9px; }
    .card p { color: var(--muted); font-size: 0.97rem; }

    /* Benefits split */
    .split { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
    @media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
    .benefit-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
    .benefit-list li { display: flex; gap: 16px; align-items: flex-start; }
    .benefit-list .chk {
      flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
      background: var(--green); color: #04130C; margin-top: 2px;
    }
    .benefit-list .chk svg { width: 17px; height: 17px; }
    .benefit-list h4 { font-family: var(--body); font-size: 1.06rem; font-weight: 700; margin-bottom: 3px; }
    .benefit-list p { color: var(--muted); font-size: 0.96rem; }

    /* Before/after card */
    .ba-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px; }
    .ba-row { display: flex; align-items: center; gap: 16px; }
    .ba-col { flex: 1; }
    .ba-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
    .ba-bar { height: 10px; border-radius: 100px; background: var(--surface-2); overflow: hidden; }
    .ba-bar i { display: block; height: 100%; border-radius: 100px; }
    .ba-amt { font-family: var(--display); font-size: 1.7rem; font-weight: 700; margin-top: 14px; }
    .ba-sub { font-size: 0.84rem; color: var(--muted); margin-top: 4px; }
    .ba-arrow { color: var(--green); flex-shrink: 0; }
    .ba-arrow svg { width: 30px; height: 30px; }
    .ba-foot { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 0.92rem; color: var(--muted); }

    /* Mechanism stepper */
    .steps { display: grid; grid-template-columns: 1fr; gap: 22px; counter-reset: step; }
    @media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
    .step {
      position: relative; background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 34px 28px 30px;
      transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease, background .3s ease, box-shadow .3s ease;
    }
    .step:hover {
      transform: translateY(-6px);
      border-color: var(--green);
      background: var(--surface-2);
      box-shadow: 0 18px 44px rgba(0,0,0,0.38), 0 0 0 1px var(--green-soft);
    }
    .step .num {
      font-family: var(--display); font-size: 0.9rem; font-weight: 700; color: #04130C;
      width: 38px; height: 38px; border-radius: 50%; background: var(--green); display: grid; place-items: center; margin-bottom: 22px;
      transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
    }
    .step:hover .num { transform: scale(1.12); box-shadow: 0 0 0 6px var(--green-soft); }
    .step.is-3:hover { border-color: var(--gold); }
    .step.is-3:hover .num { box-shadow: 0 0 0 6px rgba(231,184,92,0.16); }
    @media (prefers-reduced-motion: reduce) {
      .step, .step .num { transition: none; }
      .step:hover { transform: none; }
      .step:hover .num { transform: none; }
    }
    .step h3 { font-family: var(--display); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
    .step p { color: var(--muted); font-size: 0.96rem; }
    .step.is-3 .num { background: var(--gold); }

    /* Stats */
    .stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
    @media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
    .stat { background: var(--bg); padding: 36px 24px; text-align: center; }
    .stat .n { font-family: var(--display); font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 700; color: var(--green); }
    .stat .l { font-size: 0.9rem; color: var(--muted); margin-top: 6px; }

    /* Testimonials */
    .quotes { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
    @media (min-width: 820px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
    .quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
    .quote .qs { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 14px; }
    .quote p { font-size: 0.98rem; flex: 1; }
    .quote .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
    .quote .av { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-weight: 800; font-family: var(--display); color: #04130C; }
    .quote .who b { font-size: 0.94rem; display: block; }
    .quote .who span { font-size: 0.82rem; color: var(--muted); }

    /* Inside / deliverables */
    .inside-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
    @media (min-width: 760px) { .inside-grid { grid-template-columns: repeat(3, 1fr); } }
    .inside-item { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; }
    .inside-item .tag { flex-shrink: 0; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 7px; background: var(--green-soft); color: var(--green); }
    .inside-item .tag.bonus { background: rgba(231,184,92,0.14); color: var(--gold); }
    .inside-item h4 { font-family: var(--body); font-weight: 700; font-size: 1.02rem; margin-bottom: 4px; }
    .inside-item p { font-size: 0.9rem; color: var(--muted); }

    /* Offer */
    .offer-wrap { max-width: 560px; margin: 0 auto; }
    .offer {
      background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid rgba(31,184,119,0.35);
      border-radius: 24px; padding: 44px 38px; text-align: center; position: relative; overflow: hidden;
    }
    .offer::before { content: ""; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 380px; height: 220px; background: radial-gradient(ellipse, rgba(31,184,119,0.18), transparent 70%); }
    .offer > * { position: relative; }
    .offer .tagline { font-weight: 700; color: var(--green); letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.82rem; }
    .offer .old { color: var(--muted); text-decoration: line-through; font-size: 1.15rem; margin-top: 18px; }
    .offer .price { font-family: var(--display); font-weight: 700; font-size: 4rem; line-height: 1; margin: 4px 0 6px; }
    .offer .price small { font-size: 1.5rem; color: var(--muted); font-weight: 600; }
    .offer .install { color: var(--muted); font-size: 0.96rem; margin-bottom: 28px; }
    .offer .btn { width: 100%; }
    .offer-bullets { list-style: none; text-align: left; max-width: 330px; margin: 28px auto 0; display: flex; flex-direction: column; gap: 12px; }
    .offer-bullets li { display: flex; gap: 11px; align-items: center; font-size: 0.96rem; color: var(--text); }
    .offer-bullets svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

    .guarantee { display: flex; gap: 20px; align-items: center; max-width: 560px; margin: 28px auto 0; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px 26px; }
    .guarantee .seal { flex-shrink: 0; width: 58px; height: 58px; border-radius: 50%; border: 2px dashed var(--gold); display: grid; place-items: center; color: var(--gold); font-family: var(--display); font-weight: 700; font-size: 0.7rem; text-align: center; line-height: 1.05; }
    .guarantee h4 { font-family: var(--body); font-weight: 700; margin-bottom: 4px; }
    .guarantee p { font-size: 0.9rem; color: var(--muted); }

    /* FAQ */
    .faq { max-width: 760px; margin: 0 auto; }
    .faq details { border-bottom: 1px solid var(--border); }
    .faq summary { list-style: none; cursor: pointer; padding: 24px 4px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--display); font-weight: 600; font-size: 1.08rem; }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary .pm { flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--green); transition: transform .25s, background .25s; font-size: 1.2rem; line-height: 1; }
    .faq details[open] summary .pm { transform: rotate(45deg); background: var(--green-soft); }
    .faq .ans { padding: 0 4px 24px; color: var(--muted); font-size: 0.98rem; max-width: 660px; }

    /* Final CTA */
    .final {
      background: linear-gradient(135deg, #0E2A1E 0%, var(--surface) 60%); border: 1px solid rgba(31,184,119,0.3);
      border-radius: 28px; padding: 64px 40px; text-align: center; position: relative; overflow: hidden;
    }
    .final::after { content: ""; position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%); width: 560px; height: 300px; background: radial-gradient(ellipse, rgba(31,184,119,0.2), transparent 70%); pointer-events: none; }
    .final > * { position: relative; }
    .final h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; margin-bottom: 18px; text-wrap: balance; }
    .final p { color: var(--muted); font-size: 1.1rem; max-width: 540px; margin: 0 auto 32px; }

    /* Footer */
    footer.ft { border-top: 1px solid var(--border); padding: 48px 0 40px; }
    .ft-inner { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
    @media (min-width: 700px) { .ft-inner { flex-direction: row; justify-content: space-between; align-items: center; } }
    .ft .disc { font-size: 0.82rem; color: var(--muted); max-width: 520px; }
    .ft-copy { font-size: 0.8rem; color: var(--muted); white-space: nowrap; }

    /* Layout refinements */
    .band { background: #0E1115; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .steps { position: relative; }
    .step { position: relative; z-index: 1; }
    @media (min-width: 820px) {
      .steps::before { content: ""; position: absolute; top: 53px; left: 17%; right: 17%; height: 2px; z-index: 0; background: linear-gradient(90deg, var(--green), var(--gold)); opacity: 0.28; }
    }
    .inside-item.feat { grid-column: 1 / -1; align-items: center; background: linear-gradient(120deg, var(--surface-2), var(--surface)); border-color: rgba(31,184,119,0.32); padding: 26px 30px; }
    .inside-item.feat h4 { font-size: 1.2rem; }
    .inside-item.feat .tag { font-size: 0.72rem; }
    .statement { max-width: 820px; margin: 0 auto; text-align: center; }
    .statement p { font-family: var(--display); font-weight: 600; font-size: clamp(1.4rem, 3.2vw, 2.1rem); line-height: 1.25; letter-spacing: -0.01em; text-wrap: balance; }

    /* Reveal */
    @media (prefers-reduced-motion: no-preference) {
      .reveal { opacity: 0; transform: translateY(22px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
      .d1 { animation-delay: .05s; } .d2 { animation-delay: .14s; } .d3 { animation-delay: .23s; } .d4 { animation-delay: .32s; }
      @keyframes rise { to { opacity: 1; transform: translateY(0); } }
    }

/* ---- segundo bloco inline ---- */

    .wa-float {
      position: fixed; right: 24px; bottom: 24px; z-index: 90;
      width: 78px; height: 78px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: #22c15c; color: #fff;
      box-shadow: 0 6px 20px rgba(0,0,0,.32), 0 2px 6px rgba(0,0,0,.2);
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
    }
    .wa-float svg { width: 48px; height: 48px; }
    .wa-float:hover { background: #1eae53; transform: translateY(-2px) scale(1.05);
      box-shadow: 0 12px 28px rgba(0,0,0,.36), 0 3px 8px rgba(0,0,0,.22); }
    .wa-float:active { transform: scale(.96); }
    @media (max-width: 520px) { .wa-float { right: 18px; bottom: 18px; width: 66px; height: 66px; } .wa-float svg { width: 42px; height: 42px; } }


/* ---- utilitarias: eram atributos style= inline (CSP style-src 'self') ---- */
.u-pt0{padding-top:0}
.u-red{color:var(--red)}
.u-green{color:var(--green)}
.u-bg-green{background:var(--green)}
.u-bg-gold{background:var(--gold)}
.u-bar-88-red{width:88%;background:var(--red)}
.u-bar-100-green{width:100%;background:var(--green)}
.u-mt64{margin:64px auto 0}
.u-mb12{margin-bottom:12px}
.u-nota{font-size:0.82rem;color:var(--muted);margin-top:14px}
.u-titulo-secao{font-family:var(--display);font-size:clamp(1.8rem,3.6vw,2.5rem);font-weight:700;margin:16px 0 28px;text-wrap:balance}
