/* =====================================================
   AmazonSys — styles.css
   Folha de estilos unificada (index + política de privacidade)
   ===================================================== */

/* ============ index.html ============ */

/* ═══════ TOKENS ═══════ */
:root {
  --bg: #050608;
  --bg1: #0a0c10;
  --bg2: #0f1116;
  --bg3: #14161c;
  --bd: rgba(255, 255, 255, .08);
  --bdh: rgba(255, 255, 255, .16);
  --green: #10b981;
  --green2: #34d399;
  --emerald: #059669;
  --white: #f2f2f2;
  --dim: rgba(225, 225, 225, .78);
  --faint: rgba(200, 200, 200, .50);
  --fd: 'Space Grotesk', sans-serif;
  --fi: 'Inter', sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --eout: cubic-bezier(0, 0, .2, 1);
  --radius: 6px;
}

/* ═══════ LIGHT MODE ═══════ */
body.light {
  --bg: #f5f6f8;
  --bg1: #eef0f3;
  --bg2: #e5e8ec;
  --bg3: #dde0e5;
  --bd: rgba(0, 0, 0, .08);
  --bdh: rgba(0, 0, 0, .16);
  --white: #0f1116;
  --dim: rgba(15, 17, 22, .75);
  --faint: rgba(15, 17, 22, .48);
}

body.light #nav.on {
  background: rgba(245, 246, 248, .94)
}

body.light .btn-ghost {
  color: var(--white);
  border-color: var(--bdh)
}

body.light .btn-ghost:hover {
  background: rgba(0, 0, 0, .04)
}

body.light .trust-item {
  color: var(--dim)
}

body.light .trust-sep {
  background: rgba(0, 0, 0, .12)
}

body.light .ben-card:hover {
  border-color: rgba(16, 185, 129, .2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .06)
}

body.light .ben-icon {
  background: rgba(16, 185, 129, .08)
}

body.light .mod-tab {
  color: var(--faint);
  border-color: transparent
}

body.light .mod-tab.active {
  color: var(--green);
  border-color: var(--green)
}

body.light .mod-tab:hover {
  color: var(--white)
}

body.light .mod-card,
body.light .about-card {
  border-color: rgba(0, 0, 0, .08);
  background: var(--bg1)
}

body.light .mod-feat::before {
  background: var(--green)
}

body.light .comp-table th {
  background: var(--bg2);
  color: var(--white)
}

body.light .comp-table td {
  border-color: rgba(0, 0, 0, .06);
  color: var(--dim)
}

body.light .comp-check {
  color: var(--green)
}

body.light .comp-x {
  color: rgba(0, 0, 0, .2)
}

body.light .faq-item.open {
  border-color: rgba(16, 185, 129, .25)
}

body.light .faq-q {
  color: var(--white)
}

body.light .faq-a-inner {
  color: var(--dim)
}

body.light .faq-arrow {
  background: rgba(16, 185, 129, .08);
  color: var(--green)
}

body.light .faq-item.open .faq-arrow {
  background: var(--green);
  color: #fff
}

body.light .cta-section {
  background: var(--bg1)
}

body.light footer {
  border-top-color: rgba(0, 0, 0, .06)
}

/* ═══════ THEME BTN ═══════ */
#theme-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid var(--bdh);
  display: grid;
  place-items: center;
  color: var(--dim);
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0
}

#theme-btn svg {
  width: 15px;
  height: 15px
}

#theme-btn:hover {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .06);
  color: var(--white)
}

body.light #theme-btn:hover {
  border-color: rgba(0, 0, 0, .25);
  background: rgba(0, 0, 0, .04);
  color: var(--white)
}

/* ═══════ RESET ═══════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

body {
  font-family: var(--fi);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  transition: background .3s, color .3s
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

/* ═══════ PROGRESS ═══════ */
#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--green);
  z-index: 1001;
  transition: width .06s linear
}

/* ═══════ SKIP LINK (a11y) ═══════ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  font-size: .85rem;
  font-weight: 500;
  border-radius: var(--radius);
  z-index: 9999
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: 2px solid #fff;
  outline-offset: 2px
}

/* ═══════ LAYOUT ═══════ */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px
}

section {
  padding: 90px 0
}

.eyebrow,
.priv-eyebrow {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px
}

.eyebrow::before,
.priv-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0
}

h2.sec-title {
  font-family: var(--fd);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 16px;
}

p.sec-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dim);
  max-width: 520px
}

.accent {
  color: var(--green)
}

/* ═══════ BTNS ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fi);
  font-size: .85rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all .2s;
  letter-spacing: .01em
}

.btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0
}

.btn-solid {
  background: var(--green);
  color: #fff
}

.btn-solid:hover {
  background: var(--green2)
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--bdh)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .04)
}

/* ═══════ REVEAL ═══════ */
.r {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--eout), transform .6s var(--eout)
}

.r.on {
  opacity: 1;
  transform: none
}

