/* ============================================================
   Lystige — Estilo editorial / site institucional
   Paleta: papel quente · tinta · terracota · verde-pinheiro
   ============================================================ */

:root {
  --paper:    #F4EEE2;
  --paper-2:  #ECE3D2;
  --ink:      #181410;
  --ink-soft: #5A5247;
  --accent:   #C8472A;   /* terracota */
  --accent-d: #A6371E;
  --pine:     #2F5D50;   /* verde-pinheiro */
  --gold:     #C9A24B;
  --line:     rgba(24,20,16,.14);
  --shadow:   18px 18px 0 rgba(24,20,16,.06);

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1240px;
  --pad:  clamp(1.25rem, 5vw, 5rem);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: clip;
  font-weight: 400;
}

::selection { background: var(--accent); color: var(--paper); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- textura de grão ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  padding: .85em 1.6em; border-radius: 100px; cursor: pointer;
  border: 1.5px solid var(--ink); transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.btn--accent:hover { background: var(--accent-d); border-color: var(--accent-d); box-shadow: 0 12px 30px rgba(200,71,42,.35); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { box-shadow: 0 12px 30px rgba(24,20,16,.3); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--full { width: 100%; }
.btn--whats { background: #1FA855; border-color: #1FA855; color: #fff; }
.btn--whats:hover { background: #17833f; border-color: #17833f; box-shadow: 0 12px 30px rgba(31,168,85,.32); }
.wa-ico { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- topbar marquee ---------- */
.topbar {
  background: var(--ink); color: var(--paper);
  overflow: hidden; font-size: .8rem; letter-spacing: .04em;
}
.topbar__track {
  display: flex; gap: 2rem; white-space: nowrap;
  padding: .55rem 0; width: max-content;
  animation: scroll-x 28s linear infinite;
}
.topbar__track span { padding-right: 2rem; opacity: .9; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 2rem;
  padding: 1rem var(--pad);
  background: rgba(244,238,226,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--line); padding-top: .7rem; padding-bottom: .7rem; box-shadow: 0 6px 24px rgba(24,20,16,.05); }
.nav__logo {
  font-family: var(--serif); font-weight: 600; font-size: 1.6rem;
  letter-spacing: -.02em; margin-right: auto;
}
.nav__logo-dot { color: var(--accent); }
.nav__links { display: flex; gap: 1.8rem; }
.nav__links a {
  font-size: .95rem; font-weight: 500; position: relative; padding: .2em 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--accent); transition: width .3s;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: .6em 1.3em; font-size: .9rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__burger span { width: 26px; height: 2px; background: var(--ink); transition: .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 auto 0; top: 0; z-index: 90;
  background: var(--paper); padding: 6rem var(--pad) 2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  transform: translateY(-110%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.6rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: grid; grid-template-columns: 1.4fr .9fr; gap: 3rem; align-items: center;
  padding: clamp(3rem, 8vw, 7rem) var(--pad) clamp(4rem, 9vw, 8rem);
  max-width: var(--maxw); margin: 0 auto;
  overflow-x: clip;
}
.hero__bg {
  position: absolute; inset: -10% -40% auto auto; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at 30% 30%, rgba(200,71,42,.16), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(47,93,80,.14), transparent 60%);
  filter: blur(10px); z-index: -1; border-radius: 50%;
}
.hero__eyebrow {
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6rem); line-height: .98; letter-spacing: -.03em;
  margin-bottom: 1.6rem;
}
.hero__title span { display: block; }
.hero__title--italic { font-style: italic; color: var(--accent); font-weight: 500; }
.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft);
  max-width: 36ch; margin-bottom: 2.2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.hero__meta { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.hero__meta div:not(.hero__meta-sep) { display: flex; flex-direction: column; }
.hero__meta strong { font-family: var(--serif); font-size: 1.7rem; line-height: 1; }
.hero__meta span { font-size: .82rem; color: var(--ink-soft); }
.hero__meta-sep { width: 1px; height: 34px; background: var(--line); }

.hero__card {
  position: relative; background: var(--paper-2);
  border: 1.5px solid var(--ink); border-radius: 22px;
  padding: 2rem; box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.hero__card:hover { transform: rotate(0deg) translateY(-6px); }
.hero__card-glow {
  position: absolute; inset: 0; border-radius: 22px; z-index: 0;
  background: radial-gradient(circle at 70% 0%, rgba(200,71,42,.18), transparent 55%);
}
.hero__card-emoji {
  position: relative; font-size: 4.5rem; display: block; margin-bottom: 1rem;
  filter: drop-shadow(4px 8px 10px rgba(0,0,0,.18));
}
.hero__card-info { position: relative; }
.hero__card-tag {
  display: inline-block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--pine); background: rgba(47,93,80,.12);
  padding: .3em .8em; border-radius: 100px; margin-bottom: .8rem;
}
.hero__card-info h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.hero__card-info p { font-size: .92rem; color: var(--ink-soft); margin: .3rem 0 1rem; }
.hero__card-price strong { font-size: 1.4rem; font-family: var(--serif); }
.hero__card-price s { color: var(--ink-soft); font-size: .95rem; margin-left: .4rem; }

/* ---------- strip / marquee categorias ---------- */
.strip {
  background: var(--ink); color: var(--paper); overflow: hidden;
  border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
}
.strip__track {
  display: flex; gap: 3rem; white-space: nowrap; width: max-content;
  padding: 1.1rem 0; animation: scroll-x 32s linear infinite;
}
.strip__item {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem; font-weight: 400;
  display: inline-flex; align-items: center; gap: 3rem;
}
.strip__item::after { content: "✦"; color: var(--accent); font-style: normal; font-size: 1rem; }

/* ---------- stats ---------- */
.stats { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem,6vw,5rem) var(--pad); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.stat { background: var(--paper); padding: 2.2rem 1.6rem; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 500; line-height: 1; letter-spacing: -.02em; }
.stat__num .suf { color: var(--accent); }
.stat__lbl { font-size: .9rem; color: var(--ink-soft); margin-top: .6rem; max-width: 22ch; }

/* ---------- seções genéricas ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,8vw,7rem) var(--pad); }
.section--paper2 { max-width: 100%; background: var(--paper-2); }
.section--paper2 > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section__head { max-width: 56ch; margin-bottom: 3rem; }
.section__kicker { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: .8rem; }
.section__kicker--light { color: var(--gold); }
.section__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem,5vw,3.6rem); line-height: 1.02; letter-spacing: -.03em; }
.section__sub { font-size: 1.08rem; color: var(--ink-soft); margin-top: 1rem; }

/* ---------- categorias (compactas, 2 colunas) ---------- */
.cats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.cat {
  position: relative; border: 1.5px solid var(--ink); border-radius: 14px;
  padding: 1.1rem 1.3rem; background: var(--paper); overflow: hidden; cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), color .3s;
}
.cat::before {
  content: ""; position: absolute; inset: 0; background: var(--ink);
  transform: translateY(101%); transition: transform .4s cubic-bezier(.2,.8,.2,1); z-index: 0;
}
.cat:hover { transform: translateY(-4px); color: var(--paper); }
.cat:hover::before { transform: translateY(0); }
.cat:hover .cat__desc { color: rgba(244,238,226,.7); }
.cat > * { position: relative; z-index: 1; }
.cat__icon {
  font-size: 1.3rem; color: var(--accent); flex: none;
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(200,71,42,.1); transition: background .3s, color .3s;
}
.cat:hover .cat__icon { background: rgba(244,238,226,.15); color: var(--paper); }
.cat__txt { flex: 1; min-width: 0; }
.cat__nome { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; line-height: 1.1; }
.cat__desc { color: var(--ink-soft); font-size: .85rem; margin-top: .15rem; transition: color .3s; }
.cat__arrow { font-size: 1.1rem; flex: none; transition: transform .3s; opacity: .5; }
.cat:hover .cat__arrow { transform: translateX(5px); opacity: 1; }

/* ---------- filtros ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.4rem; }
.chip {
  font-family: var(--sans); font-weight: 600; font-size: .9rem;
  padding: .55em 1.2em; border-radius: 100px; cursor: pointer;
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  transition: background .25s, color .25s, transform .2s;
}
.chip:hover { transform: translateY(-2px); }
.chip.active { background: var(--ink); color: var(--paper); }

/* ---------- barra do catálogo (filtros + setas) ---------- */
.catalog__bar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.catalog__bar .filters { margin-bottom: 0; }
.carousel__nav { display: flex; gap: .7rem; }
.carousel__btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--ink);
  background: transparent; color: var(--ink); font-size: 1.2rem; cursor: pointer;
  display: grid; place-items: center; transition: background .25s, color .25s, transform .25s, opacity .25s;
}
.carousel__btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.carousel__btn:disabled { opacity: .3; cursor: default; transform: none; }
.carousel__btn:disabled:hover { background: transparent; color: var(--ink); }

/* ---------- carrossel de produtos ---------- */
.carousel { overflow: hidden; margin: 0 calc(var(--pad) * -1); padding: .5rem var(--pad) 1.5rem; }
.carousel__track {
  display: flex; gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: .5rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track .card {
  flex: 0 0 clamp(240px, 26vw, 300px); scroll-snap-align: start;
}
.carousel__progress { height: 3px; background: var(--line); border-radius: 100px; overflow: hidden; max-width: 220px; }
.carousel__progress span { display: block; height: 100%; width: 20%; background: var(--accent); border-radius: 100px; transition: width .2s, transform .2s; }

.card {
  position: relative; background: var(--paper); border: 1.5px solid var(--ink);
  border-radius: 18px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.card--enter { opacity: 0; animation: cardIn .6s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes cardIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.card__media {
  position: relative; aspect-ratio: 1/1; display: grid; place-items: center;
  font-size: 4.5rem; overflow: hidden;
}
.card__media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255,255,255,.5), transparent 60%);
}
.card__emoji { position: relative; z-index: 1; transition: transform .4s; filter: drop-shadow(3px 6px 8px rgba(0,0,0,.18)); }
.card:hover .card__emoji { transform: scale(1.12) rotate(-4deg); }
.card__tag {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
  background: var(--paper); border: 1.5px solid var(--ink); padding: .3em .7em; border-radius: 100px;
}
.card__fav {
  position: absolute; top: .9rem; right: .9rem; z-index: 2; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--ink);
  background: var(--paper); display: grid; place-items: center; font-size: .95rem;
  transition: background .25s, transform .25s;
}
.card__fav:hover { transform: scale(1.12); }
.card__fav.on { background: var(--accent); border-color: var(--accent); }
.card__body { padding: 1.2rem 1.2rem 1.4rem; border-top: 1.5px solid var(--ink); display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.card__nome { font-family: var(--serif); font-size: 1.22rem; font-weight: 500; line-height: 1.15; margin: .3rem 0; }
.card__desc { font-size: .86rem; color: var(--ink-soft); flex: 1; }
.card__rating { font-size: .8rem; margin: .7rem 0; color: var(--ink-soft); }
.card__rating .star { color: var(--gold); }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: .4rem; }
.card__price strong { font-family: var(--serif); font-size: 1.35rem; }
.card__price s { display: block; font-size: .78rem; color: var(--ink-soft); }
.card__btn {
  display: inline-flex; align-items: center; justify-content: center; white-space: nowrap;
  font-size: .82rem; font-weight: 600; padding: .55em 1em; border-radius: 100px;
  border: 1.5px solid var(--ink); background: transparent; cursor: pointer;
  transition: background .25s, color .25s;
}
.card__btn:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }

