/* ============================================================
   LOJY WEBSITE THEME · main.css v1.1
   Identidade visual real da Lojy (do flyer oficial):
   - Fonte: Fraunces (títulos) + DM Sans (corpo)
   - Fundo bege quente, verde escuro como texto, verde vivo como accent
   ============================================================ */

:root {
  /* Paleta da marca (do flyer) */
  --lojy-dark: #0e1b0e;
  --lojy-dark2: #1e3a29;
  --lojy-green: #2bba4a;
  --lojy-green-dark: #166534;
  --lojy-green-lt: #9FE870;
  --lojy-cream: #f5f0e6;
  --lojy-cream-lt: #fdfaf3;
  --lojy-green-tint: #f0fdf4;
  --lojy-green-tint2: #dcfce7;
  --lojy-green-border: #86efac;

  /* Auxiliares */
  --white: #ffffff;
  --border: #e5e7eb;
  --border2: #d1d5db;
  --txt: #0e1b0e;
  --txt-mid: #475569;
  --txt-gray: #64748b;
  --txt-lt: rgba(255,255,255,.85);

  /* Acentos (pra cards secundários) */
  --purple: #7c3aed;
  --blue: #0369a1;
  --amber: #d97706;
  --red: #dc2626;

  /* Sombras */
  --sh: 0 2px 8px rgba(14,27,14,.06);
  --sh-md: 0 8px 22px rgba(14,27,14,.08);
  --sh-lg: 0 16px 40px rgba(14,27,14,.12);
  --sh-xl: 0 24px 60px rgba(14,27,14,.14);

  /* Radius orgânico */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Fontes */
  --f-serif: 'Fraunces', Georgia, serif;
  --f-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--txt);
  background: var(--lojy-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lojy-green-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--lojy-green); }

h1, h2, h3, h4, h5 {
  font-family: var(--f-serif);
  color: var(--lojy-dark);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--lojy-green) 0%, var(--lojy-green-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(43,186,74,.32);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(43,186,74,.42);
}
.btn-outline {
  background: transparent;
  color: var(--lojy-dark);
  border-color: var(--lojy-dark);
}
.btn-outline:hover {
  background: var(--lojy-dark);
  color: var(--lojy-green-lt);
  border-color: var(--lojy-dark);
}
.btn-invert {
  background: #fff;
  color: var(--lojy-dark);
}
.btn-invert:hover { color: var(--lojy-green-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--lojy-dark);
  padding: 10px 18px;
  font-weight: 600;
}
.btn-ghost:hover { color: var(--lojy-green-dark); }
.btn-link {
  background: transparent;
  color: var(--lojy-green-dark);
  padding: 10px 6px;
  border: 0;
  font-weight: 600;
}
.btn-link:hover { color: var(--lojy-green); }
.btn-lg { padding: 15px 32px; font-size: 15px; }

/* ================================================================
   NAV
   ================================================================ */
.lojy-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,230,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14,27,14,.06);
  transition: box-shadow .3s, background .3s;
}
.lojy-nav.scrolled {
  box-shadow: var(--sh);
  background: rgba(253,250,243,.98);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--f-serif);
  font-weight: 800;
  font-size: 28px;
  color: var(--lojy-dark);
  text-decoration: none;
  letter-spacing: -0.03em;
  line-height: 1;
}
.nav-logo::after {
  content: "";
  width: 10px; height: 10px;
  background: var(--lojy-green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(43,186,74,.7);
  align-self: flex-end;
  margin-bottom: 4px;
  margin-left: 2px;
}
.nav-logo .logo-txt { display: inline-block; }
.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 8px 14px;
  color: var(--txt-mid);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all .2s;
}
.nav-links a:hover {
  color: var(--lojy-green-dark);
  background: rgba(43,186,74,.08);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--lojy-dark);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding: 70px 24px 100px;
  background: linear-gradient(180deg, var(--lojy-cream-lt) 0%, var(--lojy-cream) 100%);
  overflow: hidden;
}
/* Glow do hero - estatico, sem piscar */
.hero-bg-glow {
  position: absolute;
  top: -240px;
  right: -240px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,186,74,.13) 0%, transparent 62%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(43,186,74,.10);
  color: var(--lojy-green-dark);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
  border: 1px solid rgba(43,186,74,.22);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lojy-green);
  box-shadow: 0 0 0 4px rgba(43,186,74,.15);
}
.hero-h1 {
  font-family: var(--f-serif);
  font-size: clamp(38px, 5.6vw, 64px);
  font-weight: 700;
  color: var(--lojy-dark);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--lojy-green-dark);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.hero-h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.12em;
  height: 0.32em;
  background: rgba(159,232,112,.55);
  z-index: -1;
  border-radius: 4px;
}
.hero-sub {
  font-size: 17px;
  color: var(--txt-mid);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-sub b { color: var(--lojy-dark); font-weight: 700; }
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-badges .hb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--txt-mid);
  font-weight: 500;
}
.hero-badges .hb i { color: var(--lojy-green); }