.r.d1 {
  transition-delay: .06s
}

.r.d2 {
  transition-delay: .12s
}

/* ═══════ NAV ═══════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .3s, border-color .3s
}

#nav.on {
  background: rgba(5, 6, 8, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bd)
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -.01em
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(16, 185, 129, .18);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center
}

.nav-links a {
  font-size: .82rem;
  color: var(--faint);
  transition: color .2s;
  font-weight: 400
}

.nav-links a:hover {
  color: var(--white)
}

.nav-end {
  display: flex;
  gap: 10px;
  align-items: center
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  font-family: var(--fi);
  font-size: .8rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--green2)
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer
}

.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--dim);
  transition: all .3s
}

.mob {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(5, 6, 8, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  padding: 20px 32px;
  flex-direction: column;
  gap: 0;
  z-index: 99
}

body.light .mob {
  background: rgba(245, 246, 248, .97)
}

.mob.open {
  display: flex
}

.mob a {
  color: var(--dim);
  font-size: .95rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--bd);
  transition: color .2s
}

.mob a:last-child {
  border: none
}

.mob a:hover {
  color: var(--white)
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

/* ═══════ TRUST ═══════ */
#trust {
  padding: 28px 0;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  background: var(--bg1)
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap
}

.trust-item {
  font-size: .72rem;
  font-weight: 500;
  color: var(--faint);
  letter-spacing: .06em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px
}

.trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0
}

.trust-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--bdh);
  flex-shrink: 0
}

/* ═══════ BENEFITS ═══════ */
#benefits {
  background: var(--bg)
}

.ben-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px
}

.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.ben-card {
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .25s;
  background: var(--bg1)
}

.ben-card:hover {
  border-color: rgba(16, 185, 129, .2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .15)
}

.ben-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(16, 185, 129, .08);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--green)
}

.ben-icon svg {
  width: 20px;
  height: 20px
}

.ben-card h3 {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -.01em
}

.ben-card p {
  font-size: .86rem;
  line-height: 1.65;
  color: var(--faint)
}

/* ═══════ MODULES ═══════ */
#modules {
  background: var(--bg1)
}

.mod-header {
  text-align: center;
  margin-bottom: 48px
}

.mod-header .sec-sub {
  margin: 0 auto
}

.mod-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.mod-tab {
  font-family: var(--fi);
  font-size: .78rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--bd);
  background: transparent;
  color: var(--faint);
  cursor: pointer;
  transition: all .2s
}

.mod-tab.active {
  color: var(--green);
  border-color: var(--green);
  background: rgba(16, 185, 129, .06)
}

.mod-tab:hover {
  color: var(--white)
}

.mod-panels {
  position: relative;
  min-height: 260px
}

.mod-card {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 40px;
  background: var(--bg2)
}

.mod-card.active {
  display: grid
}

.mod-card h3 {
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -.02em
}

.mod-card .mod-sub {
  font-size: .92rem;
  color: var(--dim);
  margin-bottom: 24px;
  line-height: 1.6
}

.mod-feats {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.mod-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: var(--dim);
  line-height: 1.55
}

.mod-feat::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 7px
}

.mod-visual {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.mod-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.mod-stat {
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--bg1)
}

.mod-stat-label {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 4px
}

.mod-stat-val {
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white)
}

.mod-stat-val span {
  color: var(--green)
}

.mod-bar-group {
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--bg1)
}

.mod-bar-label {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px
}

.mod-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, .06);
  border-radius: 3px;
  margin-bottom: 8px;
  overflow: hidden
}

body.light .mod-bar-track {
  background: rgba(0, 0, 0, .06)
}

.mod-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--green);
  transition: width .8s var(--eout)
}

/* ═══════ INTEGRATIONS ═══════ */
#integrations {
  background: var(--bg);
  position: relative;
  overflow: hidden
}

#integrations::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(16, 185, 129, .08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0
}

#integrations .wrap {
  position: relative;
  z-index: 1
}

.int-header {
  text-align: center;
  margin-bottom: 56px
}

.int-header .sec-sub {
  margin: 0 auto;
  max-width: 780px
}

.int-stage {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.15fr;
  gap: 80px;
  align-items: start
}

/* POS device */
.int-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px
}

.int-pos-wrap {
  position: relative;
  width: 320px;
  max-width: 100%
}

.int-pos-chassis {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .35));
  will-change: filter;
  transform: translateZ(0);
  -webkit-transform: translateZ(0)
}

/* Slider container � preenche o display preto da maquininha */

.int-pos-screen-slider {
  position: absolute;
  top: 27.2%;
  left: 14.5%;
  width: 69%;
  height: 62%;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .25), inset 0 2px 6px rgba(0, 0, 0, .18);
}

/* Glass-like sheen on top of the slider � fakes screen glare */
.int-pos-screen-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 30%);
  pointer-events: none;
  z-index: 10;
  border-radius: 10px
}