/* ---------- pix ---------- */
.pix { background: var(--pine); color: var(--paper); position: relative; overflow: hidden; }
.pix::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(201,162,75,.2), transparent 45%);
}
.pix__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(4rem,8vw,7rem) var(--pad);
}
.pix__head { max-width: 60ch; margin-bottom: 3rem; }
.pix__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem,5vw,3.6rem); line-height: 1.02; letter-spacing: -.03em; margin: .8rem 0 1.2rem; }
.pix__lead { font-size: 1.1rem; opacity: .85; max-width: 52ch; }
.pix__body { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: stretch; }
.pix__benefits { display: flex; flex-direction: column; gap: 1.1rem; }

.pixcard {
  background: rgba(244,238,226,.06); border: 1px solid rgba(244,238,226,.16);
  border-radius: 16px; padding: 1.5rem 1.6rem; backdrop-filter: blur(4px);
  display: grid; grid-template-columns: auto 1fr; gap: .3rem 1.2rem; align-items: center;
  transition: background .3s, border-color .3s, transform .3s;
}
.pixcard:hover { background: rgba(244,238,226,.1); border-color: var(--gold); transform: translateX(6px); }
.pixcard__icon {
  grid-row: span 2; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(201,162,75,.18); display: grid; place-items: center; font-size: 1.4rem;
}
.pixcard h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; align-self: end; }
.pixcard p { font-size: .92rem; opacity: .8; align-self: start; line-height: 1.4; }

