/* ============================================================
   ALKANAS ERP – style.css  |  Bento Modern + Karla Font
   ============================================================ */

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --purple:        #820ad1;
  --purple-mid:    #9b2ee0;
  --purple-light:  #f4eafc;
  --purple-subtle: #faf5ff;
  --teal:          #14b8a6;
  --teal-dark:     #0e9488;
  --dark:          #0f0a1a;
  --dark-2:        #1a1128;
  --gray:          #6b7280;
  --gray-light:    #f5f4f8;
  --border:        #e8e2f0;
  --white:         #ffffff;

  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
}

/* ── BASE ─────────────────────────────────────────────────── */
body {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

.purple { color: var(--purple); }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Karla', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn--purple { background: var(--purple);   color: #fff; box-shadow: 0 4px 16px rgba(130,10,209,.3); }
.btn--purple:hover { background: var(--purple-mid); box-shadow: 0 8px 24px rgba(130,10,209,.4); }
.btn--teal   { background: var(--teal);     color: #fff; }
.btn--teal:hover { background: var(--teal-dark); }
.btn--ghost  { background: transparent; color: var(--dark); font-weight: 600; padding: 13px 20px; }
.btn--ghost:hover { color: var(--purple); }
.btn--ghost-light { background: transparent; color: rgba(255,255,255,.82); font-weight: 600; padding: 13px 20px; }
.btn--ghost-light:hover { color: #fff; }
.btn--outline { border: 1.5px solid rgba(255,255,255,.4); color: #fff; padding: 10px 24px; font-size: .88rem; }
.btn--outline:hover { background: rgba(255,255,255,.1); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--dark);
  background-image: url('../images/hero-background.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

/* overlay escuro sobre a imagem de fundo — mantém legibilidade com qualquer foto */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15,10,26,.88) 0%,
    rgba(26,17,40,.75) 55%,
    rgba(42,13,74,.55) 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 96px;
}

/* Nav */
.hero__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

/* logo-white-mono viewBox 121×20 — manter proporção, ajustar altura */
.nav-logo { height: 26px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }

/* Hero body */
.hero__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 40px;
  padding-top: 20px;
}
.hero__text { align-self: center; }

.hero__badge {
  display: inline-block;
  background: rgba(130,10,209,.35);
  border: 1px solid rgba(130,10,209,.5);
  color: #d8a0ff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero__text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}
.hero__text h1 .purple { color: #c06af5; }

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  max-width: 420px;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.hero__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: flex-end;
  margin-bottom: -96px;
}
.hero__img {
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 -8px 32px rgba(130,10,209,.25));
}

/* ============================================================
   CLIENTES
   ============================================================ */
.clientes {
  background: var(--gray-light);
  padding: 40px 40px;
}
.clientes__label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}
.clientes__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 72px;
  max-width: 900px;
  margin: 0 auto;
}
.clientes__logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: .7;
  transition: opacity .2s;
}
.clientes__logos img:hover { opacity: 1; }
.clientes__logo--pirakaia { height: 32px; }

/* ============================================================
   BENTO SECTION
   ============================================================ */
.bento-section {
  padding: 96px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
}

/* ── BENTO GRID ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

/* Slot assignments */
.bento-card:nth-child(1) { grid-column: span 7; }
.bento-card:nth-child(2) { grid-column: span 5; }
.bento-card:nth-child(3) { grid-column: span 4; }
.bento-card:nth-child(4) { grid-column: span 8; }