/* Each screen fades in/out in sequence */
.ps-screen {
  position: absolute;
  inset: 0;
  padding: 8px 7px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1d24;
  overflow: hidden;
  opacity: 0;
  animation: psScreenFade 9s infinite
}

.ps-screen-1 {
  animation-delay: 0s
}

.ps-screen-2 {
  animation-delay: 3s
}

.ps-screen-3 {
  animation-delay: 6s
}

@keyframes psScreenFade {

  0%,
  33%,
  100% {
    opacity: 0
  }

  3%,
  30% {
    opacity: 1
  }
}

/* ----- Tela 1: SAL�O PRINCIPAL ----- */
.ps-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 2px 6px
}

.ps-menu {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #1a1d24;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  flex-shrink: 0
}

.ps-menu span {
  width: 10px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px
}

.ps-title {
  flex: 1;
  font-family: var(--fd);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #1a1d24;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0
}

.ps-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0
}

.ps-icon-btn {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  display: grid;
  place-items: center;
  color: #1a1d24
}

.ps-icon-btn svg {
  width: 8px;
  height: 8px
}

.ps-search {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5px;
  background: #fff;
  color: rgba(0, 0, 0, .42);
  font-size: .5rem;
  margin-bottom: 16px
}

.ps-search svg {
  width: 8px;
  height: 8px;
  flex-shrink: 0
}

.ps-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 7px
}

.ps-filter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 3px;
  border-radius: 100px;
  border: 1px solid;
  background: #fff;
  font-size: .38rem;
  font-weight: 500;
  position: relative
}

.ps-filter b {
  font-family: var(--fd);
  font-size: .4rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  position: absolute;
  top: -12px;
  right: -3px;
  width: 22px;
  padding: 4px;
  border-radius: 30%;
  display: grid;
  place-items: center;
  color: #fff
}

.ps-filter-livres {
  border-color: #86efac;
  color: #166534
}

.ps-filter-livres b {
  background: #16a34a
}

.ps-filter-ocupadas {
  border-color: #fdba74;
  color: #9a3412
}

.ps-filter-ocupadas b {
  background: #f97316
}

.ps-filter-reservadas {
  border-color: #d1d5db;
  color: #4b5563
}

.ps-filter-reservadas b {
  background: #6b7280
}

.ps-filter-fechadas {
  border-color: #fca5a5;
  color: #991b1b
}

.ps-filter-fechadas b {
  background: #dc2626
}

.ps-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px
}

.ps-table {
  padding: 5px 6px 6px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .06)
}

.ps-table-ocupada {
  background: #fef3e2;
  border-color: #fde2c4
}

.ps-table-livre {
  background: #e8f7ee;
  border-color: #c8ebd6
}

.ps-table-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 2px
}

.ps-table-name {
  font-family: var(--fd);
  font-size: .52rem;
  font-weight: 700;
  color: #1a1d24
}

.ps-badge {
  font-size: .38rem;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 100px;
  color: #fff
}

.ps-badge-ocupada {
  background: #f97316
}

.ps-badge-livre {
  background: #10b981
}

.ps-table-fechada {
  background: #fee2e2;
  border-color: #fca5a5
}

.ps-badge-fechada {
  background: #dc2626
}

.ps-table-meta {
  font-size: .4rem;
  color: rgba(0, 0, 0, .55);
  margin-bottom: 2px
}

.ps-table-lbl {
  font-size: .38rem;
  color: rgba(0, 0, 0, .5)
}

.ps-table-val {
  font-family: var(--fd);
  font-size: .6rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: -.01em;
  margin-bottom: 3px
}

.ps-table-time {
  font-size: .36rem;
  color: rgba(0, 0, 0, .42);
  padding-top: 3px;
  border-top: 1px dashed rgba(0, 0, 0, .08)
}

/* ----- Tela 2: PEDIDO ----- */
.ps-pedido-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  padding-bottom: 6px
}

.ps-pedido-title {
  font-family: var(--fd);
  font-size: .68rem;
  font-weight: 700;
  color: #1a1d24;
  line-height: 1.1
}

.ps-pedido-sub {
  font-size: .4rem;
  color: rgba(0, 0, 0, .5);
  margin-top: 1px
}

.ps-pedido-head-actions {
  display: flex;
  gap: 3px
}

.ps-mini-btn {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  display: grid;
  place-items: center;
  font-size: .52rem;
  font-weight: 600;
  color: rgba(0, 0, 0, .55);
  line-height: 1
}

.ps-pedido-tabs {
  display: flex;
  gap: 3px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  margin-bottom: 6px;
  overflow: hidden
}

.ps-pedido-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 3px 2px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: #fff;
  font-size: .36rem;
  font-weight: 500;
  color: rgba(0, 0, 0, .55);
  white-space: nowrap
}

.ps-pedido-tab svg {
  width: 7px;
  height: 7px;
  flex-shrink: 0
}