.pix__card {
  background: var(--paper); color: var(--ink); border-radius: 22px; padding: 1.8rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.3); border: 1.5px solid var(--ink);
}
.pix__card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; }
.pix__pix-logo { font-weight: 800; color: var(--pine); font-size: 1.2rem; }
.pix__amount { font-family: var(--serif); font-size: 1.5rem; }
.pix__qr { aspect-ratio: 1/1; max-width: 220px; margin: 0 auto 1.4rem; border: 1.5px solid var(--ink); border-radius: 14px; padding: 12px; }
.pix__qr-grid { display: grid; grid-template-columns: repeat(21,1fr); gap: 0; width: 100%; height: 100%; }
.pix__qr-grid i { aspect-ratio: 1/1; }
.pix__qr-grid i.on { background: var(--ink); }
.pix__beneficiario { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.pix__razao { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.pix__cnpj { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.pix__status {
  display: flex; align-items: center; gap: .6rem; font-size: .88rem; font-weight: 600;
  padding: .7rem 1rem; border-radius: 100px; background: rgba(47,93,80,.1); color: var(--pine);
  transition: background .4s, color .4s;
}
.pix__status.paid { background: rgba(47,93,80,.95); color: var(--paper); }
.pix__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); animation: pulse 1.4s infinite; }
.pix__status.paid .pix__dot { background: var(--paper); animation: none; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ---------- sobre ---------- */
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; }
.about__p { font-size: 1.1rem; color: var(--ink-soft); margin-top: 1.4rem; max-width: 46ch; }
.about__p strong { color: var(--ink); }
.about__signature { font-family: var(--serif); font-style: italic; font-size: 1.2rem; margin-top: 2rem; color: var(--accent); }
.about__right { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.about__fact {
  border: 1.5px solid var(--ink); border-radius: 16px; padding: 1.8rem 1.4rem;
  background: var(--paper); transition: transform .3s, background .3s, color .3s;
}
.about__fact:nth-child(even) { transform: translateY(1.6rem); }
.about__fact:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.about__fact-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 500; display: block; line-height: 1; }
.about__fact-lbl { font-size: .88rem; opacity: .8; margin-top: .5rem; display: block; }

/* ---------- depoimentos (carrossel) ---------- */
.carousel__track .quote { flex: 0 0 clamp(300px, 34vw, 420px); scroll-snap-align: start; }
.quote {
  border: 1.5px solid var(--ink); border-radius: 18px; padding: 2rem; background: var(--paper);
  display: flex; flex-direction: column; gap: 1rem; transition: transform .35s, box-shadow .35s;
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote__stars { color: var(--gold); letter-spacing: .15em; font-size: 1.05rem; }
.quote__text { font-family: var(--serif); font-size: 1.18rem; font-style: italic; line-height: 1.45; flex: 1; }
.quote__who { display: flex; align-items: center; gap: .9rem; border-top: 1px solid var(--line); padding-top: 1.1rem; }
.quote__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--paper); background: var(--pine);
}
.quote__who-info { flex: 1; }
.quote__who-info strong { display: block; font-size: .98rem; }
.quote__who-info span { font-size: .82rem; color: var(--ink-soft); }
.quote__produto { font-size: .72rem; color: var(--ink-soft); text-align: right; }
.quote__produto b { display: block; color: var(--accent); font-weight: 600; }