/* ── BENTO CARD base ── */
.bento-card {
  background: var(--gray-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Variantes de card */

/* pos-mesas-ok.png: 1200×1153 — ratio ~1:1 (quase quadrado)
   Layout horizontal: texto à esquerda, imagem quadrada à direita contida */
.bento-card--large {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  background: var(--purple-subtle);
  border-color: rgba(130,10,209,.12);
}
.bento-card--large .bento-card__content { flex: 1; }
.bento-card--large .bento-card__img {
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-card--large .bento-card__img img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

/* stone-p2-ficha-bar.png: 608×1080 — ratio 0.56 (retrato, dispositivo Stone)
   Layout: imagem portrait no topo (centrada), texto abaixo */
.bento-card--stone {
  background: var(--dark);
  color: #fff;
  border-color: transparent;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 0;
  overflow: hidden;
}
.bento-card--stone .bento-card__img--stone {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.bento-card--stone .bento-card__img--stone img {
  height: 220px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 -8px 20px rgba(130,10,209,.3));
}
.bento-card--stone .bento-card__content {
  padding: 0 4px 4px;
  width: 100%;
}

.bento-card--accent {
  background: var(--purple);
  color: #fff;
  border-color: transparent;
  justify-content: center;
}
.bento-highlight { font-style: italic; }

/* Delivery — row: texto à esquerda, screenshot retrato à direita */
.bento-card--delivery {
  background: var(--white);
  border-color: var(--border);
  flex-direction: row;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.bento-card--delivery .bento-card__content {
  flex: 1;
  padding: 36px;
}

/* imagem retrato do cardápio digital */
.bento-card__img--delivery {
  width: 220px;
  flex-shrink: 0;
  overflow: hidden;
}
.bento-card__img--delivery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Tags */
.bento-tag {
  display: inline-block;
  background: rgba(130,10,209,.12);
  color: var(--purple);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.bento-tag--dark {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}
.bento-tag--white {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.bento-card__content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}
.bento-card__content p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.6;
}
.bento-card--stone .bento-card__content p,
.bento-card--accent .bento-card__content p {
  color: rgba(255,255,255,.7);
}
.bento-card--stone .bento-card__content h3,
.bento-card--accent .bento-card__content h3 { color: #fff; }

.bento-list { margin-top: 8px; }
.bento-list li {
  font-size: .88rem;
  color: var(--gray);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.bento-list li::before {
  content: "→";
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   PDV SHOWCASE – Carrossel de telas
   ============================================================ */
.pdv-showcase {
  background: var(--dark-2);
  padding: 96px 40px;
}
.pdv-showcase__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pdv-showcase__header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label--light { color: #a855f7; }
.purple-light { color: #c06af5; }

.pdv-showcase__header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 16px;
}
.pdv-showcase__header p {
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Carrossel */
.pdv-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pdv-carousel__track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.pdv-carousel__track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

/* Setas */
.pdv-carousel__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.pdv-carousel__arrow:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* Slide */
.pdv-slide { flex: 0 0 100%; }

/* Chrome de browser */
.pdv-slide__browser {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
}
.pdv-slide__bar {
  background: #dddde0;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
}
.pdv-slide__bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.pdv-slide__bar span:nth-child(1) { background: #ff5f57; }
.pdv-slide__bar span:nth-child(2) { background: #febc2e; }
.pdv-slide__bar span:nth-child(3) { background: #28c840; }

.pdv-slide__browser img {
  width: 100%;
  height: auto;
  display: block;
}

/* Legenda */
.pdv-slide__caption {
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  margin-top: 20px;
  font-style: italic;
  line-height: 1.6;
  min-height: 2.8em;
}

/* Dots */
.pdv-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.pdv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.pdv-dot--active {
  background: var(--purple);
  transform: scale(1.4);
}

/* ============================================================
   INTEGRAÇÕES
   ============================================================ */
.integracoes {
  background: var(--purple);
  padding: 64px 40px;
  color: #fff;
}
.integracoes__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}
.integracoes__text { flex: 0 0 280px; }
.integracoes__text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.integracoes__text p { font-size: .92rem; opacity: .8; }
.integracoes__logos {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.integracoes__logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: opacity .2s;
}
.integracoes__logos img:hover { opacity: 1; }

/* ============================================================
   GESTÃO
   ============================================================ */
.gestao {
  background: var(--dark);
  color: #fff;
  padding: 96px 40px;
}

.gestao__header {
  max-width: 1200px;
  margin: 0 auto 48px;
  text-align: center;
}
.gestao__header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 12px;
}
.gestao__header h2 .purple { color: #c06af5; }
.gestao__header p { color: rgba(255,255,255,.55); font-size: 1rem; }

.gestao__screenshot {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
}
.gestao__screenshot img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  width: 100%;
}
.gestao__caption {
  margin-top: 16px;
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  font-style: italic;
}

.gestao__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gestao__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .2s;
}
.gestao__card:hover { background: rgba(255,255,255,.08); }

.gestao__icon {
  width: 52px;
  height: 52px;
  background: rgba(130,10,209,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c06af5;
}

.gestao__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.gestao__card ul { display: flex; flex-direction: column; gap: 8px; }
.gestao__card ul li {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.gestao__card ul li::before {
  content: "·";
  color: #c06af5;
  font-size: 1.2rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.gestao__cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   PLANOS
   ============================================================ */
.planos {
  padding: 96px 40px;
  background: var(--gray-light);
}
.planos__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.planos__header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.planos__header p { color: var(--gray); }

.planos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.plano-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.plano-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.plano-card--featured {
  background: var(--purple-subtle);
  border-color: rgba(130,10,209,.2);
  box-shadow: 0 4px 24px rgba(130,10,209,.12);
}

.plano-card__bar {
  height: 4px;
  background: var(--teal);
  border-radius: 4px;
  margin-bottom: 4px;
}
.plano-card--featured .plano-card__bar { background: var(--purple); }

.plano-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.plano-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray);
}
.plano-card--featured h3 { color: var(--purple); }

.plano-card__price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 3px;
}
.plano-card--featured .plano-card__price { color: var(--purple); }
.plano-card__price sup { font-size: 1rem; padding-top: 6px; font-weight: 600; }
.plano-card__price span { font-size: .9rem; font-weight: 500; color: var(--gray); align-self: flex-end; padding-bottom: 4px; }

.plano-card ul { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.plano-card ul li {
  font-size: .88rem;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.plano-card ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  margin-top: 5px;
}
.plano-card--featured ul li::before { border-color: var(--purple); }

.plano-card .btn { margin-top: 4px; width: 100%; font-size: .88rem; padding: 11px; }

/* ============================================================
   POR QUE ALKANAS
   ============================================================ */
.porque {
  padding: 96px 40px;
  background: var(--white);
}
.porque__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.porque__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
.porque__text p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.porque__visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--gray-light);
  padding: 96px 40px;
}
.faq__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: flex-start;
}
.faq__left h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.faq__left p { color: var(--gray); font-size: .95rem; margin-bottom: 8px; }
.faq__email { color: var(--purple); font-weight: 700; font-size: .9rem; }

.faq__items { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.faq-item__btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-family: 'Karla', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: color .2s;
  gap: 12px;
}
.faq-item__btn:hover { color: var(--purple); }
.faq-item__btn[aria-expanded="true"] { color: var(--purple); }

.faq-icon {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--gray);
}
.faq-item__btn[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--purple);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item__answer.open { max-height: 200px; }
.faq-item__answer p {
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.7;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: var(--purple);
  padding: 80px 40px;
}
.cta-final__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
/* mascote-white-mono viewBox 18×19 — quase quadrado, pequeno */
.cta-final__mascote {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cta-final__mascote img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cta-final__text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-final__text p {
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  font-size: 1rem;
}
.cta-final .btn--purple {
  background: #fff;
  color: var(--purple);
  box-shadow: none;
}
.cta-final .btn--purple:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 64px 40px 0;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
/* logo-white-mono viewBox 121×20 — proporção larga, ajustar altura */
.footer__logo { height: 22px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer__stone { height: 52px; width: auto; margin-top: 20px; }

.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-title {
  font-weight: 700;
  font-size: .85rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 4px;
}
.footer__nav a { font-size: .88rem; transition: color .2s; }
.footer__nav a:hover { color: #fff; }

.footer__social { display: flex; flex-direction: column; gap: 16px; }
.footer__icons { display: flex; gap: 10px; }
.footer__icons a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.footer__icons a:hover { background: var(--purple); color: #fff; }

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bento-card:nth-child(1) { grid-column: span 12; flex-direction: column; }
  .bento-card:nth-child(2) { grid-column: span 6; flex-direction: column; }
  .bento-card:nth-child(3) { grid-column: span 6; }
  .bento-card:nth-child(4) { grid-column: span 12; }

  .integracoes__inner { flex-direction: column; gap: 32px; }
  .integracoes__text { flex: none; }
  .integracoes__logos { justify-content: flex-start; }

  .gestao__cards { grid-template-columns: repeat(2, 1fr); }
  .porque__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* hero background menor e otimizado para mobile */
  .hero {
    background-image: url('../images/hero-background-mobile.webp');
  }

  .hero__body { grid-template-columns: 1fr; text-align: center; }
  .hero__text h1, .hero__sub { text-align: center; }
  .hero__sub { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }

  .hero__nav { flex-direction: column; gap: 20px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .bento-section, .gestao, .planos, .porque, .faq, .clientes, .pdv-showcase { padding: 64px 20px; }
  .integracoes { padding: 56px 20px; }
  .pdv-carousel__arrow { width: 40px; height: 40px; }
  .pdv-carousel { gap: 10px; }

  /* large vai pra coluna em mobile */
  .bento-card--large { flex-direction: column; }
  .bento-card--large .bento-card__img { width: 100%; height: 220px; }
  /* stone já é coluna por padrão, apenas limitar altura da imagem */
  .bento-card--stone .bento-card__img--stone { height: 160px; }
  /* delivery em mobile: coluna, imagem embaixo com altura fixa */
  .bento-card--delivery { flex-direction: column; }
  .bento-card__img--delivery { width: 100%; height: 200px; }

  .gestao__cards { grid-template-columns: 1fr; }
  .planos__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-final__inner { flex-direction: column; text-align: center; gap: 24px; }

  .hero__inner { padding: 0 20px; }
}

@media (max-width: 480px) {
  .bento-card:nth-child(2),
  .bento-card:nth-child(3),
  .bento-card:nth-child(4) { grid-column: span 12; }
  .clientes__logos { gap: 24px; }
  .clientes__logos img { height: 32px; }
}

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