.ps-pedido-tab-active {
  color: #10b981;
  border-color: rgba(16, 185, 129, .35);
  font-weight: 600
}

.ps-pedido-pos-lbl {
  font-size: .38rem;
  color: rgba(0, 0, 0, .5);
  margin-bottom: 4px
}

.ps-pedido-pos {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px 3px 3px;
  border-radius: 100px;
  border: 1px solid rgba(16, 185, 129, .35);
  background: rgba(16, 185, 129, .05);
  font-size: .42rem;
  color: #1a1d24;
  margin-bottom: 6px;
  font-weight: 500
}

.ps-pedido-pos-icon {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(16, 185, 129, .15);
  display: grid;
  place-items: center;
  color: #10b981
}

.ps-pedido-pos-icon svg {
  width: 6px;
  height: 6px
}

.ps-pedido-cats {
  display: flex;
  gap: 3px;
  margin-bottom: 5px;
  overflow: hidden
}

.ps-pedido-cat {
  padding: 2px 6px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  font-size: .36rem;
  font-weight: 600;
  color: rgba(0, 0, 0, .55)
}

.ps-pedido-cat-active {
  background: #10b981;
  color: #fff;
  border-color: #10b981
}

.ps-pedido-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 5px
}

.ps-pedido-item {
  padding: 5px 6px;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 5px;
  background: #fff
}

.ps-pedido-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px
}

.ps-pedido-item-name {
  font-family: var(--fd);
  font-size: .44rem;
  font-weight: 700;
  color: #1a1d24;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.ps-pedido-item-price {
  font-family: var(--fd);
  font-size: .5rem;
  font-weight: 700;
  color: #10b981
}

.ps-pedido-item-calc {
  font-size: .34rem;
  color: rgba(0, 0, 0, .45);
  margin-top: 1px
}

.ps-pedido-item-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px
}

.ps-pedido-step {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: #fff;
  display: grid;
  place-items: center;
  font-size: .5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, .6);
  line-height: 1
}

.ps-pedido-qty {
  min-width: 16px;
  height: 12px;
  padding: 0 3px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: #fff;
  display: grid;
  place-items: center;
  font-size: .4rem;
  font-weight: 600
}

.ps-pedido-item-total {
  flex: 1;
  text-align: right;
  font-family: var(--fd);
  font-size: .42rem;
  font-weight: 600;
  color: rgba(0, 0, 0, .7)
}

.ps-pedido-item-fav {
  width: 8px;
  height: 8px;
  color: rgba(0, 0, 0, .35);
  flex-shrink: 0
}

.ps-pedido-item-actions {
  display: flex;
  gap: 3px;
  margin-left: 4px
}

.ps-pedido-item-action {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, .55);
  flex-shrink: 0
}

.ps-pedido-item-action svg {
  width: 7px;
  height: 7px
}

/* ----- Tela 3: FECHAR CONTA ----- */
.ps-fc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  margin-bottom: 4px
}

.ps-fc-head-l {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0
}

.ps-fc-head-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(16, 185, 129, .15);
  display: grid;
  place-items: center;
  color: #10b981;
  flex-shrink: 0
}

.ps-fc-head-icon svg {
  width: 9px;
  height: 9px
}

.ps-fc-head-title {
  font-family: var(--fd);
  font-size: .5rem;
  font-weight: 700;
  color: #1a1d24;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.ps-fc-tabs {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  margin-bottom: 5px
}

.ps-fc-tab {
  flex: 1;
  text-align: center;
  padding: 4px;
  font-size: .42rem;
  font-weight: 500;
  color: rgba(0, 0, 0, .45)
}

.ps-fc-tab-active {
  color: #10b981;
  font-weight: 700;
  border-bottom: 2px solid #10b981
}

.ps-fc-sub {
  font-size: .38rem;
  color: rgba(0, 0, 0, .5);
  margin-bottom: 5px
}

.ps-fc-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5px;
  padding: 5px 6px;
  border: 1px solid rgba(16, 185, 129, .35);
  background: rgba(16, 185, 129, .05);
  border-radius: 5px;
  margin-bottom: 4px
}

.ps-fc-card-l {
  flex: 1;
  min-width: 0
}

.ps-fc-card-name {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--fd);
  font-size: .44rem;
  font-weight: 600;
  color: #1a1d24;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.ps-fc-check {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .46rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0
}

.ps-fc-mini-icons {
  display: flex;
  gap: 3px
}

.ps-fc-mini-icons span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  display: grid;
  place-items: center;
  color: #10b981
}

.ps-fc-mini-icons span svg {
  width: 7px;
  height: 7px
}

.ps-fc-tot-val-wrap {
  display: flex;
  align-items: center;
  gap: 4px
}

.ps-fc-trash {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(220, 38, 38, .4);
  background: rgba(220, 38, 38, .08);
  display: grid;
  place-items: center;
  color: #dc2626;
  flex-shrink: 0
}

