/* =========================================================
   DgsLoja - Design System (CSS puro)
   Convertido de dgsloja-next (Tailwind -> CSS)
   ========================================================= */

/* ---------- Design Tokens (cores como canais RGB) ---------- */
:root {
  /* Brand - Verde */
  --color-brand-50: 240 253 244;
  --color-brand-100: 187 247 208;
  --color-brand-200: 134 239 172;
  --color-brand-300: 74 222 128;
  --color-brand-400: 34 197 94;
  --color-brand-500: 22 163 74;
  --color-brand-600: 21 128 61;
  --color-brand-700: 20 83 45;

  /* Neutral */
  --color-neutral-50: 250 250 250;
  --color-neutral-100: 245 245 245;
  --color-neutral-200: 229 229 229;
  --color-neutral-300: 212 212 212;
  --color-neutral-400: 163 163 163;
  --color-neutral-500: 115 115 115;
  --color-neutral-600: 82 82 82;
  --color-neutral-700: 64 64 64;
  --color-neutral-800: 38 38 38;
  --color-neutral-900: 23 23 23;

  --color-red-400: 248 113 113;
  --color-yellow-400: 250 204 21;
  --color-green-400: 74 222 128;
  --color-amber-100: 254 243 199;
  --color-amber-400: 251 191 36;
  --color-amber-800: 146 64 14;

  --color-white: 255 255 255;
  --color-black: 0 0 0;

  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji";
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: rgb(var(--color-white));
  color: rgb(var(--color-neutral-900));
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

::selection {
  background: rgb(var(--color-brand-500));
  color: rgb(var(--color-white));
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgb(var(--color-neutral-100)); }
::-webkit-scrollbar-thumb {
  background: rgb(var(--color-neutral-300));
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: rgb(var(--color-neutral-400)); }

/* ---------- Ícones SVG inline ---------- */
.icon {
  width: 1.25rem; height: 1.25rem;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-sm { width: 1rem; height: 1rem; }
.icon-xs { width: 0.875rem; height: 0.875rem; }
.icon-lg { width: 1.75rem; height: 1.75rem; }
.icon-xl { width: 2.5rem; height: 2.5rem; }
.icon-fill { fill: currentColor; stroke: none; }

/* ---------- Layout · Container ---------- */
.container {
  max-width: 80rem;
  margin-left: auto; margin-right: auto;
  padding-left: 1rem; padding-right: 1rem;
}
.container-sm { max-width: 56rem; margin-left: auto; margin-right: auto; }
.container-xs { max-width: 36rem; margin-left: auto; margin-right: auto; }

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ---------- Responsividade do grid (2 col -> 1 col) ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-5 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ---------- Seções ---------- */
.section { padding: 4rem 0; }
.section-lg { padding: 5rem 0; }
@media (min-width: 640px) {
  .section { padding: 5rem 0; }
  .section-lg { padding: 6rem 0; }
}
.bg-neutral { background: rgb(var(--color-neutral-50)); }
.bg-dark { background: rgb(var(--color-neutral-900)); color: rgb(var(--color-white)); }

/* ---------- Títulos de seção ---------- */
.section-title {
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: rgb(var(--color-neutral-500));
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }

/* Section badge centralizado */
.section-badge-wrap { text-align: center; margin-bottom: 1rem; }
.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  color: rgb(var(--color-brand-500));
  background: rgb(var(--color-brand-500) / 0.05);
}
.section-badge.light {
  color: rgb(var(--color-brand-300));
  background: rgb(var(--color-brand-300) / 0.1);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.btn:focus-visible { outline: 2px solid var(--color-brand-600); outline-offset: 2px; }

.btn-brand {
  background: rgb(var(--color-brand-500));
  color: rgb(var(--color-white));
}
.btn-brand:hover { background: rgb(var(--color-brand-600)); transform: scale(1.05); }

.btn-white {
  background: rgb(var(--color-white));
  color: rgb(var(--color-brand-600));
}
.btn-white:hover { background: rgb(var(--color-brand-50)); transform: scale(1.05); }

.btn-ghost {
  background: rgb(var(--color-white) / 0.1);
  border: 1px solid rgb(var(--color-white) / 0.2);
  color: rgb(var(--color-brand-100));
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgb(var(--color-white) / 0.2);
  color: rgb(var(--color-white));
}

.btn-md { font-size: 0.875rem; padding: 0.75rem 1.5rem; }
.btn-lg { font-size: 1rem; padding: 1rem 2rem; }

.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }

/* ---------- Padrão de fundo em grade ---------- */
.bg-grid {
  background-image:
    linear-gradient(rgb(var(--color-brand-500) / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--color-brand-500) / 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ---------- Barra de navegação ---------- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  width: 100%;
  background: rgb(var(--color-white) / 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(var(--color-neutral-100));
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem; padding-bottom: 0.75rem;
}
@media (min-width: 640px) { .navbar-inner { padding-top: 1rem; padding-bottom: 1rem; } }

.brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-logo {
  width: 2rem; height: 2rem; border-radius: 0.5rem;
  background: rgb(var(--color-brand-500));
  display: flex; align-items: center; justify-content: center;
  color: rgb(var(--color-white));
}
.brand-text { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; color: rgb(var(--color-brand-500)); }
.brand-text b { color: rgb(var(--color-black)); font-weight: 700; }
.brand-logo-img { width: 2rem; height: 2rem; object-fit: contain; }

.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgb(var(--color-neutral-500));
  background: none; border: none; padding: 0;
  transition: color 0.2s ease;
}
.nav-link:hover { color: rgb(var(--color-brand-500)); }
.nav-link .chev { transition: transform 0.2s ease; }
.nav-link.open .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 0; margin-top: 0.5rem;
  width: 14rem;
  background: rgb(var(--color-white));
  border-radius: 1rem;
  border: 1px solid rgb(var(--color-neutral-200));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  padding: 0.5rem 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.nav-item.open .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.dropdown a {
  display: block; padding: 0.5rem 1rem;
  font-size: 0.875rem; color: inherit;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.dropdown a:hover { background: rgb(var(--color-neutral-50)); color: rgb(var(--color-brand-500)); }
.dropdown a.active { font-weight: 700; color: rgb(var(--color-brand-500)); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-consultor { display: none; font-size: 0.875rem; font-weight: 500; color: rgb(var(--color-neutral-600)); transition: color 0.2s ease; }
.nav-consultor:hover { color: rgb(var(--color-black)); }
@media (min-width: 640px) { .nav-consultor { display: inline-flex; } }

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgb(var(--color-brand-500)); color: rgb(var(--color-white));
  font-size: 0.875rem; font-weight: 500;
  padding: 0.65rem 1.25rem; border-radius: 999px;
  box-shadow: 0 10px 15px -3px rgb(var(--color-brand-500) / 0.4);
  transition: background-color 0.2s ease, transform 0.3s ease;
}
.nav-cta:hover { background: rgb(var(--color-brand-600)); transform: scale(1.05); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg,
    rgb(var(--color-brand-500)),
    rgb(var(--color-brand-600)) 50%,
    rgb(var(--color-brand-700)));
  color: rgb(var(--color-white));
}
.hero-blob-a { position: absolute; top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: rgb(var(--color-brand-400)); border-radius: 50%; filter: blur(100px); opacity: 0.2; }
.hero-blob-b { position: absolute; bottom: 2.5rem; right: 2.5rem; width: 24rem; height: 24rem; background: rgb(var(--color-brand-300)); border-radius: 50%; filter: blur(120px); opacity: 0.15; }

.hero-inner {
  position: relative;
  padding-top: 4rem; padding-bottom: 5rem;
}
@media (min-width: 640px) { .hero-inner { padding-top: 6rem; padding-bottom: 8rem; } }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgb(var(--color-white) / 0.1);
  border: 1px solid rgb(var(--color-white) / 0.1);
  border-radius: 999px; padding: 0.4rem 1rem; margin-bottom: 1.5rem;
  font-size: 0.875rem; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: rgb(var(--color-brand-300)); }
.pill-pulse { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.pill-text { color: rgb(var(--color-brand-100)); font-weight: 500; }

.hero-title {
  font-size: 2.25rem; font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-title em { font-style: normal; color: rgb(var(--color-brand-200)); }
.hero-title .spark { display: inline-block; margin-left: 0.5rem; color: rgb(var(--color-brand-200)); animation: float 3s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }

.hero-subtitle {
  font-size: 1.125rem; color: rgb(var(--color-brand-100));
  max-width: 32rem; margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; align-items: center; } }

.btn-play {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 500; color: rgb(var(--color-brand-100)); transition: color 0.2s ease;
}
.btn-play:hover { color: rgb(var(--color-white)); }
.play-circle {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 2px solid rgb(var(--color-brand-100));
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease;
}
.btn-play:hover .play-circle { border-color: rgb(var(--color-white)); }

.hero-check-list { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2.5rem; font-size: 0.875rem; color: rgb(var(--color-brand-100)); }
.check-item { display: flex; align-items: center; gap: 0.5rem; }
.check-dot { color: rgb(var(--color-brand-300)); }

.hero-visual { display: flex; justify-content: center; }
@media (min-width: 1024px) { .hero-visual { justify-content: flex-end; } }

.pdv-window { position: relative; width: 100%; max-width: 350px; }
@media (min-width: 1024px) { .pdv-window { max-width: 420px; } }
.pdv-frame {
  position: absolute; top: -1rem; right: -1rem;
  width: 100%; height: 100%;
  background: rgb(var(--color-brand-400)); border-radius: 2.5rem;
  opacity: 0.2; filter: blur(4px);
}
.pdv-card {
  position: relative;
  background: rgb(var(--color-white)); border-radius: 2.5rem;
  padding: 1.25rem; border: 1px solid rgb(var(--color-brand-400) / 0.2);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
@media (min-width: 640px) { .pdv-card { padding: 1.5rem; } }
.pdv-dots { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.pdv-dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; }
.pdv-dot.red { background: rgb(var(--color-red-400)); }
.pdv-dot.yellow { background: rgb(var(--color-yellow-400)); }
.pdv-dot.green { background: rgb(var(--color-green-400)); }
.pdv-title { margin-left: 1rem; font-size: 0.75rem; color: rgb(var(--color-neutral-400)); font-weight: 500; }

.pdv-body { background: rgb(var(--color-neutral-50)); border-radius: 0.75rem; padding: 1rem; border: 1px solid rgb(var(--color-neutral-100)); }
.pdv-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.pdv-head h4 { font-size: 0.875rem; font-weight: 700; color: rgb(var(--color-neutral-800)); }
.pdv-tag { font-size: 0.75rem; background: rgb(var(--color-brand-500) / 0.1); color: rgb(var(--color-brand-500)); font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 0.25rem; }

.pdv-items { display: flex; flex-direction: column; gap: 0.5rem; }
.pdv-item { display: flex; align-items: center; gap: 0.5rem; background: rgb(var(--color-white)); border: 1px solid rgb(var(--color-neutral-200)); border-radius: 0.5rem; padding: 0.6rem; }
.pdv-item .icon { color: rgb(var(--color-neutral-400)); }
.pdv-item-name { font-size: 0.75rem; color: rgb(var(--color-neutral-600)); }
.pdv-item-price { margin-left: auto; font-size: 0.75rem; font-weight: 700; color: rgb(var(--color-neutral-800)); }
.pdv-total { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgb(var(--color-neutral-200)); display: flex; align-items: center; justify-content: space-between; }
.pdv-total-label { font-size: 0.875rem; color: rgb(var(--color-neutral-500)); }
.pdv-total-value { font-size: 1.125rem; font-weight: 700; color: rgb(var(--color-brand-500)); }
.pdv-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.pdv-finish { flex: 1; background: rgb(var(--color-brand-500)); color: rgb(var(--color-white)); font-size: 0.75rem; font-weight: 700; padding: 0.5rem 0; border-radius: 0.5rem; border: none; transition: background-color 0.2s ease; }
.pdv-finish:hover { background: rgb(var(--color-brand-600)); }
.pdv-more { padding: 0 0.75rem; background: rgb(var(--color-neutral-100)); color: rgb(var(--color-neutral-600)); border-radius: 0.5rem; border: none; display: flex; align-items: center; transition: background-color 0.2s ease; }
.pdv-more:hover { background: rgb(var(--color-neutral-200)); }

/* ---------- Social Proof ---------- */
.social-proof { border-bottom: 1px solid rgb(var(--color-neutral-100)); background: rgb(var(--color-white)); }
.social-proof .container { padding-top: 2rem; padding-bottom: 2rem; }
.social-proof h2 { text-align: center; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; color: rgb(var(--color-neutral-400)); margin-bottom: 1.5rem; }
@media (min-width: 640px) { .social-proof h2 { font-size: 0.875rem; } }
.social-items { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem; opacity: 0.6; }
@media (min-width: 640px) { .social-items { gap: 4rem; } }
.social-item { display: flex; align-items: center; gap: 0.5rem; color: rgb(var(--color-neutral-400)); }
.social-item span { font-size: 0.875rem; font-weight: 500; }

/* ---------- Produtos (two cards) ---------- */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.card { border-radius: 2rem; border: 1px solid rgb(var(--color-neutral-200)); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease; }
.card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 20px 40px rgb(0 0 0 / 0.08), 0 6px 12px rgb(0 0 0 / 0.05); }
.card-light { background: rgb(var(--color-white)); border-color: rgb(var(--color-neutral-200)); }
.card-dark { background: rgb(var(--color-neutral-900)); color: rgb(var(--color-white)); border-color: rgb(var(--color-neutral-800)); position: relative; overflow: hidden; }
.card-inner { position: relative; padding: 2rem; }
@media (min-width: 640px) { .card-inner { padding: 2.5rem; } }
.card-glow { position: absolute; top: 0; right: 0; width: 16rem; height: 16rem; background: rgb(var(--color-brand-500)); opacity: 0.1; border-radius: 50%; filter: blur(64px); transform: translate(50%, -50%); }

.card-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 1.25rem; color: rgb(var(--color-brand-500)); background: rgb(var(--color-brand-500) / 0.05); }
.card-tag.light { color: rgb(var(--color-brand-300)); background: rgb(var(--color-brand-300) / 0.1); }

.icon-box {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  background: rgb(var(--color-brand-500)); color: rgb(var(--color-white));
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
.group:hover .icon-box { transform: scale(1.1); }
.icon-box.circle { border-radius: 999px; margin-left: auto; margin-right: auto; }
.icon-box.center { margin-left: auto; margin-right: auto; }
.icon-box.tint { background: rgb(var(--color-brand-500) / 0.1); color: rgb(var(--color-brand-500)); }
.icon-box.tint:hover { background: rgb(var(--color-brand-500)); color: rgb(var(--color-white)); }
.flag-img { width: 2.25rem; height: 2.25rem; object-fit: contain; border-radius: 0.25rem; box-shadow: 0 1px 3px rgb(0 0 0 / 0.15); }

.card-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.card-desc { color: rgb(var(--color-neutral-500)); margin-bottom: 1.5rem; }
.card-dark .card-desc { color: rgb(var(--color-neutral-400)); }

.check-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.check-bullet { margin-top: 0.125rem; background: rgb(var(--color-brand-500) / 0.1); border-radius: 999px; padding: 0.25rem; color: rgb(var(--color-brand-500)); display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.card-dark .check-bullet { background: rgb(var(--color-brand-300) / 0.1); color: rgb(var(--color-brand-300)); }
.check-list span { font-size: 0.875rem; color: rgb(var(--color-neutral-600)); }
.card-dark .check-list span { color: rgb(var(--color-neutral-300)); }

.btn-arrow { display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-arrow .icon { transition: transform 0.3s ease; }
.btn-arrow:hover .icon { transform: translateX(4px); }

.group { transition: transform 0.3s ease; }
.card-dark .group:hover .icon-box { transform: scale(1.1); }

/* ---------- Differentiators ---------- */
.diff-grid-top { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.diff-grid-bottom { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 1.25rem; }
@media (min-width: 640px) { .diff-grid-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .diff-grid-top { grid-template-columns: repeat(4, 1fr); } .diff-grid-bottom { grid-template-columns: repeat(3, 1fr); } }

.mini-card { position: relative; background: rgb(var(--color-white)); border-radius: 1rem; border: 1px solid rgb(var(--color-neutral-100)); padding: 1.5rem; text-align: center; overflow: hidden; }
@media (min-width: 640px) { .mini-card { padding: 2rem; } }
.mini-card h3 { font-weight: 700; margin-bottom: 0.5rem; }
.mini-card p { font-size: 0.875rem; color: rgb(var(--color-neutral-500)); line-height: 1.6; }
.mini-badge { position: absolute; top: 0.75rem; right: 0.75rem; background: rgb(var(--color-amber-100)); color: rgb(var(--color-amber-800)); font-size: 0.625rem; font-weight: 700; padding: 0.125rem 0.5rem; border-radius: 999px; }
.mini-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; color: rgb(var(--color-brand-500)); background: rgb(var(--color-brand-500) / 0.05); padding: 0.125rem 0.5rem; border-radius: 999px; margin-bottom: 0.75rem; }

/* ---------- How it Works ---------- */
.step-card { position: relative; background: rgb(var(--color-white)); border-radius: 1rem; border: 1px solid rgb(var(--color-neutral-100)); padding: 2rem; overflow: hidden; }
@media (min-width: 640px) { .step-card { border-radius: 2rem; padding: 2.5rem; } }
.step-number {
  position: absolute; top: -1.5rem; right: -1rem;
  font-size: 5.5rem; font-weight: 700; line-height: 1;
  color: rgb(var(--color-brand-500) / 0.05);
  -webkit-user-select: none; user-select: none;
}
@media (min-width: 640px) { .step-number { font-size: 6rem; } }
.step-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: rgb(var(--color-brand-500)); color: rgb(var(--color-white)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.step-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-card p { color: rgb(var(--color-neutral-500)); line-height: 1.6; }
.step-card > * { position: relative; z-index: 1; }

/* ---------- Testimonials ---------- */
.testimonial-card { background: rgb(var(--color-white)); border-radius: 1rem; border: 1px solid rgb(var(--color-neutral-100)); padding: 1.5rem; }
@media (min-width: 640px) { .testimonial-card { padding: 2rem; } }
.stars { display: flex; color: rgb(var(--color-amber-400)); margin-bottom: 1rem; }
.testimonial-quote { color: rgb(var(--color-neutral-600)); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid rgb(var(--color-neutral-100)); }
.avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgb(var(--color-brand-500) / 0.1); display: flex; align-items: center; justify-content: center; }
.avatar span { font-size: 0.875rem; font-weight: 700; color: rgb(var(--color-brand-500)); }
.author-name { font-size: 0.875rem; font-weight: 700; }
.author-role { font-size: 0.75rem; color: rgb(var(--color-neutral-400)); }

/* ---------- Qualifier ---------- */
.qualifier-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .qualifier-grid { grid-template-columns: 1fr 1fr; } }
.qualifier-card { border-radius: 2rem; padding: 2rem; }
@media (min-width: 640px) { .qualifier-card { padding: 2.5rem; } }
.qualifier-green { background: linear-gradient(135deg, rgb(var(--color-brand-50)), rgb(var(--color-white))); border: 1px solid rgb(var(--color-brand-200) / 0.5); }
.qualifier-green h3 { color: rgb(var(--color-brand-600)); }
.qualifier-dark { background: rgb(var(--color-neutral-900)); color: rgb(var(--color-white)); border: 1px solid rgb(var(--color-neutral-800)); position: relative; overflow: hidden; }
.qualifier-dark h3 { color: rgb(var(--color-brand-300)); }
.qualifier-dark p { color: rgb(var(--color-neutral-300)); }
.qualifier-dark .card-desc { color: rgb(var(--color-neutral-300)); margin-bottom: 2rem; }
.icon-circle { width: 3rem; height: 3rem; border-radius: 50%; background: rgb(var(--color-brand-500)); color: rgb(var(--color-white)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.qualifier-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.qualifier-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.qualifier-check { margin-top: 0.125rem; background: rgb(var(--color-brand-500)); color: rgb(var(--color-white)); border-radius: 999px; padding: 0.125rem; display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.qualifier-list span { color: rgb(var(--color-neutral-700)); }
.qualifier-body { position: relative; z-index: 1; }

/* ---------- Plans ---------- */
.plan-card { position: relative; max-width: 48rem; margin-left: auto; margin-right: auto; border-radius: 2.5rem; padding: 2rem; background: linear-gradient(135deg, rgb(var(--color-brand-500)), rgb(var(--color-brand-700))); overflow: hidden; box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
@media (min-width: 640px) { .plan-card { padding: 3rem; } }
.plan-head { width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: rgb(var(--color-white) / 0.15); color: rgb(var(--color-white)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.plan-glow-a { position: absolute; top: 0; right: 0; width: 20rem; height: 20rem; background: rgb(var(--color-brand-400)); border-radius: 50%; filter: blur(100px); opacity: 0.2; }
.plan-glow-b { position: absolute; bottom: 0; left: 0; width: 20rem; height: 20rem; background: rgb(var(--color-brand-300)); border-radius: 50%; filter: blur(100px); opacity: 0.1; }
.plan-card h3 { font-size: 1.5rem; margin-bottom: 1rem; line-height: 1.2; }
@media (min-width: 640px) { .plan-card h3 { font-size: 1.875rem; } }
.plan-desc { color: rgb(var(--color-brand-100)); line-height: 1.6; margin-bottom: 2rem; max-width: 36rem; }
.plan-features { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .plan-features { grid-template-columns: 1fr 1fr; } }
.plan-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; }
.plan-check { flex-shrink: 0; background: rgb(var(--color-white) / 0.2); color: rgb(var(--color-white)); border-radius: 999px; padding: 0.08rem; display: inline-flex; align-items: center; justify-content: center; line-height: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 56rem; margin-left: auto; margin-right: auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: rgb(var(--color-neutral-50));
  border: 1px solid rgb(var(--color-neutral-100));
  border-radius: 1rem; cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.faq-item[open] { background: rgb(var(--color-brand-50)); border-color: rgb(var(--color-brand-200)); }
.faq-summary {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.875rem; padding: 1.25rem 1.5rem;
  list-style: none; cursor: pointer;
}
@media (min-width: 640px) { .faq-summary { font-size: 1rem; } }
.faq-summary::-webkit-details-marker { display: none; }
.faq-chev { color: rgb(var(--color-brand-500)); flex-shrink: 0; margin-left: 1rem; transition: transform 0.3s ease; }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; color: rgb(var(--color-neutral-600)); font-size: 0.875rem; line-height: 1.6; }

/* ---------- CTA ---------- */
.cta-wrap { position: relative; border-radius: 2.5rem; padding: 2rem; background: linear-gradient(135deg, rgb(var(--color-brand-500)), rgb(var(--color-brand-700))); color: rgb(var(--color-white)); text-align: center; overflow: hidden; box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
@media (min-width: 640px) { .cta-wrap { padding: 4rem; } }
.cta-wrap h2 { font-size: 1.875rem; margin-bottom: 1rem; line-height: 1.2; }
.cta-glow-a { position: absolute; top: 0; right: 0; width: 20rem; height: 20rem; background: rgb(var(--color-brand-400)); border-radius: 50%; filter: blur(100px); opacity: 0.2; }
.cta-glow-b { position: absolute; bottom: 0; left: 0; width: 20rem; height: 20rem; background: rgb(var(--color-brand-300)); border-radius: 50%; filter: blur(100px); opacity: 0.1; }
.cta-wrap { overflow: hidden; }
@media (min-width: 768px) { .cta-wrap h2 { font-size: 3rem; } }
.cta-desc { color: rgb(var(--color-brand-100)); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }
.cta-link { font-weight: 500; color: rgb(var(--color-brand-100)); transition: color 0.2s ease; }
.cta-link:hover { color: rgb(var(--color-white)); }
.cta-ticks { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; font-size: 0.875rem; color: rgb(var(--color-brand-100)); }
.cta-ticks span { display: flex; align-items: center; gap: 0.4rem; }
.cta-ticks .icon { color: rgb(var(--color-brand-300)); }

/* ---------- Contato / Formulário ---------- */
.contact-form { max-width: 42rem; margin-left: auto; margin-right: auto; background: rgb(var(--color-white)); border-radius: 2rem; border: 1px solid rgb(var(--color-neutral-200)); padding: 2rem; }
@media (min-width: 640px) { .contact-form { padding: 2.5rem; } }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .col-span-2 { grid-column: span 1 / span 1; }
@media (min-width: 640px) { .form-grid .col-span-2 { grid-column: span 2 / span 2; } }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: rgb(var(--color-neutral-700)); margin-bottom: 0.5rem; }
.form-input {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem;
  border: 1px solid rgb(var(--color-neutral-200));
  font-size: 0.875rem; font-family: inherit; outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: rgb(var(--color-white));
}
.form-input:focus {
  border-color: rgb(var(--color-brand-500));
  box-shadow: 0 0 0 2px rgb(var(--color-brand-500) / 0.1);
}
textarea.form-input { resize: vertical; overflow: hidden; min-height: 6rem; }
.form-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: rgb(var(--color-brand-500)); color: rgb(var(--color-white));
  font-size: 1rem; font-weight: 700; padding: 1rem 2rem; border-radius: 999px;
  border: none; transition: background-color 0.2s ease, transform 0.3s ease, opacity 0.2s;
}
.form-submit:hover:not(:disabled) { background: rgb(var(--color-brand-600)); transform: scale(1.05); }
.form-submit:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.form-hint { font-size: 0.75rem; color: rgb(var(--color-neutral-400)); text-align: center; margin-top: 1rem; }

/* ---------- Image Placeholder ---------- */
.image-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; border-radius: 1rem;
  background: rgb(var(--color-neutral-200));
  border: 1px solid rgb(var(--color-neutral-300));
  overflow: hidden;
  color: rgb(var(--color-neutral-400));
}
.image-placeholder .icon { width: 2.5rem; height: 2.5rem; }
.image-placeholder span { font-size: 0.875rem; color: rgb(var(--color-neutral-500)); font-weight: 500; text-align: center; padding: 0 1rem; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-16-9 { aspect-ratio: 16 / 9; }
.aspect-16-10 { aspect-ratio: 16 / 10; }

/* ---------- FeatureSection (Retaguarda) ---------- */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.feature-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1rem; }
@media (min-width: 768px) { .feature-title { font-size: 2.25rem; } }
.feature-sub { color: rgb(var(--color-neutral-500)); font-size: 1.125rem; margin-bottom: 2rem; }
.feature-list { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.feature-check { margin-top: 0.125rem; background: rgb(var(--color-brand-500) / 0.1); border-radius: 999px; padding: 0.25rem; color: rgb(var(--color-brand-500)); flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.feature-item h3 { font-weight: 700; margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.875rem; color: rgb(var(--color-neutral-500)); line-height: 1.6; }
.feature-visual { position: relative; }
.feature-blob { position: absolute; top: -1rem; right: -1rem; width: 100%; height: 100%; background: rgb(var(--color-brand-400)); border-radius: 1rem; opacity: 0.15; filter: blur(4px); }
.order-1 { order: 1; }
.order-2 { order: 2; }
@media (min-width: 1024px) {
  .feature-grid.reverse .order-lg-1 { order: 1; }
  .feature-grid.reverse .order-lg-2 { order: 2; }
}

/* ---------- Sales & Cadastros ---------- */
.sales-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .sales-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.sales-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.sales-head .icon-box { margin-bottom: 0; }
.sales-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
@media (min-width: 640px) { .sales-title { font-size: 1.5rem; } }
.sales-desc { color: rgb(var(--color-neutral-500)); line-height: 1.6; }

/* ---------- Footer ---------- */
.footer {
  background: rgb(var(--color-black)); color: rgb(var(--color-white));
  padding-top: 4rem; padding-bottom: 2rem;
  border-top-left-radius: 3rem; border-top-right-radius: 3rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; border-bottom: 1px solid rgb(var(--color-neutral-800)); padding-bottom: 3rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }
.footer-brand-col { }
@media (min-width: 640px) { .footer-brand-col { grid-column: span 2 / span 2; } }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand-text { font-size: 1.125rem; font-weight: 700; }
.footer-brand-text span { color: rgb(var(--color-brand-300)); }
.footer-desc { font-size: 0.875rem; color: rgb(var(--color-neutral-400)); max-width: 20rem; line-height: 1.6; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgb(var(--color-neutral-800)); color: rgb(var(--color-neutral-400)); display: flex; align-items: center; justify-content: center; transition: background-color 0.2s ease; }
.social-link:hover { background: rgb(var(--color-brand-500)); }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; color: rgb(var(--color-white)); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: rgb(var(--color-neutral-400)); }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: rgb(var(--color-brand-300)); }
.footer-bottom { display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding-top: 2rem; color: rgb(var(--color-neutral-500)); font-size: 0.75rem; gap: 1rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .local { display: flex; align-items: center; gap: 0.5rem; }
.footer-dot { display: inline-block; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: rgb(var(--color-brand-300)); }

/* ---------- Animações de revelação ---------- */
/* Sempre visível por padrão; o JS adiciona .js e então aplica estados ocultos */
.js .animate-fade-up,
.js .animate-fade-left,
.js .animate-fade-right,
.js .animate-scale {
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.js .animate-fade-up { transform: translateY(40px); }
.js .animate-fade-left { transform: translateX(-40px); }
.js .animate-fade-right { transform: translateX(40px); }
.js .animate-scale { transform: scale(0.9); }
.js .animate-fade-up.visible,
.js .animate-fade-left.visible,
.js .animate-fade-right.visible,
.js .animate-scale.visible {
  opacity: 1;
  transform: none;
}
.js .animate-fade-in { animation: dgs-fade-in 0.6s ease-out both; }
@keyframes dgs-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Pulso de brilho no CTA */
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgb(var(--color-brand-500) / 0.3); }
  50% { box-shadow: 0 0 0 20px rgb(var(--color-brand-500) / 0); }
}

/* ---------- Hero Retaguarda (centralizado) ---------- */
.hero-center { text-align: center; }
.hero-center .hero-inner { padding-top: 4rem; padding-bottom: 5rem; }
@media (min-width: 640px) { .hero-center .hero-inner { padding-top: 6rem; padding-bottom: 7rem; } }
.hero-center .hero-inner { max-width: 64rem; margin-left: auto; margin-right: auto; }
.hero-center .hero-title { max-width: 56rem; margin-left: auto; margin-right: auto; }
.hero-center .hero-subtitle { margin-left: auto; margin-right: auto; }
.hero-center .hero-actions { align-items: center; justify-content: center; }
.hero-mockup { margin-top: 3.5rem; }
@media (min-width: 640px) { .hero-mockup { margin-top: 4rem; } }

/* ---------- Em construção ---------- */
.under-construction { padding-top: 3rem; padding-bottom: 1rem; }
.under-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 2rem;
  border: 1px solid rgb(var(--color-neutral-200));
  background: rgb(var(--color-white));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08);
}
@media (min-width: 640px) { .under-card { padding: 4rem 3rem; } }
.uc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; border-radius: 1rem;
  background: rgb(var(--color-brand-50));
  color: rgb(var(--color-brand-500));
  margin-bottom: 1.5rem;
}
.uc-badge {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgb(var(--color-brand-700));
  background: rgb(var(--color-brand-100));
  border-radius: 999px;
  padding: 0.25rem 0.875rem;
  margin-bottom: 1rem;
}
.uc-title { font-size: 1.5rem; font-weight: 700; color: rgb(var(--color-neutral-900)); line-height: 1.2; margin-bottom: 0.5rem; }
@media (min-width: 640px) { .uc-title { font-size: 2.25rem; } }
.uc-status { display: inline-block; font-weight: 700; color: rgb(var(--color-brand-600)); font-size: 1rem; margin-bottom: 0.875rem; }
.uc-desc { max-width: 34rem; margin: 0 auto 2rem; color: rgb(var(--color-neutral-500)); font-size: 1.05rem; }

/* ---------- Depoimentos em breve ---------- */
.testimonial-empty {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border: 1px dashed rgb(var(--color-neutral-300));
  border-radius: 1.5rem;
  background: rgb(var(--color-white));
}
.stamp-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; border-radius: 1rem;
  background: rgb(var(--color-brand-50));
  color: rgb(var(--color-brand-500));
  margin-bottom: 1.25rem;
}
.testimonial-empty h3 { font-size: 1.25rem; font-weight: 700; color: rgb(var(--color-neutral-800)); margin-bottom: 0.75rem; }
.testimonial-empty p { color: rgb(var(--color-neutral-500)); line-height: 1.6; margin-bottom: 1.5rem; }

/* ---------- Botão flutuante do WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem;
  border-radius: 999px;
  background: #25d366;
  color: rgb(var(--color-white));
  box-shadow: 0 8px 20px -4px rgb(0 0 0 / 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 24px -4px rgb(0 0 0 / 0.4); }
.wa-icon { width: 2rem; height: 2rem; }

@media (min-width: 640px) {
  .wa-float { right: 1.5rem; bottom: 1.5rem; width: 4rem; height: 4rem; }
  .wa-icon { width: 2.25rem; height: 2.25rem; }
}