/* --- Hero visual --- */
.hero-visual {
  position: relative;
  overflow: visible;
}
.hero-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid rgba(14,27,14,.08);
}
.hero-img-wrap img { width: 100%; }

/* Canvas do three.js orb (roda atrás) */
.hero-orb-canvas {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}

/* Mockup fallback */
.hero-mockup {
  position: relative;
  z-index: 1;
}
.mk-window {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(14,27,14,.16), 0 8px 20px rgba(14,27,14,.06);
  overflow: hidden;
  border: 1px solid rgba(14,27,14,.06);
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform .6s;
}
.hero-mockup:hover .mk-window { transform: rotateY(-1deg) rotateX(1deg); }
.mk-bar {
  padding: 12px 14px;
  background: var(--lojy-cream-lt);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 6px;
  align-items: center;
}
.mk-bar > span:not(.mk-url) {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border);
}
.mk-bar > span:nth-child(1) { background: #ef4444; }
.mk-bar > span:nth-child(2) { background: #f59e0b; }
.mk-bar > span:nth-child(3) { background: #22c55e; }
.mk-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--txt-gray);
  font-family: monospace;
}
.mk-body {
  display: grid;
  grid-template-columns: 60px 1fr;
  min-height: 340px;
}
.mk-side {
  background: var(--lojy-dark);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.mk-side-item {
  width: 40px; height: 40px;
  border-radius: 10px;
  color: rgba(255,255,255,.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.mk-side-item.active {
  background: var(--lojy-green);
  color: #fff;
  box-shadow: 0 4px 10px rgba(43,186,74,.4);
}
.mk-content {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-content: start;
  background: var(--lojy-cream-lt);
  overflow: hidden;
}
.mk-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  min-width: 0;
}
.mk-card-blue { border-top: 3px solid var(--blue); }
.mk-card-purple { border-top: 3px solid var(--purple); }
.mk-card-green { border-top: 3px solid var(--lojy-green); }
.mk-card-lbl {
  font-size: 9px;
  color: var(--txt-gray);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mk-card-val {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--lojy-dark);
  letter-spacing: -0.015em;
  line-height: 1;
}
.mk-card-trend {
  font-size: 11px;
  color: var(--lojy-green-dark);
  font-weight: 600;
  margin-top: 4px;
}
.mk-chart {
  grid-column: span 3;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 120px;
}
.mk-bar-c {
  flex: 1;
  background: linear-gradient(180deg, var(--lojy-green) 0%, var(--lojy-green-lt) 100%);
  border-radius: 4px 4px 0 0;
  min-height: 20%;
  transform-origin: bottom;
  animation: chartGrow 1s ease-out both;
  will-change: transform;
}
.mk-bar-c:nth-child(1) { animation-delay: .05s; }
.mk-bar-c:nth-child(2) { animation-delay: .1s; }
.mk-bar-c:nth-child(3) { animation-delay: .15s; }
.mk-bar-c:nth-child(4) { animation-delay: .2s; }
.mk-bar-c:nth-child(5) { animation-delay: .25s; }
.mk-bar-c:nth-child(6) { animation-delay: .3s; }
.mk-bar-c:nth-child(7) { animation-delay: .35s; }
@keyframes chartGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* Cards flutuantes - PARADOS (sem animacao pra nao piscar) */
.mk-float {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--sh-lg);
  padding: 11px 13px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: var(--txt-mid);
  border: 1px solid rgba(14,27,14,.06);
  line-height: 1.4;
  z-index: 3;
  max-width: 200px;
}
.mk-float b { color: var(--lojy-dark); font-family: var(--f-serif); font-weight: 700; }
.mk-float i {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}
.mk-float-1 { left: -20px; bottom: 30px; }
.mk-float-1 i { background: linear-gradient(135deg, #f97316, #ea580c); }
.mk-float-2 { right: -10px; top: 40px; }
.mk-float-2 i { background: linear-gradient(135deg, var(--purple), #6d28d9); }

/* ================================================================
   TRUST BAR (verde escuro)
   ================================================================ */
.trust-bar {
  background: linear-gradient(135deg, var(--lojy-dark) 0%, var(--lojy-dark2) 100%);
  padding: 50px 24px;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lojy-green-lt), var(--lojy-green), var(--lojy-green-lt));
  opacity: .8;
}
.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.trust-title {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item .trust-n {
  font-family: var(--f-serif);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--lojy-green-lt);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-item .trust-l {
  color: rgba(255,255,255,.75);
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 500;
}

/* ================================================================
   MODULES ANCHOR (índice visual)
   ================================================================ */
.modules-anchor {
  padding: 90px 24px 40px;
  background: var(--lojy-cream-lt);
  scroll-margin-top: 80px;
}
.ma-inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.ma-eyebrow {
  color: var(--lojy-green-dark);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ma-title {
  font-family: var(--f-serif);
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 700;
  color: var(--lojy-dark);
  margin-bottom: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.ma-title em {
  font-style: italic;
  color: var(--lojy-green-dark);
  position: relative;
  display: inline-block;
}
.ma-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.14em;
  height: 0.28em;
  background: rgba(159,232,112,.45);
  z-index: -1;
  border-radius: 3px;
}
.ma-lead {
  color: var(--txt-mid);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 44px;
}
.ma-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.ma-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 12px;
  text-align: center;
  color: var(--lojy-dark);
  text-decoration: none;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12.5px;
  will-change: transform;
}
.ma-card i {
  color: var(--lojy-green);
  font-size: 24px;
  transition: transform .3s;
}
.ma-card:hover {
  border-color: var(--lojy-green);
  transform: translateY(-4px);
  color: var(--lojy-green-dark);
  box-shadow: var(--sh-md);
}
.ma-card:hover i { transform: scale(1.14); }

/* ================================================================
   FEATURE SECTIONS
   ================================================================ */
.feature-section {
  padding: 90px 24px;
  scroll-margin-top: 80px;
  position: relative;
}
.feature-section.fs-alt { background: var(--lojy-cream-lt); }
.feature-section.fs-dark {
  background: linear-gradient(180deg, var(--lojy-dark) 0%, var(--lojy-dark2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.feature-section.fs-dark::before {
  content: "";
  position: absolute;
  right: -160px; top: -160px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(159,232,112,.14), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.feature-section.fs-dark::after {
  content: "";
  position: absolute;
  left: -160px; bottom: -160px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(43,186,74,.14), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.feature-section.fs-dark h2 { color: #fff; }
.feature-section.fs-dark h2 em {
  color: var(--lojy-green-lt);
  font-style: italic;
}
.feature-section.fs-dark h2 em::after {
  background: rgba(159,232,112,.25);
}
.feature-section.fs-dark p { color: rgba(255,255,255,.78); }
.feature-section.fs-dark p b { color: #fff; }

.fs-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}
.fs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fs-split.fs-reverse .fs-text { order: 2; }
.fs-split.fs-reverse .fs-visual { order: 1; }
.fs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43,186,74,.12);
  color: var(--lojy-green-dark);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  border: 1px solid rgba(43,186,74,.22);
}
.fs-badge-blue { background: rgba(3,105,161,.10); color: var(--blue); border-color: rgba(3,105,161,.22); }
.fs-badge-orange { background: rgba(217,119,6,.12); color: var(--amber); border-color: rgba(217,119,6,.24); }
.fs-badge-cyan { background: rgba(159,232,112,.15); color: var(--lojy-green-lt); border-color: rgba(159,232,112,.3); }
.fs-badge-purple { background: rgba(124,58,237,.10); color: var(--purple); border-color: rgba(124,58,237,.22); }
.fs-badge-green { background: rgba(43,186,74,.12); color: var(--lojy-green-dark); border-color: rgba(43,186,74,.22); }
.fs-badge-red { background: rgba(220,38,38,.10); color: var(--red); border-color: rgba(220,38,38,.22); }

.fs-text h2 {
  font-family: var(--f-serif);
  font-size: clamp(30px, 3.8vw, 42px);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.fs-text h2 em {
  font-style: italic;
  color: var(--lojy-green-dark);
  position: relative;
  display: inline-block;
}
.fs-text h2 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.12em;
  height: 0.28em;
  background: rgba(159,232,112,.45);
  z-index: -1;
  border-radius: 3px;
}
.fs-text > p {
  font-size: 16px;
  color: var(--txt-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.fs-text > p b { color: var(--lojy-dark); font-weight: 700; }

/* Check-list estilo do flyer */
.fs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.fs-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--txt-mid);
  line-height: 1.55;
  margin-bottom: 12px;
}
.fs-list li i {
  color: var(--lojy-green-dark);
  background: var(--lojy-green-tint2);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}
.fs-list li b { color: var(--lojy-dark); font-weight: 700; }
.fs-list-light li { color: rgba(255,255,255,.78); }
.fs-list-light li b { color: #fff; }
.fs-list-light li i {
  color: var(--lojy-dark);
  background: var(--lojy-green-lt);
}
.fs-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.fs-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.fs-mini {
  padding: 16px;
  background: linear-gradient(135deg, var(--lojy-green-tint) 0%, #fff 60%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--lojy-green);
  border-radius: var(--r-sm);
  font-size: 12.5px;
  color: var(--txt-mid);
  line-height: 1.5;
}
.fs-mini i {
  display: block;
  color: var(--lojy-green-dark);
  font-size: 20px;
  margin-bottom: 8px;
}
.fs-mini b {
  display: block;
  font-family: var(--f-serif);
  color: var(--lojy-dark);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 4px;
}

.fs-visual { position: relative; }
.fs-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid rgba(14,27,14,.08);
}
.fs-img.fs-img-shadow { box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.fs-placeholder {
  background: repeating-linear-gradient(45deg, var(--lojy-cream), var(--lojy-cream) 12px, var(--lojy-cream-lt) 12px, var(--lojy-cream-lt) 24px);
  border: 2px dashed rgba(14,27,14,.15);
  border-radius: var(--r-xl);
  padding: 60px 30px;
  text-align: center;
  color: var(--txt-gray);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.fs-placeholder p { line-height: 1.5; }
.fs-placeholder small { color: var(--txt-gray); font-size: 12px; }
.fs-placeholder-dark {
  background: repeating-linear-gradient(45deg, var(--lojy-dark2), var(--lojy-dark2) 12px, var(--lojy-dark) 12px, var(--lojy-dark) 24px);
  border-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
}

/* ================================================================
   IA SECTION (destaque especial)
   ================================================================ */
.fs-ia {
  background: linear-gradient(135deg, var(--lojy-green-tint) 0%, var(--lojy-cream) 100%);
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}
.fs-ia::before {
  content: "";
  position: absolute;
  right: -100px; top: 40px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(124,58,237,.12), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.fs-header-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
  position: relative;
  z-index: 1;
}
.fs-header-center h2 {
  font-family: var(--f-serif);
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 700;
  color: var(--lojy-dark);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.fs-header-center h2 em {
  font-style: italic;
  color: var(--purple);
  position: relative;
  display: inline-block;
}
.fs-header-center h2 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.12em;
  height: 0.28em;
  background: rgba(124,58,237,.18);
  z-index: -1;
  border-radius: 3px;
}
.fs-header-center p {
  color: var(--txt-mid);
  font-size: 16px;
  line-height: 1.7;
}
.fs-header-center p b { color: var(--lojy-dark); font-weight: 700; }

.ia-features-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.ia-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.ia-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--lojy-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.ia-card:hover::before { transform: scaleX(1); }
.ia-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(124,58,237,.4);
}
.ia-ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.ia-ic-1 { background: linear-gradient(135deg, var(--purple), #a855f7); }
.ia-ic-2 { background: linear-gradient(135deg, var(--amber), var(--red)); }
.ia-ic-3 { background: linear-gradient(135deg, var(--blue), #0891b2); }
.ia-ic-4 { background: linear-gradient(135deg, #eab308, var(--amber)); }
.ia-ic-5 { background: linear-gradient(135deg, var(--lojy-green), var(--lojy-green-dark)); }
.ia-ic-6 { background: linear-gradient(135deg, #ec4899, var(--purple)); }
.ia-card h4 {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--lojy-dark);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.ia-card p {
  font-size: 13.5px;
  color: var(--txt-mid);
  line-height: 1.6;
}
.ia-card p b { color: var(--lojy-dark); font-weight: 700; }
.ia-gallery {
  max-width: 1100px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.ia-shot {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid rgba(14,27,14,.06);
}
.ia-cta {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

/* ================================================================
   MODULES GRID
   ================================================================ */
.modules-grid {
  padding: 90px 24px;
  background: var(--lojy-cream);
}
.mg-inner { max-width: 1240px; margin: 0 auto; }
.mg-header { text-align: center; margin-bottom: 48px; }
.mg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--lojy-green);
  border-radius: var(--r-md);
  padding: 24px 22px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  scroll-margin-top: 90px;
  will-change: transform;
}
.mg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-left-color: var(--lojy-green-dark);
}
.mg-ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lojy-green) 0%, var(--lojy-green-dark) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(43,186,74,.24);
}
.mg-card h3 {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--lojy-dark);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.mg-card p {
  font-size: 13.5px;
  color: var(--txt-mid);
  line-height: 1.6;
  margin: 0 0 14px;
}
.mg-card p b { color: var(--lojy-dark); font-weight: 700; }
.mg-shot {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials { padding: 90px 24px; background: var(--lojy-cream-lt); }
.ts-inner { max-width: 1240px; margin: 0 auto; }
.ts-header { text-align: center; margin-bottom: 48px; }
.ts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ts-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.ts-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.ts-stars {
  display: flex;
  gap: 3px;
  color: #eab308;
  font-size: 15px;
  margin-bottom: 18px;
}
.ts-quote {
  color: var(--txt-mid);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 22px;
  flex: 1;
}
.ts-author {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.ts-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.ts-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ts-avatar-fallback {
  background: linear-gradient(135deg, var(--lojy-green), var(--lojy-green-dark));
  color: #fff;
  font-family: var(--f-serif);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-name {
  font-family: var(--f-serif);
  font-weight: 700;
  color: var(--lojy-dark);
  font-size: 14.5px;
}
.ts-cargo {
  color: var(--txt-gray);
  font-size: 12px;
  margin-top: 2px;
}

/* ================================================================
   COMPARISON
   ================================================================ */
.comparison { padding: 90px 24px; background: var(--lojy-cream); }
.cmp-inner { max-width: 1100px; margin: 0 auto; }
.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}
.cmp-col {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px 32px;
  border: 1.5px solid var(--border);
  position: relative;
}
.cmp-col.cmp-good {
  border-color: var(--lojy-green);
  background: linear-gradient(180deg, #ffffff 0%, var(--lojy-green-tint) 100%);
  box-shadow: 0 20px 40px rgba(43,186,74,.14);
}
.cmp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  background: #fee2e2;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cmp-tag.cmp-tag-good {
  background: var(--lojy-green-tint2);
  color: var(--lojy-green-dark);
}
.cmp-col h4 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--lojy-dark);
  margin-bottom: 22px;
}
.cmp-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.cmp-col li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--txt-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.cmp-col li:last-child { border-bottom: 0; }
.cmp-col li i {
  margin-top: 4px;
  font-size: 13px;
  flex-shrink: 0;
}
.cmp-bad li i { color: var(--red); }
.cmp-good li i { color: var(--lojy-green-dark); }
.cmp-good li b { color: var(--lojy-dark); font-weight: 700; }
.cmp-total {
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  font-family: var(--f-serif);
}
.cmp-total b {
  display: block;
  font-size: 30px;
  color: var(--lojy-dark);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  font-weight: 800;
}
.cmp-total span {
  display: block;
  font-size: 12px;
  color: var(--txt-mid);
  font-family: var(--f-body);
}
.cmp-bad-total { background: #fef2f2; }
.cmp-good-total {
  background: linear-gradient(135deg, var(--lojy-green), var(--lojy-green-dark));
  color: #fff;
}
.cmp-good-total b, .cmp-good-total span { color: #fff; }

/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--lojy-dark) 0%, var(--lojy-dark2) 60%, var(--lojy-green) 130%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fc-glow-1, .fc-glow-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.fc-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(159,232,112,.16), transparent 60%);
  top: -220px; right: -120px;
}
.fc-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43,186,74,.14), transparent 60%);
  bottom: -220px; left: -120px;
}
.fc-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.fc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(159,232,112,.16);
  color: var(--lojy-green-lt);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  border: 1px solid rgba(159,232,112,.3);
}
.final-cta h2 {
  font-family: var(--f-serif);
  font-size: clamp(32px, 4.8vw, 52px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--lojy-green-lt);
}
.final-cta p {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 34px;
}
.fc-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.fc-guarantees {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.fc-guarantees span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fc-guarantees i { color: var(--lojy-green-lt); }

/* ================================================================
   FOOTER
   ================================================================ */
.lojy-footer {
  background: var(--lojy-dark);
  color: rgba(255,255,255,.75);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--f-serif);
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.footer-brand .footer-logo::after {
  content: "";
  width: 10px; height: 10px;
  background: var(--lojy-green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--lojy-green);
  align-self: flex-end;
  margin-bottom: 4px;
  margin-left: 2px;
}
.footer-tag {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 300px;
}
.footer-addr {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  line-height: 1.95;
}
.footer-addr i { width: 16px; color: var(--lojy-green-lt); margin-right: 6px; }
.footer-col h5 {
  color: #fff;
  font-size: 12.5px;
  font-family: var(--f-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  padding: 6px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--lojy-green-lt); }
.footer-bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.5);
  font-size: 12px;
}

/* WhatsApp float — sem piscar, glow constante suave */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
  z-index: 90;
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 12px 26px rgba(37,211,102,.45);
}

/* ================================================================
   RESPONSIVIDADE
   ================================================================ */
@media (max-width: 1100px) {
  .ma-grid { grid-template-columns: repeat(4, 1fr); }
  .mg-grid, .ia-features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-orb-canvas { width: 220px; height: 220px; right: -40px; top: -40px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .hero-inner, .fs-split { grid-template-columns: 1fr; gap: 40px; }
  .fs-split.fs-reverse .fs-text { order: 1; }
  .fs-split.fs-reverse .fs-visual { order: 2; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ma-grid { grid-template-columns: repeat(3, 1fr); }
  .ts-grid { grid-template-columns: 1fr; }
  .cmp-grid { grid-template-columns: 1fr; }
  .fs-mini-grid { grid-template-columns: 1fr; }
  .hero-orb-canvas { display: none; }
  .mk-float-1 { left: 0; }
  .mk-float-2 { right: 0; }
}
@media (max-width: 600px) {
  .hero { padding: 40px 20px 60px; }
  .hero-badges { gap: 10px; }
  .ma-grid { grid-template-columns: repeat(2, 1fr); }
  .mg-grid, .ia-features-grid, .ia-gallery { grid-template-columns: 1fr; }
  .footer-inner, .footer-bottom { grid-template-columns: 1fr; flex-direction: column; text-align: center; gap: 20px; }
  .fc-actions { flex-direction: column; align-items: stretch; }
  .fc-actions .btn { width: 100%; }
  .wa-float { width: 54px; height: 54px; font-size: 26px; }
  .mk-float { display: none; }
}

/* Reveal — sem flicker */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease-out, transform .7s ease-out; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-orb-canvas { display: none; }
}

/* ================================================================
   HERO FINEPRINT (letras pequenas de implantação)
   ================================================================ */
.hero-fineprint {
  font-size: 11px;
  color: var(--txt-gray);
  font-style: italic;
  margin-top: 16px;
  max-width: 500px;
}
.fc-fineprint {
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  font-style: italic;
  margin-top: 22px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ================================================================
   MARKETPLACES · Carrossel de integrações
   ================================================================ */
.marketplaces-section {
  padding: 90px 24px;
  background: var(--lojy-cream-lt);
  position: relative;
  overflow: hidden;
}
.marketplaces-section::before {
  content: "";
  position: absolute;
  top: 20%; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(43,186,74,.10), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.mkt-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.mkt-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}
.mkt-header .ma-eyebrow i { margin-right: 6px; }

.mkt-carousel-wrap {
  position: relative;
  margin: 0 0 48px;
  padding: 8px 0;
}
.mkt-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding: 12px 4px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.mkt-carousel::-webkit-scrollbar { display: none; }
.mkt-carousel.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.mkt-carousel.dragging .mkt-brand {
  pointer-events: none;
  user-select: none;
}
.mkt-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 20px;
}
/* Botoes de navegacao */
.mkt-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--lojy-dark);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  transition: background .2s, transform .2s, opacity .2s;
  z-index: 5;
}
.mkt-nav-btn:hover {
  background: var(--lojy-green);
  color: #fff;
  border-color: var(--lojy-green);
  transform: translateY(-50%) scale(1.06);
}
.mkt-nav-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: translateY(-50%);
}
.mkt-nav-prev { left: -4px; }
.mkt-nav-next { right: -4px; }

.mkt-brand {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  min-width: 200px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh);
  transition: transform .3s, border-color .3s, box-shadow .3s;
  flex-shrink: 0;
}
.mkt-brand:hover {
  transform: translateY(-4px);
  border-color: var(--lojy-green);
  box-shadow: var(--sh-md);
}
.mkt-logo {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mkt-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.mkt-logo-fallback {
  font-size: 42px;
}
.mkt-name {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--lojy-dark);
  text-align: center;
  letter-spacing: -.01em;
}
.mkt-check {
  font-size: 11px;
  color: var(--lojy-green-dark);
  font-weight: 600;
  background: var(--lojy-green-tint2);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mkt-check i { font-size: 10px; }

.mkt-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.mkt-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--lojy-green);
  border-radius: var(--r-md);
  padding: 22px 20px;
}
.mkt-feature > i {
  color: var(--lojy-green-dark);
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}
.mkt-feature h4 {
  font-family: var(--f-serif);
  font-size: 15px;
  color: var(--lojy-dark);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.mkt-feature p {
  font-size: 12.5px;
  color: var(--txt-mid);
  line-height: 1.55;
}
.mkt-feature p b { color: var(--lojy-dark); font-weight: 700; }
.mkt-cta { text-align: center; }

/* ================================================================
   WMS AVANÇADO · Modo binóculo + ondas coloridas (SEM LOOP)
   ================================================================ */
.wms-advanced {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--lojy-dark) 0%, var(--lojy-dark2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wms-bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
/* Anéis estáticos com pulso sutil só na entrada */
.wms-wave {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(159,232,112,.12);
  opacity: .5;
}
.wms-wave-1 { width: 500px; height: 500px; transform: translate(-50%, -50%); }
.wms-wave-2 { width: 750px; height: 750px; transform: translate(-50%, -50%); border-color: rgba(43,186,74,.10); }
.wms-wave-3 { width: 1000px; height: 1000px; transform: translate(-50%, -50%); border-color: rgba(34,211,238,.08); }
.wms-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.wms-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}
.wms-header h2 {
  font-family: var(--f-serif);
  font-size: clamp(30px, 4.2vw, 44px);
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  margin-top: 22px;
  font-weight: 700;
}
.wms-header h2 em {
  font-style: italic;
  color: var(--lojy-green-lt);
  position: relative;
  display: inline-block;
}
.wms-header h2 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.14em;
  height: 0.28em;
  background: rgba(159,232,112,.22);
  z-index: -1;
  border-radius: 3px;
}
.wms-header p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}
.wms-header p b { color: #fff; font-weight: 700; }

.wms-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Radar estático (sem loop) */
.wms-visual-block { position: relative; }
.wms-radar {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(159,232,112,.06) 100%);
  border: 1px solid rgba(159,232,112,.14);
  border-radius: var(--r-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
}
.wms-radar-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(43,186,74,.08) 0%, transparent 60%);
  border: 1px solid rgba(159,232,112,.24);
  overflow: hidden;
  margin-bottom: 22px;
}
.wms-radar-inner::before,
.wms-radar-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(159,232,112,.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.wms-radar-inner::before { width: 66%; height: 66%; }
.wms-radar-inner::after { width: 33%; height: 33%; }
/* Scan estático - só um raio de luz sutil apontando */
.wms-scan {
  position: absolute;
  top: 50%; left: 50%;
  width: 50%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(159,232,112,.35), transparent);
  transform-origin: left center;
  transform: rotate(-30deg);
  filter: blur(1px);
}
/* Blips estáticos com glow */
.wms-blip {
  position: absolute;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.wms-blip-1 { top: 22%; left: 68%; background: var(--lojy-green); box-shadow: 0 0 20px rgba(43,186,74,.6), 0 4px 12px rgba(0,0,0,.3); }
.wms-blip-2 { top: 58%; left: 78%; background: #22d3ee; box-shadow: 0 0 20px rgba(34,211,238,.5), 0 4px 12px rgba(0,0,0,.3); }
.wms-blip-3 { top: 78%; left: 42%; background: var(--amber); box-shadow: 0 0 20px rgba(217,119,6,.5), 0 4px 12px rgba(0,0,0,.3); }
.wms-blip-4 { top: 34%; left: 18%; background: var(--purple); box-shadow: 0 0 20px rgba(124,58,237,.5), 0 4px 12px rgba(0,0,0,.3); }
.wms-blip-5 { top: 68%; left: 22%; background: var(--lojy-green-lt); color: var(--lojy-dark); box-shadow: 0 0 20px rgba(159,232,112,.5), 0 4px 12px rgba(0,0,0,.3); }
.wms-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lojy-green), var(--lojy-green-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 0 40px rgba(43,186,74,.55);
  z-index: 2;
}
.wms-center i { margin-bottom: 2px; }
.wms-center span {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wms-waves-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.wms-wave-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255,255,255,.75);
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
}
.wm-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wm-dot-green { background: var(--lojy-green); box-shadow: 0 0 8px var(--lojy-green); }
.wm-dot-cyan { background: #22d3ee; box-shadow: 0 0 8px #22d3ee; }
.wm-dot-amber { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.wm-dot-purple { background: var(--purple); box-shadow: 0 0 8px var(--purple); }

.wms-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wms-feat {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(159,232,112,.10);
  border-radius: var(--r-md);
  transition: background .3s, border-color .3s, transform .3s;
}
.wms-feat:hover {
  background: rgba(159,232,112,.06);
  border-color: rgba(159,232,112,.28);
  transform: translateX(4px);
}
.wms-feat-ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lojy-green), var(--lojy-green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 14px rgba(43,186,74,.25);
}
.wms-feat h4 {
  font-family: var(--f-serif);
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.wms-feat p {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.wms-feat p b { color: #fff; font-weight: 700; }
.wms-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* ================================================================
   FINANCEIRO · Calendário + cards
   ================================================================ */
.finance-section {
  padding: 100px 24px;
  background: var(--lojy-cream-lt);
  position: relative;
  overflow: hidden;
}
.finance-section::before {
  content: "";
  position: absolute;
  top: 20%; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(3,105,161,.08), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.fin-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.fin-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}
.fin-header h2 {
  font-family: var(--f-serif);
  font-size: clamp(30px, 4.2vw, 44px);
  color: var(--lojy-dark);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-top: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}
.fin-header h2 em {
  font-style: italic;
  color: var(--blue, #0369a1);
  position: relative;
  display: inline-block;
}
.fin-header h2 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.14em;
  height: 0.28em;
  background: rgba(3,105,161,.14);
  z-index: -1;
  border-radius: 3px;
}
.fin-header p {
  color: var(--txt-mid);
  font-size: 16px;
  line-height: 1.7;
}
.fin-header p b { color: var(--lojy-dark); }

.fin-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  margin-bottom: 44px;
}
.fin-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.fin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(43,186,74,.35);
}
.fin-card-lg { padding: 30px 28px; }
.fin-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}
.fin-icon-blue { background: linear-gradient(135deg, var(--blue, #0369a1), #0284c7); }
.fin-icon-green { background: linear-gradient(135deg, var(--lojy-green), var(--lojy-green-dark)); }
.fin-icon-purple { background: linear-gradient(135deg, var(--purple), #9333ea); }
.fin-icon-amber { background: linear-gradient(135deg, var(--amber), #b45309); }
.fin-icon-cyan { background: linear-gradient(135deg, #22d3ee, var(--blue, #0369a1)); }
.fin-icon-red { background: linear-gradient(135deg, var(--red), #b91c1c); }

.fin-card h3 {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--lojy-dark);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.fin-card p {
  font-size: 13.5px;
  color: var(--txt-mid);
  line-height: 1.6;
  margin: 0;
}
.fin-card p b { color: var(--lojy-dark); font-weight: 700; }

.fin-side-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.fin-side-cards .fin-card { padding: 20px 18px; }
.fin-side-cards .fin-card h3 { font-size: 15px; margin-bottom: 6px; }
.fin-side-cards .fin-card p { font-size: 12.5px; line-height: 1.55; }
.fin-side-cards .fin-icon { width: 40px; height: 40px; font-size: 17px; margin-bottom: 12px; }

/* Mini calendário */
.fin-mini-calendar {
  margin-top: 22px;
  background: linear-gradient(180deg, var(--lojy-cream) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
}
.fmc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-serif);
  font-weight: 700;
  color: var(--lojy-dark);
  margin-bottom: 14px;
  font-size: 15px;
}
.fmc-nav { display: flex; gap: 12px; color: var(--txt-gray); font-size: 11px; }
.fmc-nav i { cursor: pointer; transition: color .2s; }
.fmc-nav i:hover { color: var(--lojy-green-dark); }
.fmc-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.fmc-weekdays span {
  text-align: center;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--txt-gray);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.fmc-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.fmc-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--txt-mid);
  border-radius: 6px;
  position: relative;
  transition: background .2s;
  padding-top: 6px;
}
.fmc-day:not(.fmc-out):hover { background: var(--lojy-green-tint2); cursor: default; }
.fmc-out { color: var(--txt-gray); opacity: .4; }
.fmc-today {
  background: var(--lojy-dark);
  color: #fff;
  font-weight: 700;
}
.fmc-marked i {
  position: absolute;
  bottom: 2px;
  font-size: 5px;
  color: var(--lojy-green);
  display: block;
  margin: 0;
}
.fmc-marked[data-tag="urgente"] i { color: var(--red); }
.fmc-legend {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 10.5px;
  color: var(--txt-mid);
}
.fmc-legend span { display: inline-flex; align-items: center; gap: 5px; }
.fmc-legend i { font-size: 7px; }
.fin-cta { text-align: center; }

/* ================================================================
   RESPONSIVIDADE das novas seções
   ================================================================ */
@media (max-width: 1100px) {
  .mkt-features { grid-template-columns: repeat(2, 1fr); }
  .fin-grid { grid-template-columns: 1fr; }
  .wms-split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 700px) {
  .mkt-features { grid-template-columns: 1fr; }
  .fin-side-cards { grid-template-columns: 1fr; }
  .mkt-brand { min-width: 160px; padding: 20px 22px; }
  .wms-waves-legend { grid-template-columns: 1fr; }
}

/* ================================================================
   SEÇÃO 3D · Bipagem + IA de foto (dual canvas)
   ================================================================ */
.dual-3d-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--lojy-cream-lt) 0%, var(--lojy-cream) 100%);
  position: relative;
  overflow: hidden;
}
.dual-3d-section::before {
  content: "";
  position: absolute;
  right: -120px; top: 10%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(43,186,74,.10), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.dual-3d-section::after {
  content: "";
  position: absolute;
  left: -120px; bottom: 10%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(124,58,237,.10), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.d3d-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.d3d-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}
.d3d-header h2 {
  font-family: var(--f-serif);
  font-size: clamp(30px, 4.2vw, 46px);
  color: var(--lojy-dark);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 18px;
  font-weight: 700;
}
.d3d-header h2 em {
  font-style: italic;
  color: var(--lojy-green-dark);
  position: relative;
  display: inline-block;
}
.d3d-header h2 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.14em;
  height: 0.28em;
  background: rgba(159,232,112,.45);
  z-index: -1;
  border-radius: 3px;
}
.d3d-header p {
  color: var(--txt-mid);
  font-size: 16px;
  line-height: 1.7;
}
.d3d-header p b { color: var(--lojy-dark); font-weight: 700; }

.d3d-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.d3d-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform .35s, box-shadow .35s;
  display: flex;
  flex-direction: column;
}
.d3d-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.d3d-canvas-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--lojy-dark) 0%, var(--lojy-dark2) 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.d3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.d3d-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(159,232,112,.35);
  font-size: 80px;
  z-index: 1;
}
.d3d-info {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.d3d-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: fit-content;
}
.d3d-tag-cyan { background: rgba(34,211,238,.14); color: #0891b2; border: 1px solid rgba(34,211,238,.28); }
.d3d-tag-purple { background: rgba(124,58,237,.12); color: var(--purple); border: 1px solid rgba(124,58,237,.24); }
.d3d-info h3 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--lojy-dark);
  letter-spacing: -.015em;
  line-height: 1.2;
}
.d3d-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.d3d-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--txt-mid);
  line-height: 1.55;
}
.d3d-info li i {
  color: var(--lojy-green-dark);
  background: var(--lojy-green-tint2);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 2px;
}
.d3d-stat {
  margin-top: 8px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--lojy-green-tint) 0%, #fff 100%);
  border-left: 4px solid var(--lojy-green);
  border-radius: 10px;
}
.d3d-stat-n {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--lojy-dark);
  letter-spacing: -.02em;
  line-height: 1;
}
.d3d-stat-l {
  font-size: 12px;
  color: var(--txt-mid);
  margin-top: 4px;
}
.d3d-cta { text-align: center; }

@media (max-width: 900px) {
  .d3d-grid { grid-template-columns: 1fr; }
}