/* ---------- contato ---------- */
.contact { background: var(--ink); color: var(--paper); }
.contact__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,8vw,7rem) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.contact__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem,4.5vw,3.4rem); line-height: 1.04; letter-spacing: -.02em; }
.contact__text p { color: rgba(244,238,226,.7); margin-top: 1.2rem; font-size: 1.08rem; max-width: 38ch; }
.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; background: transparent; border: 1.5px solid rgba(244,238,226,.3);
  border-radius: 12px; padding: 1.2rem 1rem .6rem; color: var(--paper);
  font-family: var(--sans); font-size: 1rem; resize: vertical; transition: border-color .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field label {
  position: absolute; left: 1rem; top: 1rem; color: rgba(244,238,226,.5);
  pointer-events: none; transition: .2s; font-size: 1rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .35rem; font-size: .72rem; color: var(--gold);
}
.contact__ok { color: var(--gold); font-weight: 600; }

/* ---------- rodapé ---------- */
.footer { background: var(--paper-2); border-top: 1.5px solid var(--ink); }
.footer__top {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem,6vw,5rem) var(--pad) 2.5rem;
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 3rem;
}
.footer__logo { font-family: var(--serif); font-size: 2rem; font-weight: 600; }
.footer__logo span { color: var(--accent); }
.footer__brand p { color: var(--ink-soft); margin-top: .8rem; max-width: 30ch; }
.footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 2rem; }
.footer__cols h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer__cols a, .footer__muted { display: block; color: var(--ink-soft); font-size: .95rem; margin-bottom: .55rem; transition: color .2s; }
.footer__cols a:hover { color: var(--accent); }
.footer__legal {
  border-top: 1px solid var(--line); padding: 1.8rem var(--pad);
  max-width: var(--maxw); margin: 0 auto; font-size: .82rem; color: var(--ink-soft);
  display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; align-items: center;
}
.footer__legal strong { color: var(--ink); font-weight: 600; }
.footer__legal .sep { opacity: .4; }