.ps-fc-trash svg {
  width: 8px;
  height: 8px
}

.ps-fc-card-r {
  text-align: right;
  flex-shrink: 0
}

.ps-fc-line {
  font-size: .38rem;
  color: rgba(0, 0, 0, .55);
  margin-bottom: 1px;
  white-space: nowrap
}

.ps-fc-line b {
  font-style: normal;
  font-weight: 600;
  color: rgba(0, 0, 0, .7)
}

.ps-fc-line-rest {
  color: #10b981;
  font-weight: 700
}

.ps-fc-line-rest b {
  color: #10b981;
  font-weight: 700
}

.ps-fc-pos-val {
  font-family: var(--fd);
  font-size: .5rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 3px
}

.ps-fc-totals {
  background: #f3f4f6;
  border-radius: 5px;
  padding: 5px 7px;
  margin-top: auto;
  margin-bottom: 6px
}

/* Slide 3 vira flex column pra empurrar totais + botão pro rodapé */
.ps-screen-3 {
  display: flex;
  flex-direction: column
}

.ps-fc-tot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .4rem;
  color: rgba(0, 0, 0, .6);
  padding: 2px 0
}

.ps-fc-tot-row b {
  font-family: var(--fd);
  font-style: normal;
  font-weight: 700;
  color: #10b981;
  font-size: .44rem
}

.ps-fc-tot-final b {
  font-size: .5rem
}

.ps-fc-btn {
  text-align: center;
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 100px;
  font-family: var(--fd);
  font-size: .46rem;
  font-weight: 600;
  color: #1a1d24;
  background: #fff
}

/* Floating cards around POS */
.int-float {
  position: absolute;
  background: var(--bg1);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  z-index: 2
}

.int-float-tl {
  top: 8%;
  left: 0;
  transform: translateX(-20%);
  animation: intFloat 4s ease-in-out infinite
}

.int-float-br {
  bottom: 12%;
  right: 0;
  transform: translateX(-15%);
  animation: intFloat 4s ease-in-out infinite reverse
}

@keyframes intFloat {

  0%,
  100% {
    transform: translateX(-20%) translateY(0)
  }

  50% {
    transform: translateX(-20%) translateY(-8px)
  }
}

.int-float-br {
  animation-name: intFloatBr
}

@keyframes intFloatBr {

  0%,
  100% {
    transform: translateX(-15%) translateY(0)
  }

  50% {
    transform: translateX(-15%) translateY(-8px)
  }
}

.int-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.int-float-icon-green {
  background: rgba(16, 185, 129, .15);
  color: var(--green)
}

.int-float-icon-blue {
  background: rgba(59, 130, 246, .15);
  color: #60a5fa
}

.int-float-icon svg {
  width: 16px;
  height: 16px
}

.int-float-label {
  font-family: var(--fd);
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2
}

.int-float-sub {
  font-size: .68rem;
  color: rgba(200, 200, 200, .6);
  margin-top: 2px
}

/* Right column: numbered feature list */
.int-content {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.int-feat-list {
  display: flex;
  flex-direction: column;
  gap: 22px
}

.int-feat-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: flex-start
}

.int-feat-num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(16, 185, 129, .18), rgba(16, 185, 129, .06));
  border: 1px solid rgba(16, 185, 129, .25);
  display: grid;
  place-items: center;
  font-family: var(--fd);
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -.01em
}

.int-feat-body h3 {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 6px
}

.int-feat-body p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--faint)
}

/* Partners row */
.int-partners {
  padding-top: 28px;
  border-top: 1px solid var(--bd)
}

.int-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px
}

.int-cta-note {
  font-size: .8rem;
  color: var(--faint)
}

.int-partners-label {
  font-size: .7rem;
  color: rgba(200, 200, 200, .55);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin-bottom: 14px
}

.int-partners-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.int-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--bd);
  border-radius: 10px;
  background: var(--bg1);
  transition: all .2s
}

.int-partner:hover {
  border-color: rgba(16, 185, 129, .3);
  transform: translateY(-2px)
}

.int-partner-logo {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15)
}

.int-partner-logo svg {
  width: 100%;
  height: 100%
}

.int-partner-img {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block
}

.int-partner-name {
  font-family: var(--fd);
  font-size: .88rem;
  font-weight: 600;
  color: var(--white)
}

/* Light theme */
body.light .int-float {
  background: #fff;
  border-color: rgba(0, 0, 0, .06);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, .12)
}

body.light .int-float-label,
body.light .int-feat-body h3,
body.light .int-partner-name {
  color: var(--ink, #111)
}

body.light .int-float-sub {
  color: rgba(100, 100, 100, .7)
}

body.light .int-partner {
  background: #fff
}

body.light .int-partners-label {
  color: rgba(100, 100, 100, .7)
}

/* ═══════ DASHBOARD SHOWCASE ═══════ */
#dashboard-showcase {
  background: var(--bg1)
}

