  /* ═══════════════ RESET ═══════════════ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  img { display: block; max-width: 100%; }
  button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
  a { color: inherit; }
  ul { list-style: none; }

  /* ═══════════════ TOKENS ═══════════════ */
  :root {
    --bg-top:     #FFF3F0;
    --bg-bot:     #FDE3E7;
    --milk:       #FFF6F2;
    --surface:    #FFFDFB;
    --pink-soft:  #F9B8C6;
    --pink:       #E8859E;
    --pink-press: #C9677F;
    --vanilla:    #FBE3B9;
    --berry:      #7A3B4F;
    --berry-mut:  #8E5E70;
    --pink-text:  #B8556E; /* rosa p/ TEXTO (preços etc.) — contraste 4.5:1 */
    --line:       #F6DEE4;
    --line-press: #F3D3DA;
    --wpp:        #2EB85F;
    --wpp-press:  #1F8A45;
    --r-card:     24px;
    --r-pill:     100px;
  }

  body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: var(--berry);
    background: linear-gradient(180deg, var(--bg-top), var(--bg-bot)) fixed;
    overflow-x: hidden;
  }
  h1, h2, h3, .btn { font-family: 'Fredoka', sans-serif; font-weight: 600; }

  /* ═══════════════ CLAY UTILITIES ═══════════════ */
  .clay {
    background: var(--surface);
    border: 2.5px solid var(--line);
    border-radius: var(--r-card);
    box-shadow: 0 5px 0 var(--line-press);
  }
  .btn {
    display: block; width: 100%;
    border: 0; cursor: pointer; text-align: center; text-decoration: none;
    border-radius: 22px; padding: 15px 18px;
    font-size: 1.05rem; color: #fff;
    background: linear-gradient(180deg, #F49BB0, var(--pink));
    box-shadow: 0 5px 0 var(--pink-press), 0 14px 22px rgba(232,133,158,.4);
    transition: transform .15s ease-out, box-shadow .15s ease-out;
  }
  .btn:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--pink-press); }
  .btn:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible {
    outline: 3px solid var(--pink); outline-offset: 3px;
  }
  .btn-wpp {
    background: linear-gradient(180deg, #42CF74, var(--wpp));
    box-shadow: 0 5px 0 var(--wpp-press), 0 12px 20px rgba(46,184,95,.35);
  }
  .btn-wpp:active { box-shadow: 0 2px 0 var(--wpp-press); }

  .section { padding: 3.2rem 1.25rem; max-width: 1100px; margin: 0 auto; }
  .sec-title { font-size: clamp(1.5rem, 4.5vw, 2.1rem); line-height: 1.25; text-align: center; margin-bottom: .6rem; }
  .sec-sub { text-align: center; color: var(--berry-mut); font-weight: 700; font-size: .95rem; margin-bottom: 2rem; }

  .fi { opacity: 0; transform: translateY(24px); transition: opacity .5s ease-out, transform .5s ease-out; }
  .fi.show { opacity: 1; transform: none; }

  .skel { animation: pulse 1.2s ease-in-out infinite; background: var(--line) !important; border-color: var(--line) !important; box-shadow: none !important; }
  @keyframes pulse { 50% { opacity: .45; } }

  .sprinkles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .sprinkles i { position: absolute; display: block; border-radius: 4px; opacity: .55; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fi { opacity: 1; transform: none; transition: none; }
    * { animation: none !important; transition-duration: .01ms !important; }
  }

  /* ═══════════════ PORTINHA (GATE) ═══════════════ */
  #gate {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, var(--bg-top), var(--bg-bot));
    padding: 1.25rem; transition: opacity .3s ease-out;
  }
  .gate-box { width: 100%; max-width: 400px; padding: 2rem 1.6rem 1.6rem; position: relative; max-height: calc(100dvh - 2rem); overflow-y: auto; }
  .gate-logo { width: 84px; margin: 0 auto .8rem; filter: drop-shadow(0 10px 16px rgba(232,133,158,.35)); }
  .gate-title { text-align: center; font-size: 1.35rem; line-height: 1.25; }
  .gate-sub { text-align: center; color: var(--berry-mut); font-weight: 700; font-size: .85rem; line-height: 1.55; margin-top: .55rem; }
  .gate-input {
    width: 100%; margin: 1.3rem 0 .8rem;
    background: #fff; border: 2.5px solid var(--line); border-radius: 22px;
    padding: 14px 18px; font: inherit; font-weight: 700; color: var(--berry);
    box-shadow: inset 0 2px 6px rgba(122,59,79,.08), 0 3px 0 var(--line-press);
  }
  .gate-input::placeholder { color: #C9A3B0; font-weight: 600; }
  .gate-skip { display: block; margin: 1rem auto 0; text-align: center; font-size: .8rem; font-weight: 700; color: var(--berry-mut); text-decoration: underline; padding: .5rem; }
  .gate-step2 .gate-hi { text-align: center; font-size: .9rem; font-weight: 800; color: var(--pink-text); margin-bottom: .4rem; }
  .gate-opts { display: flex; flex-direction: column; gap: 11px; margin-top: 1.2rem; }
  .gate-opt {
    display: flex; align-items: center; gap: 12px; text-align: left;
    background: var(--surface); border: 2.5px solid var(--line); border-radius: 20px;
    padding: 11px 14px; box-shadow: 0 4px 0 var(--line-press);
    font-weight: 800; font-size: .92rem; color: var(--berry); width: 100%;
    transition: transform .15s ease-out, box-shadow .15s ease-out;
  }
  .gate-opt:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--line-press); }
  .gate-opt .ic { width: 42px; height: 42px; border-radius: 14px; flex: none; display: flex; align-items: center; justify-content: center; }
  .gate-opt small { display: block; font-weight: 600; font-size: .72rem; color: var(--berry-mut); }
  .gate-fade { opacity: 0; pointer-events: none; transition: opacity .3s; position: absolute; }
  #gate.closing { opacity: 0; }

  /* ═══════════════ HERO ═══════════════ */
  #hero { max-width: 1100px; margin: 0 auto; padding: .5rem 1.25rem 2rem; position: relative; }
  .hero-nav { display: flex; align-items: center; justify-content: center; padding: .2rem 0 .7rem; }
  /* logo 400x266 — largura manda, altura acompanha (não distorce em tela estreita) */
  .hero-nav img { width: 106px; max-width: 44%; height: auto; }
  @media (min-width: 768px) { .hero-nav img { width: 190px; max-width: 60%; } }
  .nav-wpp {
    display: inline-flex; align-items: center; gap: 6px;
    background: #E9F9EF; color: #1F8A45; font-weight: 800; font-size: .78rem;
    border: 2px solid #CDEFDA; border-radius: var(--r-pill);
    padding: 9px 14px; text-decoration: none; box-shadow: 0 3px 0 #CDEFDA;
  }
  .hero-head { max-width: 620px; }
  .hero-head h1 { font-size: clamp(1.42rem, 5.4vw, 2.7rem); line-height: 1.16; }
  .hl { color: var(--pink-text); position: relative; white-space: nowrap; }
  .hl svg { position: absolute; left: 0; right: 0; bottom: -.12em; width: 100%; height: .18em; }
  .hero-sub { color: var(--berry-mut); font-weight: 700; font-size: .88rem; line-height: 1.5; margin: .55rem 0 .85rem; max-width: 480px; }
  @media (min-width: 768px) { .hero-sub { font-size: .95rem; line-height: 1.6; margin: .9rem 0 1.4rem; } }
  .hero-strip { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 10px 24px 16px 4px; margin: 0 -1.25rem 1.1rem 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .hero-strip::-webkit-scrollbar { display: none; }
  .hero-kit {
    flex: none; width: 158px; scroll-snap-align: start; overflow: hidden; cursor: pointer;
    text-align: left; padding: 0; position: relative;
    transition: transform .2s ease-out;
  }
  .hero-kit:nth-child(odd)  { transform: rotate(-2deg); }
  .hero-kit:nth-child(even) { transform: rotate(1.6deg) translateY(5px); }
  .hero-kit .hk-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--line); }
  .hero-kit .hk-emoji { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, #F5DDE8, #ECC8D8); }
  .hero-kit .hk-b { padding: 8px 11px 11px; }
  .hero-kit .hk-n { font-weight: 800; font-size: .74rem; }
  .hero-kit .hk-p { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--pink-text); font-size: .85rem; margin-top: 2px; }
  .hero-kit .hk-p s { color: #C9A3B0; font-size: .66rem; font-weight: 400; margin-right: 5px; }
  /* ── Álbum de polaroids ────────────────────────────────
     Fotos reais de festas, caídas como se coladas num álbum:
     fita washi no topo, legenda à caneta, adesivos do tema
     escapando da moldura. Troca sozinha a cada poucos segundos. */
  .hero-album-wrap { margin: 0 0 1rem; }
  .hero-album {
    position: relative;
    /* foto quadrada (polaroid clássico): ganha altura sem encolher a imagem.
       o limite em vh faz o álbum encolher sozinho em tela baixa, pra logo +
       foto + frase + botão caberem na primeira tela em qualquer aparelho */
    width: min(72vw, 262px, 33vh);
    width: min(72vw, 262px, 33svh);
    margin: 0 auto;
    aspect-ratio: 5 / 6;
    isolation: isolate;
  }
  /* pilha de fotos por baixo — dá volume sem custar imagem */
  .hero-album::before, .hero-album::after {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: #FFFDFA; border-radius: 5px;
    box-shadow: 0 6px 18px rgba(122,59,79,.14);
  }
  .hero-album::before { transform: rotate(-5.5deg); }
  .hero-album::after  { transform: rotate(3.5deg); }

  .pola {
    position: absolute; inset: 0; z-index: 1;
    background: #FFFDFA; border-radius: 5px;
    padding: 10px 10px 0;
    box-shadow: 0 12px 28px rgba(122,59,79,.22), 0 2px 6px rgba(122,59,79,.14);
    opacity: 0;
    transform: rotate(var(--rot, 0deg)) scale(.93);
    transition: opacity .6s ease, transform .6s cubic-bezier(.22,.9,.28,1);
    will-change: opacity, transform;
    cursor: pointer;
  }
  .pola.on { opacity: 1; z-index: 2; transform: rotate(var(--rot, 0deg)) scale(1); }
  .pola.out { opacity: 0; z-index: 1; transform: rotate(calc(var(--rot, 0deg) + 5deg)) scale(1.04); }

  .pola-photo {
    width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
    display: block; border-radius: 3px; background: var(--line);
  }
  .pola-cap {
    height: 58px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1px;
    transform: rotate(-.8deg); padding: 0 6px;
  }
  .pola-cap .cap-main {
    font-family: 'Caveat', 'Bradley Hand', cursive;
    font-size: 1.32rem; font-weight: 700; color: #6B4453; line-height: 1.05;
  }
  .pola-cap .cap-sub {
    font-family: 'Caveat', 'Bradley Hand', cursive;
    font-size: .95rem; font-weight: 500; color: #A98392; line-height: 1;
  }

  /* fita washi colando a foto no álbum */
  .pola-tape {
    position: absolute; top: -10px; left: 50%; z-index: 3;
    width: 78px; height: 23px;
    transform: translateX(-50%) rotate(var(--tape-rot, -3deg));
    background:
      repeating-linear-gradient(115deg, rgba(255,255,255,.32) 0 5px, transparent 5px 10px),
      var(--tape, #F9B8C6);
    opacity: .82;
    box-shadow: 0 1px 4px rgba(122,59,79,.18);
  }

  /* adesivos temáticos — escapam da moldura de propósito */
  .pola-stick {
    position: absolute; z-index: 4; pointer-events: none;
    font-size: 2.6rem; line-height: 1;
    filter: drop-shadow(0 3px 6px rgba(122,59,79,.34));
  }
  @media (min-width: 768px) { .pola-stick { font-size: 3.1rem; } }
  /* confetes na paleta da foto */
  .pola-dot { position: absolute; z-index: 0; border-radius: 50%; opacity: .85; }
  .pola-bar { position: absolute; z-index: 0; border-radius: 3px; opacity: .8; }

  .album-dots { display: flex; gap: 7px; justify-content: center; margin-top: .8rem; }
  .album-dots i {
    width: 7px; height: 7px; border-radius: 50%; display: block;
    background: var(--line-press); transition: width .25s, background .25s;
  }
  .album-dots i.on { width: 20px; border-radius: 10px; background: var(--pink); }

  @media (prefers-reduced-motion: reduce) {
    .pola { transition: none; }
  }

  .hero-cta { max-width: 420px; }
  .hero-proof { display: flex; align-items: center; gap: 8px; justify-content: center; max-width: 420px; margin-top: .9rem; font-size: .78rem; font-weight: 800; color: var(--berry-mut); }
  .hero-proof .dots { display: flex; }
  .hero-proof .dots i { width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid var(--bg-top); margin-left: -6px; display: block; }
  .badge {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    background: #FFE9A8; color: #7A5A10; font-size: .6rem; font-weight: 800;
    border-radius: var(--r-pill); padding: 4px 9px;
  }
  @media (min-width: 768px) {
    #hero { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; padding-top: 1.4rem; }
    .hero-nav { grid-column: 1 / -1; }
    .hero-strip { margin-right: 0; padding-right: 4px; }
    .hero-kit { width: 190px; }
    .hero-cta, .hero-proof { margin-left: 0; }
    /* no desktop o texto lê primeiro à esquerda, o álbum ancora à direita */
    .hero-head { order: 1; }
    .hero-album-wrap { order: 2; margin: 0; }
    .hero-album { width: min(34vw, 330px); }
  }

  /* ═══════════════ PROVA SOCIAL ═══════════════ */
  #prova { padding-right: 0; }
  #prova .sec-title, #prova .sec-sub { padding-right: 1.25rem; }
  #prova .prova-box { text-align: center; }
  .depo-list {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x proximity;
    margin: 1.8rem 0; padding: 6px 24px 14px 2px; text-align: left;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .depo-list::-webkit-scrollbar { display: none; }
  .depo {
    flex: none; width: 260px; scroll-snap-align: start;
    padding: 0; overflow: hidden; position: relative;
    transition: transform .25s ease-out, box-shadow .25s ease-out;
  }
  .depo.fi { transform: translateY(28px) scale(.9) rotate(0deg) !important; transition: opacity .5s ease-out, transform .6s cubic-bezier(.34,1.56,.64,1); }
  .depo.fi.show { transform: none !important; }
  .depo:nth-child(odd).fi.show  { transform: rotate(-1.4deg) !important; }
  .depo:nth-child(even).fi.show { transform: rotate(1.2deg) translateY(4px) !important; }
  @media (hover: hover) {
    .depo:hover { transform: rotate(0deg) scale(1.035) !important; box-shadow: 0 14px 30px rgba(122,59,79,.18); z-index: 2; }
  }
  .depo-quote {
    position: absolute; top: 10px; right: 10px; z-index: 1;
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, #F49BB0, var(--pink));
    color: #fff; font-family: Georgia, serif; font-weight: 700; font-size: 1.15rem;
    box-shadow: 0 4px 0 var(--pink-press), 0 6px 14px rgba(232,133,158,.4);
    transform: rotate(8deg);
  }
  .depo-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
  .depo-ava {
    width: 40px; height: 40px; border-radius: 50%; flex: none;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: .95rem; color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--pink-press));
    border: 2.5px solid var(--pink-soft); overflow: hidden;
  }
  .depo-ava img { width: 100%; height: 100%; object-fit: cover; }
  .depo-head .dh-n { font-weight: 800; font-size: .85rem; line-height: 1.2; }
  .depo-head .dh-r { font-weight: 600; font-size: .7rem; color: var(--berry-mut); }
  .depo-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--line); }
  .depo-body { padding: 12px 14px 14px; }
  .depo-body .stars { color: #E8A93C; font-size: .8rem; letter-spacing: 2px; }
  .depo-body p { font-size: .82rem; font-weight: 600; line-height: 1.55; margin-top: .4rem; }
  @media (min-width: 768px) { .depo { width: 300px; } }
  #prova .btn { max-width: 320px; margin: .4rem auto 0; }

  /* ═══════════════ CATÁLOGO ═══════════════ */
  #catalogo { padding-right: 0; }
  #catalogo .sec-title, #catalogo .sec-sub { padding-right: 1.25rem; }
  .chips { display: flex; gap: 8px; overflow-x: auto; padding: 6px 24px 12px 2px; margin-bottom: .6rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .chips::-webkit-scrollbar { display: none; }
  .chip {
    flex: none; font-weight: 800; font-size: .82rem; border-radius: var(--r-pill);
    padding: 10px 16px; min-height: 44px;
    background: var(--surface); color: var(--berry-mut);
    border: 2px solid var(--line); box-shadow: 0 3px 0 var(--line-press);
    transition: transform .15s ease-out;
  }
  .chip:active { transform: translateY(2px); }
  .chip.on { background: linear-gradient(180deg, #F49BB0, var(--pink)); color: #fff; border-color: var(--pink); box-shadow: 0 3px 0 var(--pink-press); }
  .cat-rowhead { display: flex; align-items: baseline; justify-content: space-between; margin: 1rem 1.25rem .7rem 2px; }
  .cat-rowhead h3 { font-size: 1.05rem; }
  .cat-rowhead span { font-size: .72rem; font-weight: 800; color: var(--pink-text); }
  .cat-row { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x proximity; padding: 6px 24px 14px 2px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .cat-row::-webkit-scrollbar { display: none; }
  .kit-card {
    flex: none; width: 200px; scroll-snap-align: start; overflow: hidden; cursor: pointer;
    text-align: left; padding: 0; position: relative;
  }
  .kit-card .kc-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--line); }
  .kit-card .kc-emoji { width: 100%; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; font-size: 3.4rem; background: linear-gradient(135deg, #F5DDE8, #ECC8D8); }
  .kit-card .kc-b { padding: 10px 13px 13px; }
  .kit-card .kc-n { font-weight: 800; font-size: .82rem; }
  .kit-card .kc-d { font-weight: 600; font-size: .68rem; color: var(--berry-mut); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .kit-card .kc-p { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--pink-text); font-size: .98rem; margin-top: 6px; }
  .kit-card .kc-p s { color: #C9A3B0; font-size: .7rem; font-weight: 400; margin-right: 6px; }
  .cat-empty { margin: 1rem 1.25rem 0 2px; padding: 1.6rem; text-align: center; }
  .cat-empty p { font-weight: 700; color: var(--berry-mut); line-height: 1.6; margin-bottom: 1rem; }
  .cat-empty .btn { max-width: 300px; margin: 0 auto; }
  .how-link { display: block; margin: 2rem auto 0; text-align: center; font-size: .85rem; font-weight: 700; color: var(--berry-mut); text-decoration: underline; padding: .6rem; }
  @media (min-width: 768px) { .kit-card { width: 240px; } }

  /* ═══════════════ BOTTOM-SHEET ═══════════════ */
  #sheet-backdrop {
    position: fixed; inset: 0; z-index: 1100;
    background: rgba(107,53,72,.45);
    opacity: 0; transition: opacity .3s ease-out;
  }
  #sheet-backdrop.open { opacity: 1; }
  #sheet {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1101;
    max-height: 88dvh; overflow-y: auto;
    background: var(--surface); border-radius: 34px 34px 0 0;
    box-shadow: 0 -14px 40px rgba(122,59,79,.25);
    padding: 12px 18px calc(18px + env(safe-area-inset-bottom));
    transform: translateY(100%); transition: transform .3s ease-out;
    max-width: 560px; margin: 0 auto;
  }
  #sheet.open { transform: translateY(0); }
  .sheet-handle { width: 44px; height: 5px; border-radius: 10px; background: var(--line-press); margin: 0 auto 12px; }
  .sheet-x {
    position: absolute; top: 10px; right: 12px; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 800; color: var(--berry-mut);
    border-radius: 50%;
  }
  .sheet-gal { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; border-radius: 20px; border: 2.5px solid var(--line); scrollbar-width: none; }
  .sheet-gal::-webkit-scrollbar { display: none; }
  .sheet-gal img { flex: none; width: 100%; aspect-ratio: 4/3; object-fit: cover; scroll-snap-align: start; }
  .sheet-gal .sg-emoji { flex: none; width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 4rem; background: linear-gradient(135deg, #F5DDE8, #ECC8D8); }
  .sheet-dots { display: flex; gap: 6px; justify-content: center; margin-top: 10px; }
  .sheet-dots i { width: 7px; height: 7px; border-radius: 10px; background: var(--line-press); transition: width .2s, background .2s; }
  .sheet-dots i.on { width: 18px; background: var(--pink); }
  .sheet-name { font-size: 1.25rem; margin: .8rem 2px 2px; }
  .sheet-price { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--pink-text); font-size: 1.05rem; margin: 0 2px .8rem; }
  .sheet-price s { color: #C9A3B0; font-weight: 400; font-size: .8rem; margin-right: 6px; }
  .sheet-price small { display: block; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .74rem; color: var(--berry-mut); margin-top: 3px; }
  .sheet-itens { background: var(--milk); border-radius: 18px; padding: 13px 15px; margin-bottom: 1rem; }
  .sheet-itens h3 { font-family: 'Nunito', sans-serif; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--berry-mut); margin-bottom: .6rem; }
  .sheet-itens ul { columns: 2; column-gap: 14px; }
  .sheet-itens li { font-size: .78rem; font-weight: 700; margin-bottom: 7px; display: flex; gap: 6px; align-items: flex-start; break-inside: avoid; }
  .sheet-itens li svg { flex: none; margin-top: 3px; }

  /* ═══════════════ COMO FUNCIONA ═══════════════ */
  #como-funciona .steps { display: flex; flex-direction: column; gap: 14px; max-width: 560px; margin: 0 auto; }
  .step { display: flex; gap: 14px; align-items: center; padding: 15px 16px; }
  .step .n {
    font-family: 'Fredoka', sans-serif; flex: none; width: 46px; height: 46px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.2rem; color: #fff;
  }
  .step h3 { font-size: .98rem; }
  .step p { font-size: .8rem; font-weight: 600; color: var(--berry-mut); line-height: 1.5; margin-top: 2px; }
  #como-funciona .btn { max-width: 320px; margin: 1.8rem auto 0; }
  @media (min-width: 768px) { #como-funciona .steps { flex-direction: row; max-width: 1000px; } .step { flex: 1; flex-direction: column; text-align: center; } }

  /* ═══════════════ RODAPÉ ═══════════════ */
  #rodape { background: var(--berry); color: #E8C7D2; padding: 2.6rem 1.25rem calc(2.2rem + env(safe-area-inset-bottom)); margin-top: 2rem; }
  .foot-in { max-width: 1100px; margin: 0 auto; text-align: center; }
  .foot-in img { height: 40px; width: auto; margin: 0 auto .8rem; }
  .foot-slogan { font-family: 'Fredoka', sans-serif; font-weight: 500; color: #fff; font-size: 1.05rem; }
  .foot-meta { font-size: .8rem; font-weight: 600; line-height: 1.9; margin-top: .7rem; }
  .foot-meta a { text-decoration: underline; }

  /* ═══════════════ WHATSAPP FLUTUANTE ═══════════════ */
  #wpp-float {
    position: fixed; z-index: 900;
    right: 16px; bottom: calc(16px + env(safe-area-inset-bottom));
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(180deg, #42CF74, var(--wpp));
    box-shadow: 0 5px 0 var(--wpp-press), 0 12px 22px rgba(46,184,95,.4);
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s ease-out, opacity .2s ease-out;
  }
  #wpp-float:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--wpp-press); }
  #wpp-float.hide { opacity: 0; pointer-events: none; }

  /* ═══════════════ FAQ ═══════════════ */
  #faq { max-width: 720px; margin: 0 auto; padding: 3.2rem 1.25rem; }
  .faq-item { border: 2.5px solid var(--line); border-radius: 18px; margin-bottom: .75rem; background: var(--surface); overflow: hidden; }
  .faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1rem 1.2rem; text-align: left; font-family: 'Fredoka', sans-serif; font-weight: 600;
    font-size: .98rem; color: var(--berry); cursor: pointer; background: none; border: 0;
  }
  .faq-q .ic { flex: none; font-size: 1.2rem; color: var(--pink); transition: transform .25s; }
  .faq-item.open .faq-q .ic { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .faq-a p { padding: 0 1.2rem 1.1rem; color: var(--berry-mut); font-weight: 700; font-size: .88rem; line-height: 1.6; }
  .faq-item.open .faq-a { max-height: 240px; }