/* ---------- animação de reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsivo ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero__card { max-width: 360px; transform: rotate(0); }
  .about__grid, .pix__body, .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cats { grid-template-columns: repeat(2,1fr); }
  .grid { grid-template-columns: repeat(2,1fr); }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .cats { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2,1fr); }
  .about__right { gap: .8rem; }
  .about__fact:nth-child(even) { transform: none; }
}
@media (max-width: 460px) {
  .grid { grid-template-columns: 1fr; }
  .hero__meta-sep { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .card--enter { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   COMPONENTES ADICIONAIS — produtos digitais
   ============================================================ */

/* ---------- como funciona ---------- */
.how__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.how__step {
  position: relative; border: 1.5px solid var(--ink); border-radius: 16px;
  padding: 1.8rem 1.5rem; background: var(--paper);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.how__step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.how__num {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--paper); font-family: var(--serif);
  font-size: 1.3rem; font-weight: 600; margin-bottom: 1.1rem;
}
.how__step h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin-bottom: .5rem; }
.how__step p { font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.how__cta { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-top: 2.4rem; }
.how__cta-note { font-size: .9rem; color: var(--ink-soft); }

/* ---------- canais de contato ---------- */
.contact__channels { display: flex; flex-direction: column; gap: .9rem; margin-top: 2rem; }
.contact__channel {
  display: flex; align-items: center; gap: 1rem;
  border: 1.5px solid rgba(244,238,226,.3); border-radius: 14px;
  padding: 1rem 1.2rem; transition: border-color .25s, background .25s, transform .25s;
}
.contact__channel:hover { border-color: var(--gold); background: rgba(244,238,226,.05); transform: translateX(5px); }
.contact__channel .wa-ico, .contact__channel-ico {
  width: 26px; height: 26px; flex: none; color: var(--gold); font-size: 1.3rem;
  display: grid; place-items: center;
}
.contact__channel span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.contact__channel strong { font-size: 1rem; color: var(--paper); }
.contact__channel span:last-child { font-size: .82rem; color: rgba(244,238,226,.6); }

/* ---------- páginas legais ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(2.5rem,6vw,4.5rem) var(--pad) 5rem; }
.legal__back {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .9rem;
  color: var(--accent); margin-bottom: 2.5rem;
}
.legal__back:hover { text-decoration: underline; }
.legal h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem,5vw,3.2rem); line-height: 1.05; letter-spacing: -.03em; }
.legal__meta { color: var(--ink-soft); font-size: .9rem; margin: 1rem 0 2.5rem; padding-bottom: 1.5rem; border-bottom: 1.5px solid var(--line); }
.legal h2 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; margin: 2.4rem 0 .8rem; }
.legal h3 { font-size: 1.05rem; font-weight: 700; margin: 1.4rem 0 .5rem; }
.legal p, .legal li { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1rem 1.2rem; display: flex; flex-direction: column; gap: .4rem; }
.legal strong { color: var(--ink); }
.legal a { color: var(--accent); text-decoration: underline; }
.legal__box {
  background: var(--paper-2); border: 1.5px solid var(--line); border-radius: 14px;
  padding: 1.4rem 1.6rem; margin: 1.5rem 0;
}
.legal__box p:last-child { margin-bottom: 0; }
.legal-foot {
  background: var(--ink); color: rgba(244,238,226,.7); text-align: center;
  padding: 2rem var(--pad); font-size: .85rem;
}
.legal-foot a { color: var(--gold); }

/* ---------- áreas de atuação (cards informativos, sem clique) ---------- */
.cat--static { cursor: default; }
.cat--static:hover { color: var(--ink); transform: translateY(-4px); }
.cat--static:hover::before { transform: translateY(101%); }
.cat--static:hover .cat__icon { background: rgba(200,71,42,.1); color: var(--accent); }
.cat--static:hover .cat__desc { color: var(--ink-soft); }

/* ---------- cartão institucional no hero ---------- */
.company-card > * { position: relative; z-index: 1; }
.company-card__name { font-family: var(--serif); font-weight: 500; font-size: 1.55rem; line-height: 1.1; margin: .5rem 0 1.3rem; }
.company-card__list { display: flex; flex-direction: column; gap: .65rem; }
.company-card__list > div { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-bottom: .65rem; border-bottom: 1px dashed var(--line); }
.company-card__list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.company-card__list dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-weight: 700; }
.company-card__list dd { font-weight: 600; font-size: .92rem; text-align: right; }