.ds-header {
  text-align: center;
  margin-bottom: 72px
}

.ds-header .sec-sub {
  margin: 0 auto;
  max-width: 640px
}

.ds-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 96px
}

.ds-row:last-child {
  margin-bottom: 0
}

.ds-row-img-left {
  grid-template-columns: 1.15fr 1fr
}

.ds-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px
}

.ds-text h3 {
  font-family: var(--fd);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.18
}

.ds-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dim);
  margin-bottom: 24px;
  max-width: 480px
}

.ds-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ds-feats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--faint)
}

.ds-feats li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(16, 185, 129, .12);
  color: var(--green);
  box-sizing: content-box
}

.ds-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--bd);
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, .55),
    0 12px 30px -8px rgba(16, 185, 129, .1)
}

.ds-img-wrap img {
  width: 100%;
  height: auto;
  display: block
}

body.light .ds-img-wrap {
  border-color: rgba(0, 0, 0, .08);
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, .15),
    0 12px 30px -8px rgba(16, 185, 129, .08)
}

@media (max-width: 860px) {
  .ds-row,
  .ds-row-img-left {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px
  }

  .ds-row-img-left .ds-text {
    order: 1
  }

  .ds-row-img-left .ds-img-wrap {
    order: 2
  }

  .ds-header {
    margin-bottom: 56px
  }
}

/* ═══════ COMPARISON ═══════ */
#comparison {
  background: var(--bg)
}

.comp-header {
  text-align: center;
  margin-bottom: 56px
}

.comp-header .sec-sub {
  margin: 0 auto
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem
}

.comp-table th {
  font-family: var(--fd);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: left;
  background: var(--bg2);
  color: var(--white)
}

.comp-table th:first-child {
  border-radius: var(--radius) 0 0 var(--radius)
}

.comp-table th:last-child {
  border-radius: 0 var(--radius) var(--radius) 0
}

.comp-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--bd);
  color: var(--dim);
  line-height: 1.5
}

.comp-table tr:last-child td {
  border-bottom: none
}

.comp-check {
  color: var(--green);
  font-weight: 600
}

.comp-x {
  color: rgba(255, 255, 255, .15);
  font-weight: 600
}

/* ═══════ ABOUT ═══════ */
#about {
  background: var(--bg1)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--dim);
  margin-bottom: 32px
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.about-card {
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .2s
}

.about-card:hover {
  border-color: var(--green)
}

.about-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(16, 185, 129, .08);
  display: grid;
  place-items: center;
  color: var(--green);
  flex-shrink: 0
}

.about-card-icon svg {
  width: 16px;
  height: 16px
}

.about-card h4 {
  font-family: var(--fd);
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px
}

.about-card p {
  font-size: .78rem;
  color: var(--faint);
  line-height: 1.5
}

/* ═══════ FAQ ═══════ */
#faq {
  background: var(--bg)
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start
}

.faq-sticky {
  position: sticky;
  top: 100px
}

.faq-sticky p {
  font-size: .95rem;
  color: var(--dim);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 24px
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.faq-item {
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s
}

.faq-item.open {
  border-color: rgba(16, 185, 129, .25)
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  font-family: var(--fi);
  transition: color .2s
}

.faq-item.open .faq-q {
  color: var(--green)
}

.faq-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  font-size: .65rem;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
  color: var(--faint)
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--green);
  color: #fff
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease
}

.faq-a-inner {
  padding: 0 22px 18px;
  font-size: .86rem;
  color: var(--faint);
  line-height: 1.7
}

/* ═══════ CTA ═══════ */
.cta-section {
  background: var(--bg1);
  padding: 120px 0
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.cta-right {
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.cta-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.cta-info-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--dim)
}

.cta-info-icon svg {
  width: 14px;
  height: 14px
}

.cta-info-label {
  font-size: .68rem;
  color: var(--faint);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2px
}

.cta-info-val {
  font-size: .88rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4
}

/* ═══════ FOOTER ═══════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--bd);
  padding: 64px 0 28px
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px
}

.foot-brand .logo {
  margin-bottom: 14px
}

.foot-desc {
  font-size: .84rem;
  color: var(--faint);
  line-height: 1.65;
  max-width: 260px
}

.foot-col h4 {
  font-family: var(--fd);
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.foot-link {
  font-size: .84rem;
  color: var(--faint);
  transition: color .2s;
  display: block
}

.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.foot-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bd);
  display: grid;
  place-items: center;
  color: var(--faint);
  transition: color .2s, border-color .2s, background .2s
}

.foot-social-link svg {
  width: 16px;
  height: 16px
}

.foot-social-link:hover {
  color: var(--green);
  border-color: rgba(16, 185, 129, .35);
  background: rgba(16, 185, 129, .08)
}

.foot-link:hover {
  color: var(--white)
}

.footer-bar {
  border-top: 1px solid var(--bd);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.foot-copy {
  font-size: .74rem;
  color: var(--faint)
}

.seals {
  display: flex;
  gap: 8px
}

.seal {
  padding: 5px 12px;
  border: 1px solid var(--bd);
  border-radius: 4px;
  font-size: .66rem;
  font-weight: 600;
  color: var(--faint);
  letter-spacing: .04em
}

/* ═══════ WA FLOAT ═══════ */
.wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px
}

.wa-tip {
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: .74rem;
  color: var(--dim);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: all .2s;
  pointer-events: none
}

.wa:hover .wa-tip {
  opacity: 1;
  transform: translateY(0)
}

.wa-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
  transition: transform .2s
}

.wa-btn:hover {
  transform: scale(1.08)
}

.wa-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff
}

/* ═══════ RESPONSIVE ═══════ */
/* ═══════ COMP TABLE WRAPPER (horizontal scroll on small screens) ═══════ */
.comp-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch
}

.comp-wrap .comp-table {
  min-width: 560px
}

/* ═══════ RESPONSIVE ═══════ */
@media(max-width:1024px) {

  .ben-header,
  .about-grid,
  .cta-inner,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .ben-grid {
    grid-template-columns: 1fr 1fr
  }

  .mod-card {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .nav-links {
    display: none
  }

  .burger {
    display: flex
  }

  .faq-sticky {
    position: static;
    top: auto
  }

  .priv-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 0 80px
  }

  .priv-toc {
    position: relative;
    top: 0
  }
}

@media(max-width:860px) {
  .wrap {
    padding: 0 24px
  }

  h2.sec-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    word-break: break-word;
    hyphens: auto
  }

  .ds-text h3,
  .mod-card h3,
  .faq-q {
    font-size: clamp(1.125rem, 3.4vw, 1.4rem)
  }

  .mod-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px 8px;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch
  }

  .mod-tab {
    flex-shrink: 0;
    scroll-snap-align: start
  }

  .cta-right {
    padding: 24px
  }

  .int-stage {
    grid-template-columns: 1fr;
    gap: 56px
  }

  .int-visual {
    min-height: 520px
  }

  .int-cta {
    justify-content: center;
    text-align: center
  }

  .int-cta-note {
    width: 100%;
    text-align: center
  }

  .int-float-tl {
    left: 12%
  }

  .int-float-br {
    right: 12%
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .foot-desc {
    max-width: 100%
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }
}

@media(max-width:640px) {
  .wrap {
    padding: 0 20px
  }

  .sec-title {
    font-size: 1.5rem;
    line-height: 1.15
  }

  .ben-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .int-header {
    margin-bottom: 48px
  }

  .int-stage {
    gap: 48px
  }

  .int-pos-wrap {
    width: 240px
  }

  .int-float {
    padding: 10px 12px;
    gap: 8px
  }

  .int-float-icon {
    width: 28px;
    height: 28px
  }

  .int-float-label {
    font-size: .72rem
  }

  .int-float-sub {
    font-size: .64rem
  }

  .int-float-tl {
    top: 4%;
    left: 4%;
    transform: translateX(-10%)
  }

  .int-float-br {
    bottom: 8%;
    right: 4%;
    transform: translateX(-10%)
  }

  @keyframes intFloat {

    0%,
    100% {
      transform: translateX(-10%) translateY(0)
    }

    50% {
      transform: translateX(-10%) translateY(-6px)
    }
  }

  @keyframes intFloatBr {

    0%,
    100% {
      transform: translateX(-10%) translateY(0)
    }

    50% {
      transform: translateX(-10%) translateY(-6px)
    }
  }

  .int-feat-list {
    gap: 18px
  }

  .int-feat-item {
    gap: 14px
  }

  .int-feat-num {
    width: 38px;
    height: 38px;
    font-size: .76rem
  }

  .int-partner {
    padding: 10px 14px
  }

  .int-partner-logo {
    width: 28px;
    height: 28px
  }

  .int-partner-img {
    height: 22px;
    max-width: 90px
  }

  .int-partner-name {
    font-size: .82rem
  }

  .mod-tab {
    padding: 8px 14px;
    font-size: .74rem
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch
  }

  .hero-actions .btn {
    justify-content: center
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch
  }

  .cta-btns .btn {
    justify-content: center
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .nav-row {
    padding: 0 20px;
    height: 60px
  }

  .mob {
    top: 60px
  }

  .logo {
    font-size: .8rem;
    gap: 6px;
  }

  .logo-mark,
  .logo-mark img {
    width: 28px;
    height: 28px;
  }

  .nav-end {
    gap: 6px;
  }

  .nav-cta {
    font-size: 10px;
    padding: 5px 10px;
    gap: 3px;
    letter-spacing: -.01em;
  }

  #theme-btn {
    width: 30px;
    height: 30px;
  }

  .mod-stat-row {
    grid-template-columns: 1fr
  }

  .comp-table th,
  .comp-table td {
    padding: 12px 14px;
    font-size: .78rem
  }

  .mod-card {
    padding: 24px
  }

  .cta-info-row {
    gap: 10px
  }

  .cta-info-icon {
    width: 30px;
    height: 30px
  }

  .seals {
    flex-wrap: wrap
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    text-align: left
  }

  .wa {
    bottom: 16px;
    right: 16px
  }

  /* política de privacidade — específicos do @640 */
  .priv-header {
    padding: 110px 0 40px
  }

  .priv-title {
    font-size: 1.5rem;
    line-height: 1.15
  }

  .priv-lead {
    font-size: .94rem
  }

  .priv-meta {
    flex-direction: column;
    gap: 6px
  }

  .priv-card {
    padding: 22px
  }

  .priv-card h2 {
    font-size: 1.2rem
  }

  .priv-card h3 {
    font-size: .9rem
  }

  .priv-card p,
  .priv-card ul.bul li,
  .priv-card ol.bul li {
    font-size: .88rem
  }
}