/* ---------- cartão de dados cadastrais ---------- */
.data-card { border: 1.5px solid var(--ink); border-radius: 18px; background: var(--paper); padding: 1.9rem; box-shadow: var(--shadow); align-self: start; }
.data-card__title { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin-bottom: 1.2rem; padding-bottom: .9rem; border-bottom: 1.5px solid var(--line); }
.data-card__list { display: flex; flex-direction: column; gap: .9rem; }
.data-card__list > div { display: grid; grid-template-columns: 40% 1fr; gap: 1rem; align-items: baseline; }
.data-card__list dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); font-weight: 700; }
.data-card__list dd { font-size: .92rem; line-height: 1.4; }

/* ---------- políticas / transparência ---------- */
.policies { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.policy {
  display: flex; flex-direction: column; gap: .55rem;
  border: 1.5px solid var(--ink); border-radius: 18px; padding: 1.9rem; background: var(--paper);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.policy:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.policy__ico { font-size: 1.8rem; }
.policy h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; }
.policy p { font-size: .92rem; color: var(--ink-soft); flex: 1; line-height: 1.5; }
.policy__link { font-weight: 600; font-size: .9rem; color: var(--accent); margin-top: .5rem; }
.policy:hover .policy__link { text-decoration: underline; }

/* ---------- canal de contato estático (endereço) ---------- */
.contact__channel--static { cursor: default; }
.contact__channel--static:hover { transform: none; border-color: rgba(244,238,226,.3); background: transparent; }

@media (max-width: 860px) {
  .how__grid { grid-template-columns: repeat(2,1fr); }
  .policies { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .how__grid { grid-template-columns: 1fr; }
  .policies { grid-template-columns: 1fr; }
  .data-card__list > div { grid-template-columns: 1fr; gap: .15rem; }
}

/* ============================================================
   VISUAL DO HERO — constelação de segmentos (diversidade)
   ============================================================ */
.hero__viz { position: relative; min-height: 460px; align-self: stretch; }
.orbit { position: absolute; inset: 0; }
.orbit__pulse {
  position: absolute; top: 48%; left: 52%; width: 210px; height: 210px;
  transform: translate(-50%,-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(200,71,42,.16), transparent 70%);
  animation: vizPulse 4.5s ease-in-out infinite;
}
@keyframes vizPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .65; }
  50%     { transform: translate(-50%,-50%) scale(1.18); opacity: 1; }
}
.orbit__line { position: absolute; height: 1.5px; background: var(--line); transform-origin: left center; }
.orbit__line--a { top: 26%; left: 36%; width: 38%; transform: rotate(26deg); }
.orbit__line--b { top: 60%; left: 22%; width: 44%; transform: rotate(-18deg); }
.orbit__chip {
  position: absolute; width: 76px; height: 76px; border-radius: 20px;
  display: grid; place-items: center; font-size: 2rem;
  background: var(--paper); border: 1.5px solid var(--ink); box-shadow: 8px 8px 0 rgba(24,20,16,.06);
  animation: floatY 5s ease-in-out infinite;
}
.orbit__chip--1 { top: 2%;  left: 30%; color: var(--accent); animation-duration: 5.2s; }
.orbit__chip--2 { top: 16%; left: 66%; color: var(--pine);   animation-duration: 6.1s; animation-delay: .5s; }
.orbit__chip--3 { top: 40%; left: 6%;  color: #9C6B98;        animation-duration: 4.6s; animation-delay: .3s; }
.orbit__chip--4 { top: 42%; left: 44%; width: 90px; height: 90px; font-size: 2.4rem; color: var(--gold); animation-duration: 5.6s; animation-delay: 1s; }
.orbit__chip--5 { top: 70%; left: 62%; color: #3A6EA5;        animation-duration: 6.4s; animation-delay: .8s; }
.orbit__chip--6 { top: 76%; left: 22%; color: #7A4E2D;        animation-duration: 5s;   animation-delay: .2s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* ============================================================
   VISUAL DO SOBRE — emblema da marca (identidade)
   ============================================================ */
.about__viz { position: relative; display: grid; place-items: center; min-height: 320px; }
.emblem { position: relative; width: 300px; height: 300px; display: grid; place-items: center; }
.emblem__glow {
  position: absolute; inset: 16%; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,93,80,.18), transparent 70%);
  animation: vizPulse 5s ease-in-out infinite;
}
.emblem__ring { position: absolute; inset: 0; border-radius: 50%; border: 2px dashed var(--line); animation: spin 28s linear infinite; }
.emblem__ring--inner { inset: 15%; border: 1.5px solid rgba(24,20,16,.16); animation: none; }
.emblem__orbit { position: absolute; inset: 0; animation: spin 9s linear infinite; }
.emblem__orbit::before {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 15px; height: 15px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 5px rgba(200,71,42,.16);
}
.emblem__core { position: relative; font-family: var(--serif); font-weight: 500; font-size: 5.5rem; line-height: 1; color: var(--ink); }
.emblem__core span { color: var(--accent); }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .hero__viz, .about__viz { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit__chip, .emblem__ring, .emblem__orbit, .orbit__pulse, .emblem__glow { animation: none !important; }
}

/* ============================================================
   ANIMAÇÃO DE CHAT (atendimento → Pix → pagamento → acesso)
   ============================================================ */
.chat {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1.5px solid var(--ink); border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.chat__header { display: flex; align-items: center; gap: .7rem; padding: .85rem 1.1rem; background: var(--ink); color: var(--paper); }
.chat__avatar { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--gold); color: var(--ink); font-family: var(--serif); font-weight: 600; font-size: 1.15rem; }
.chat__id { display: flex; flex-direction: column; line-height: 1.2; flex: 1; min-width: 0; }
.chat__id strong { font-size: 1rem; }
.chat__status { font-size: .74rem; opacity: .8; display: flex; align-items: center; gap: .35rem; }
.chat__status i { width: 7px; height: 7px; border-radius: 50%; background: #5fd07a; }
.chat__wa { width: 22px; height: 22px; flex: none; opacity: .9; }
.chat__body { height: 380px; overflow-y: auto; padding: 1.1rem; display: flex; flex-direction: column; gap: .55rem; background: #e9e0cf; scrollbar-width: none; -ms-overflow-style: none; }
.chat__body::-webkit-scrollbar { display: none; }
.chat__msg {
  max-width: 82%; padding: .6rem .8rem; border-radius: 15px; font-size: .9rem; line-height: 1.42;
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
  opacity: 0; transform: translateY(10px) scale(.98);
  animation: chatPop .35s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes chatPop { to { opacity: 1; transform: none; } }
.chat__msg--them { align-self: flex-start; background: #fff; color: var(--ink); border-top-left-radius: 5px; }
.chat__msg--me { align-self: flex-end; background: #d6f2c4; color: #173a1c; border-top-right-radius: 5px; }
.chat__sys { align-self: center; font-size: .74rem; font-weight: 600; color: var(--pine); background: rgba(47,93,80,.14); padding: .35rem .85rem; border-radius: 100px; opacity: 0; animation: chatPop .35s cubic-bezier(.2,.8,.2,1) forwards; }
.chat__pixtag { display: block; font-weight: 800; color: var(--pine); font-size: .82rem; margin-bottom: .25rem; }
.chat__qr { width: 124px; height: 124px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 7px; margin-top: .55rem; }
.chat__qr-grid { display: grid; grid-template-columns: repeat(21,1fr); width: 100%; height: 100%; }
.chat__qr-grid i { aspect-ratio: 1/1; }
.chat__qr-grid i.on { background: var(--ink); }
.chat__access { display: inline-flex; align-items: center; gap: .45rem; margin-top: .6rem; background: var(--accent); color: var(--paper); font-weight: 600; font-size: .85rem; padding: .55rem .9rem; border-radius: 10px; }
.chat__typing-row { align-self: flex-start; }
.chat__typing { display: inline-flex; gap: 5px; background: #fff; padding: .75rem .85rem; border-radius: 15px; border-top-left-radius: 5px; box-shadow: 0 1px 1px rgba(0,0,0,.08); }
.chat__typing i { width: 7px; height: 7px; border-radius: 50%; background: #b3b3a6; animation: chatTyping 1.2s infinite; }
.chat__typing i:nth-child(2) { animation-delay: .2s; }
.chat__typing i:nth-child(3) { animation-delay: .4s; }
@keyframes chatTyping { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

@media (prefers-reduced-motion: reduce) {
  .chat__msg, .chat__sys { opacity: 1 !important; transform: none !important; }
}