@media(max-width:420px) {
  .priv-card {
    padding: 20px
  }

  .priv-card h2 {
    font-size: 1.15rem
  }

  .logo-mark,
  .logo-mark img {
    width: 26px;
    height: 26px;
  }

  .nav-row {
    padding: 0 14px;
  }

  .nav-end {
    gap: 5px;
  }

  .nav-cta {
    padding: 5px 9px;
  }

  .burger {
    padding: 4px 2px;
  }

  .ben-card {
    padding: 24px
  }

  .about-card {
    padding: 24px
  }

  .eyebrow {
    font-size: .62rem
  }

  /* política de privacidade — específicos do @420 */
  .priv-card {
    padding: 18px
  }

  .priv-title {
    font-size: 1.5rem
  }

  .priv-card h2 {
    font-size: 1.05rem
  }
}

/* ============ política de privacidade — regras específicas ============ */

/* Light mode: cores específicas de elementos da política */
body.light .priv-card {
  border-color: rgba(0, 0, 0, .08);
  background: var(--bg1)
}

body.light .priv-toc a {
  color: var(--faint)
}

body.light .priv-toc a:hover {
  color: var(--green)
}

/* HEADER */
.priv-header {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden
}

.priv-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 30%, rgba(16, 185, 129, .06) 0%, transparent 60%);
  pointer-events: none
}

.priv-title {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 18px
}

.priv-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dim);
  max-width: 680px;
  margin-bottom: 24px
}

.priv-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--faint)
}

.priv-meta strong {
  color: var(--dim);
  font-weight: 500
}

/* LAYOUT */
.priv-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  padding: 40px 0 100px;
  align-items: start
}

.priv-toc {
  position: sticky;
  top: 88px;
  padding: 24px;
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  background: var(--bg1)
}

.priv-toc h4 {
  font-family: var(--fd);
  font-size: .72rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px
}

.priv-toc ul {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.priv-toc a {
  font-size: .8rem;
  color: var(--faint);
  line-height: 1.5;
  transition: color .2s;
  display: block
}

.priv-toc a:hover {
  color: var(--green)
}

.priv-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 760px
}

.priv-card {
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  background: var(--bg1);
  padding: 36px
}

.priv-card h2 {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 18px;
  scroll-margin-top: 88px
}

.priv-card h3 {
  font-family: var(--fd);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin: 22px 0 10px
}

.priv-card p {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--dim);
  margin-bottom: 14px
}

.priv-card p:last-child {
  margin-bottom: 0
}

.priv-card ul.bul,
.priv-card ol.bul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 18px;
  padding-left: 0
}

.priv-card ul.bul li,
.priv-card ol.bul li {
  position: relative;
  padding-left: 22px;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--dim)
}

.priv-card ul.bul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7em;
  width: 10px;
  height: 1px;
  background: var(--green)
}

.priv-card ol.bul {
  counter-reset: item
}

.priv-card ol.bul li {
  counter-increment: item
}

.priv-card ol.bul li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 600;
  font-size: .78rem;
  font-family: var(--fd)
}

.priv-card a.lnk {
  color: var(--green);
  transition: color .2s;
  border-bottom: 1px solid rgba(16, 185, 129, .3)
}

.priv-card a.lnk:hover {
  color: var(--green2);
  border-color: var(--green2)
}

.priv-card strong {
  color: var(--white);
  font-weight: 500
}

.priv-callout {
  border: 1px solid rgba(16, 185, 129, .25);
  background: rgba(16, 185, 129, .05);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 16px 0;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--dim)
}

.priv-callout strong {
  color: var(--green)
}

/* (duplicates removidos — FOOTER e WA FLOAT são compartilhados, já definidos
    na seção index.html acima. Mantidos apenas seletores específicos da política) */
