/* ============================================================
   GT DASH — Landing section styles
============================================================ */

/* ---------- Light section island ---------- */
.section-light {
  --bg: #EEF0F6;
  --bg-elev: #FFFFFF;
  --surface: rgba(15, 21, 36, 0.04);
  --surface-2: rgba(15, 21, 36, 0.06);
  --border: rgba(15, 21, 36, 0.09);
  --border-strong: rgba(15, 21, 36, 0.16);
  --text: #0B0F1A;
  --text-2: #47506A;
  --text-3: #6B7388;
  --text-4: #98A0B3;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-strong: rgba(255, 255, 255, 0.90);
  --glass-border: rgba(15, 21, 36, 0.09);
  --glass-highlight: rgba(255, 255, 255, 0.98);
  background: var(--bg);
  /* Force color re-evaluation so all text inherits dark, not body's white */
  color: var(--text);
}
/* Mini preview mockups: swap near-transparent whites for a subtle tinted surface */
.section-light .mini-google,
.section-light .mini-crm-row,
.section-light .mini-auto-stat {
  background: var(--surface-2);
}
/* Mini phone stays dark (hardcoded gradient) — no change needed */
/* Ensure sec-head subtitle is readable */
.section-light .sec-head p {
  color: var(--text-2);
}
/* FAQ answer text */
.section-light .faq-a {
  color: var(--text-2);
}

/* ---------- Navbar ---------- */
.nav-wrap {
  position: fixed;
  top: 16px;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav-wrap.nav-hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 8px 8px 20px;
  border-radius: var(--r-pill);
  width: 100%;
  max-width: 880px;
  min-height: 56px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 10px 40px -10px rgba(0,0,0,0.5);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.nav-logo-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 4px;
}
.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  color: var(--text);
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
}
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-2);
  border-radius: var(--r-pill);
  transition: all 0.2s var(--ease);
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-cta {
  height: 40px;
  padding: 0 18px;
  font-size: 14px;
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    right: 0; left: 0;
    background: var(--bg);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    padding: 8px;
    z-index: 200;
    box-shadow: 0 16px 40px -8px rgba(0,0,0,0.5);
  }
  .nav-links.open a { padding: 12px 16px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav { max-width: 560px; padding: 8px 8px 8px 16px; overflow: visible; }
  .nav-wrap { top: 12px; }
}
@media (max-width: 760px) {
  .nav { max-width: 520px; }
}
@media (max-width: 600px) {
  .nav-wrap { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 180px 0 80px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-ambient-1 {
  width: 700px; height: 700px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-ambient-2 {
  width: 500px; height: 500px;
  top: 200px;
  right: -100px;
  opacity: 0.4;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  margin: 0 auto 28px;
  max-width: 900px;
}
.hero-title-grad {
  background: linear-gradient(180deg, var(--primary-2) 0%, var(--primary) 60%, color-mix(in oklab, var(--primary) 50%, #8B5CF6) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.55;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-seals {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-3);
}
.hero-seals span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-seals svg { color: var(--primary); }

/* Laptop mockup */
.hero-laptop {
  margin-top: 80px;
  perspective: 2000px;
  position: relative;
}
.laptop {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  transform: rotateX(8deg);
  transform-style: preserve-3d;
}
.laptop-glow {
  position: absolute;
  bottom: -60px;
  left: 10%; right: 10%;
  height: 200px;
  background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 60%);
  filter: blur(30px);
  z-index: -1;
}
.laptop-screen {
  background: linear-gradient(180deg, #181C28, #0A0D15);
  border-radius: 16px 16px 4px 4px;
  padding: 14px 14px 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 80px 120px -40px var(--primary-glow);
  position: relative;
}
.laptop-screen::before {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  border-radius: 4px;
  background: rgba(0,0,0,0.4);
}
.laptop-browser {
  border-radius: 10px;
  overflow: hidden;
  background: #0A0D15;
}
[data-theme="light"] .laptop-browser { background: #F6F7FA; }
.laptop-browser-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
}
.laptop-dots {
  display: flex; gap: 6px;
}
.laptop-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.laptop-dots span:nth-child(1) { background: #FF5F57; }
.laptop-dots span:nth-child(2) { background: #FEBC2E; }
.laptop-dots span:nth-child(3) { background: #28C840; }
.laptop-url {
  flex: 1;
  max-width: 280px;
  height: 26px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-3);
  margin: 0 auto;
}
.laptop-bar-right {
  display: flex; gap: 6px;
}
.laptop-bar-right span {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: var(--surface-2);
}
.laptop-browser-body {
  height: 620px;
  overflow: hidden;
}
.laptop-browser-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.laptop-base {
  height: 14px;
  background: linear-gradient(180deg, #242938 0%, #13161F 100%);
  border-radius: 0 0 18px 18px;
  box-shadow:
    0 6px 0 rgba(0,0,0,0.3);
  position: relative;
  margin: 0 -30px;
  width: calc(100% + 60px);
}
.laptop-base::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 6px;
  background: rgba(0,0,0,0.4);
  border-radius: 0 0 8px 8px;
}

/* Hero proof */
.hero-prova {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--text-3);
  font-size: 13px;
  flex-wrap: wrap;
}
.hero-prova-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--text-4);
}
.hero-prova-items {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero-prova-items .sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
}

/* ---------- Ticker ---------- */
.ticker-wrap {
  padding: 40px 0 60px;
  text-align: center;
  overflow: hidden;
}
.ticker-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-4);
  margin-bottom: 24px;
}
.ticker-outer {
  position: relative;
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 24s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-logo {
  height: 32px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s;
  flex-shrink: 0;
  margin-right: 64px;
}
.ticker-logo:hover {
  opacity: 0.7;
  filter: grayscale(0);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .ticker-logo  { height: 24px; margin-right: 40px; }
  .ticker-track { animation-duration: 18s; }
}

/* ---------- Section headers ---------- */
.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  text-wrap: balance;
}
.sec-head p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.55;
  text-wrap: pretty;
}

/* ---------- DOR section ---------- */
.dor {
  background:
    radial-gradient(ellipse at 50% 0%, var(--primary-soft) 0%, transparent 50%),
    var(--bg);
}
.dor-body {
  max-width: 760px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.65;
  text-wrap: pretty;
}
.dor-body em {
  color: var(--text);
  font-style: italic;
}
.dor-body strong {
  color: var(--text);
  font-weight: 500;
}
.dor-bullets {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dor-bullet {
  padding: 20px 24px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.5;
}
.dor-bullet .x {
  width: 28px; height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
}
.dor-bullet .x svg { width: 14px; height: 14px; }
.dor-bullet.hover-glow::after {
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 0%), rgba(239, 68, 68, 0.12), transparent 45%);
}
@media (max-width: 720px) {
  .dor-bullets { grid-template-columns: 1fr; }
}

/* ---------- SOLUÇÃO ---------- */
.solucao { position: relative; overflow: hidden; }
.solucao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.solucao-text .eyebrow { margin-bottom: 18px; }
.solucao-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.solucao-text p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.solucao-text .callout {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--primary-soft), transparent);
  border: 1px solid var(--primary-soft);
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}
.solucao-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
  justify-content: center;
}
.solucao-card {
  position: relative;
  padding: 20px 24px;
  border-radius: var(--r-lg);
  font-size: 12px;
  max-width: 300px;
  width: 100%;
  transition: transform 0.3s var(--ease);
}
.solucao-card-1 {
  align-self: flex-start;
  transform: rotate(-2deg) translateX(16px);
  z-index: 2;
}
.solucao-card-2 {
  align-self: flex-end;
  transform: rotate(2deg) translateX(-16px);
  z-index: 3;
}
.solucao-card-3 {
  align-self: center;
  transform: rotate(-1deg);
  z-index: 4;
  margin-top: -8px;
  margin-bottom: -8px;
}
.solucao-card .sc-label {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.solucao-card .sc-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}
.solucao-card .sc-delta {
  font-size: 11px;
  color: #22C55E;
  margin-top: 4px;
}
.solucao-card .sc-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  margin-top: 10px;
  overflow: hidden;
}
.solucao-card .sc-bar::after {
  content: "";
  display: block;
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: inherit;
}
@media (max-width: 820px) {
  .solucao-grid { grid-template-columns: 1fr; }
  .solucao-visual { max-width: 440px; margin: 0 auto; padding: 10px 0; }
  .solucao-card { max-width: 260px; }
}

/* ---------- FUNCIONALIDADES ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.feat-card {
  padding: 28px;
  border-radius: var(--r-lg);
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.feat-card.span-2 { grid-column: span 2; }
.feat-card .feat-mini {
  margin-bottom: 24px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  position: relative;
}
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
@media (max-width: 820px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card.span-2 { grid-column: span 1; }
}

/* Mini-previews inside feat cards */
.mini-meta {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mini-meta-card {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 10px;
  border: 1px solid var(--border);
}
.mini-meta-card .lbl {
  font-size: 9px;
  color: var(--text-3);
  margin-bottom: 2px;
}
.mini-meta-card .val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mini-meta-card .dlt {
  font-size: 9px;
  color: #22C55E;
  margin-top: 2px;
}

.mini-google {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}
.mini-google-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}
.mini-google-row:last-child { border-bottom: 0; }
.mini-google-row .kw { color: var(--text-2); }
.mini-google-row .v { color: var(--text); font-variant-numeric: tabular-nums; }

.mini-phone {
  width: 120px;
  height: 220px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0F1524, #060810);
  border: 2px solid rgba(255,255,255,0.12);
  padding: 14px 8px;
  position: relative;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
}
.mini-phone::before {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 4px;
  background: #000;
  border-radius: 3px;
}
.mini-phone-card {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 8px;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mini-phone-card .lbl { font-size: 8px; color: var(--text-3); }
.mini-phone-card .val { font-size: 14px; font-weight: 500; font-family: var(--font-display); }

.mini-crm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mini-crm-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  font-size: 11px;
  align-items: center;
}
.mini-crm-row .pill {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 9px;
  background: rgba(34,197,94,0.12);
  color: #22C55E;
}
.mini-crm-row.pending .pill { background: rgba(251, 191, 36, 0.12); color: #FBBF24; }
.mini-crm-row .v { font-family: var(--font-display); font-weight: 500; }

.mini-auto {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}
.mini-auto-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  animation: spin 3s linear infinite;
  position: relative;
}
.mini-auto-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--primary-soft);
}
.mini-auto-dots {
  display: flex;
  gap: 6px;
  font-size: 10px;
  color: var(--text-3);
  align-items: center;
}
.mini-auto-dots .api {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-body);
}
@keyframes spin { to { transform: rotate(360deg); } }

.mini-custom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}
.mini-custom-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
}
.mini-custom-swatches {
  display: flex;
  gap: 10px;
}
.mini-sw {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c);
  display: block;
  transition: transform 0.2s;
}
.mini-sw.active {
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15), 0 0 0 5px var(--c);
}
.mini-custom-bars {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}
.mini-custom-bar {
  height: 7px;
  border-radius: 99px;
}

.mini-theme {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 140px;
}
.mini-theme-panel {
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mini-theme-panel.dark {
  background: #0A0D15;
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
}
.mini-theme-panel.light {
  background: #F6F7FA;
  border: 1px solid rgba(0,0,0,0.06);
  color: #0B0F1A;
}
.mini-theme-panel .tp-head {
  font-size: 9px;
  opacity: 0.6;
}
.mini-theme-panel .tp-v {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mini-theme-panel .tp-bar {
  height: 3px;
  background: currentColor;
  opacity: 0.15;
  border-radius: 999px;
  margin-top: 4px;
  position: relative;
}
.mini-theme-panel .tp-bar::after {
  content: "";
  position: absolute; inset: 0;
  width: 60%;
  background: #3B82F6;
  border-radius: inherit;
  opacity: 5;
}

/* ---------- MÓDULOS ---------- */
.mods { padding: 120px 0; }
.mods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.mods-card {
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s var(--ease);
}
.mods-card:hover { transform: translateY(-3px); }
.mods-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.mods-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.mods-icon svg { width: 20px; height: 20px; }
.mods-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--text-3);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.mods-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}
.mods-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.mods-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 10px;
  margin: 4px 0 8px;
  perspective: 700px;
}
.mods-img {
  width: 110%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: top left;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  transition: box-shadow 0.3s var(--ease);
}
.mods-card:hover .mods-img {
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
}
@media (max-width: 1100px) { .mods-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .mods-grid { grid-template-columns: 1fr; } }

/* ---------- DIFERENCIAL ---------- */
.dif {
  position: relative;
}
.dif-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.dif h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.dif-body {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 48px;
  text-wrap: pretty;
}
.dif-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.dif-bullet {
  padding: 18px 22px;
  border-radius: var(--r-md);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
}
.dif-bullet .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
}
.dif-bullet .check svg { width: 12px; height: 12px; }
@media (max-width: 720px) {
  .dif-bullets { grid-template-columns: 1fr; }
}

/* ---------- DARK/LIGHT SHOWCASE ---------- */
.showcase {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
}
.showcase-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: var(--r-pill);
  margin: 0 auto 40px;
  justify-self: center;
}
.showcase-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.showcase-tab {
  padding: 8px 18px;
  font-size: 13px;
  color: var(--text-2);
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.showcase-tab.active {
  background: var(--glass-bg-strong);
  color: var(--text);
  border: 1px solid var(--glass-border);
}
.showcase-frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  background: var(--bg-elev);
  position: relative;
}
.showcase-frame-inner {
  aspect-ratio: 1440 / 900;
  width: 100%;
}

/* ---------- ÁREA DE MEMBROS ---------- */
.membros-frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border),
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 0 100px -40px var(--primary-glow);
}
.membros-browser {
  background: #13151C;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.membros-browser-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: #0D0F15;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.membros-browser-dots {
  display: flex; gap: 6px; flex-shrink: 0;
}
.membros-browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.membros-browser-dots span:nth-child(1) { background: #FF5F57; }
.membros-browser-dots span:nth-child(2) { background: #FEBC2E; }
.membros-browser-dots span:nth-child(3) { background: #28C840; }
.membros-browser-url {
  flex: 1;
  max-width: 300px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin: 0 auto;
}
.membros-browser-body img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- PARA QUEM É ---------- */
.paraquem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1020px;
  margin: 0 auto;
}
.paraquem-card {
  padding: 32px;
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.paraquem-card .pq-ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-soft), transparent);
  border: 1px solid var(--primary-soft);
  display: grid; place-items: center;
  color: var(--primary-2);
}
.paraquem-card .pq-ico svg { width: 26px; height: 26px; }
.paraquem-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.paraquem-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
@media (max-width: 720px) {
  .paraquem-grid { grid-template-columns: 1fr; }
}

/* ---------- DEPOIMENTOS ---------- */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.depo-card {
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1a2338, #0a0d15);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.depo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.depo-card:hover { transform: scale(1.02); }
.depo-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  display: grid; place-items: center;
  color: white;
  transition: transform 0.2s;
}
.depo-card:hover .depo-play { transform: translate(-50%, -50%) scale(1.1); }
.depo-meta {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 2;
}
.depo-meta .name {
  font-size: 14px;
  font-weight: 500;
  color: white;
}
.depo-meta .role {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 960px) { .depo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .depo-grid { grid-template-columns: 1fr; } }

/* ---------- OFERTA / PREÇO ---------- */
.oferta {
  position: relative;
  overflow: hidden;
}
.oferta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, var(--primary-soft) 0%, transparent 60%);
  pointer-events: none;
}
.price-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 44px;
  border-radius: var(--r-2xl);
  position: relative;
  text-align: center;
}
.price-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), transparent 40%, var(--primary) 100%);
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
}
.price-head {
  margin-bottom: 32px;
}
.price-head .eyebrow { margin-bottom: 16px; }
.price-head h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.price-head p {
  font-size: 15px;
  color: var(--text-2);
}
.price-stack {
  text-align: left;
  margin-bottom: 32px;
}
.price-stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
  color: var(--text);
}
.price-stack-item:last-child { border-bottom: 0; }
.price-stack-item .label {
  display: flex; gap: 10px; align-items: center;
}
.price-stack-item .check {
  color: var(--primary);
  flex-shrink: 0;
}
.price-stack-item .strike {
  text-decoration: line-through;
  color: var(--text-4);
  font-size: 12px;
  font-family: var(--font-display);
}
.price-divider { height: 1px; background: var(--border); margin: 20px 0; }
.price-main {
  text-align: center;
  margin-bottom: 24px;
}
.price-from {
  font-size: 14px;
  color: var(--text-3);
  text-decoration: line-through;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.price-now {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
}
.price-now .currency {
  font-size: 22px;
  color: var(--text-2);
  font-weight: 500;
}
.price-now .amount {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, var(--text), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-now .period {
  font-size: 14px;
  color: var(--text-3);
  margin-left: 4px;
}
.price-installment {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.price-or {
  font-size: 14px;
  color: var(--text-3);
  margin-top: 8px;
  font-family: var(--font-display);
}
.price-cta { width: 100%; }
.price-cta:hover {
  background: #16a34a !important;
  border-color: #16a34a !important;
}
@keyframes price-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
  50%       { box-shadow: 0 0 0 9px transparent; }
}
.price-cta {
  animation: price-pulse 2.2s ease-in-out infinite;
}
.price-urgency {
  display: table;
  margin: 14px auto 0;
  padding: 10px 28px;
  border-radius: 100px;
  background: rgba(61, 51, 0, 0.72);
  border: 1px solid rgba(202, 138, 4, 0.45);
  color: #eab308;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  text-align: center;
}
.price-micro {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-3);
}

/* ---------- GARANTIA ---------- */
.guar {
  padding: 80px 0;
}
.guar-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 48px;
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: center;
}
.guar-shield {
  width: 80px; height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-soft), transparent);
  border: 1px solid var(--primary-soft);
  display: grid; place-items: center;
  color: var(--primary-2);
}
.guar-shield svg { width: 40px; height: 40px; }
.guar h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.guar p { font-size: 15px; color: var(--text-2); line-height: 1.55; }
.guar-seals {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-3);
  flex-wrap: wrap;
}
.guar-seals span { display: inline-flex; align-items: center; gap: 6px; }
.guar-seals svg { color: var(--primary); }
@media (max-width: 680px) {
  .guar-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .guar-shield { margin: 0 auto; }
  .guar-seals { justify-content: center; }
}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-3);
}
.faq-item[open] summary .chev { transform: rotate(45deg); color: var(--primary); }
.faq-item[open] summary { color: var(--text); }
.faq-item .faq-a {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  animation: faq-in 0.22s var(--ease);
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-final-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 40px;
  border-radius: var(--r-2xl);
  text-align: center;
  overflow: hidden;
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, var(--primary-glow) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, color-mix(in oklab, var(--primary) 40%, #8B5CF6) 0%, transparent 50%);
  opacity: 0.6;
  z-index: -1;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-final p {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 32px;
  max-width: 520px;
  margin-inline: auto;
}
.cta-final .seals {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
}
.cta-final .seals span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- FOOTER ---------- */
.footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.footer-tag {
  margin-top: 12px;
  color: var(--text-3);
  font-size: 14px;
  max-width: 320px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}
.footer-links a {
  color: var(--text-2);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-legal {
  grid-column: 1 / -1;
  padding-top: 32px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-4);
  font-size: 12px;
}
.footer-legal p { margin-bottom: 10px; }
.footer-disclaimer { max-width: 800px; line-height: 1.6; }
@media (max-width: 680px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
}

/* ---------- TWEAKS PANEL ---------- */
.tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 300px;
  padding: 18px;
  z-index: 200;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}
.tweaks-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: -0.01em;
}
.tweaks-head button {
  width: 24px; height: 24px;
  border-radius: 6px;
  color: var(--text-2);
}
.tweaks-head button:hover { background: var(--surface); color: var(--text); }
.tweaks-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.tweaks-row label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: space-between;
}
.tweaks-seg {
  display: flex;
  padding: 3px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.tweaks-seg button {
  flex: 1;
  padding: 6px 8px;
  font-size: 12px;
  color: var(--text-2);
  border-radius: 6px;
  transition: all 0.2s;
}
.tweaks-seg button.active {
  background: var(--surface-2);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset;
}
.tweaks-swatches {
  display: flex;
  gap: 8px;
}
.tweaks-swatches button {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--sw);
  border: 2px solid transparent;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.tweaks-swatches button.active {
  border-color: var(--text);
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--sw);
}
.tweaks-panel input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

/* Hover glow effect for cards */
.hover-glow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hover-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 0%), var(--primary-soft), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.hover-glow:hover::after { opacity: 1; }
.hover-glow > * { position: relative; z-index: 1; }

/* Feat image previews */
.feat-mini-img {
  padding: 0 !important;
  width: 100%;
  min-height: 180px !important;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}
.feat-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}
.feat-mini-split {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-height: 180px !important;
  background: transparent;
  border: 0;
  overflow: visible;
  padding: 0 !important;
}
.feat-mini-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.feat-mini-phone {
  background: transparent;
  border: 0;
  min-height: 220px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.feat-mini-phone img {
  max-height: 240px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* Video demo section */
.video-demo { padding: 80px 0 100px; }
.video-frame {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), 0 0 120px -40px var(--primary-glow);
  position: relative;
  background: var(--bg-elev);
}
.video-frame-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.video-frame-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Showcase image */
.showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Depoimentos as YouTube embeds */
.depo-card {
  background: #000;
  padding: 0;
}
.depo-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
}
.depo-card::before, .depo-play, .depo-meta { display: none !important; }

/* CTA final: use primary instead of violet */
.cta-final-bg {
  background:
    radial-gradient(ellipse at 50% 0%, var(--primary-glow) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, var(--primary-soft) 0%, transparent 50%) !important;
}

/* Responsive refinements */
@media (max-width: 900px) {
  .hero { padding: 140px 0 60px; }
  .laptop { transform: rotateX(4deg); }
  .laptop-screen { padding: 10px 10px 6px; }
  .laptop-browser-body { height: 380px; }
  .laptop-url { max-width: 180px; font-size: 10px; }
  .solucao-visual { max-width: 380px; }
  .feat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feat-card.span-2 { grid-column: span 2; }
  .feat-card { min-height: 280px; padding: 22px; }
  .depo-grid { grid-template-columns: 1fr 1fr; }
  .price-card { padding: 32px 24px; }
  .price-now .amount { font-size: 56px; }
  .guar-card { padding: 32px 24px; }
  .cta-final-inner { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .hero { padding: 40px 0 32px; }
  .hero-title { font-size: clamp(28px, 9vw, 40px); }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .laptop-browser-body { height: 260px; }
  .laptop-base { margin: 0; width: 100%; }
  .hero-seals { flex-direction: column; gap: 8px; align-items: center; }
  .hero-ctas .btn { width: 100%; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card.span-2 { grid-column: span 1; }
  .depo-grid { grid-template-columns: 1fr; }
  .sec-head { margin-bottom: 48px; }
  .sec-head h2 { font-size: clamp(24px, 8vw, 34px); }
  section { padding: 56px 0; }
  .dor-bullets { gap: 10px; }
  .dor-bullet { padding: 14px 16px; font-size: 14px; }
  .price-card { padding: 28px 20px; }
  .price-stack-item { font-size: 13px; gap: 10px; }
  .price-now .amount { font-size: 48px; }
  .guar-card { gap: 16px; padding: 24px 20px; }
  .guar-shield { width: 56px; height: 56px; border-radius: 16px; }
  .guar-shield svg { width: 28px; height: 28px; }
  .guar h3 { font-size: 20px; }
  .guar-seals { gap: 10px; font-size: 11px; }
  .cta-final { padding: 80px 0; }
  .cta-final-inner { padding: 40px 20px; }
  .cta-final h2 { font-size: clamp(22px, 7vw, 30px); }
  .cta-final .seals { gap: 10px; font-size: 12px; }
  .solucao-text h2, .dif h2 { font-size: clamp(24px, 8vw, 34px); }
  .hero-prova { gap: 10px; flex-direction: column; margin-top: 56px; text-align: center; }
  .hero-prova-items { justify-content: center; }
  .cta-final .btn-lg {
    width: 100%;
    white-space: normal;
    height: auto;
    min-height: 56px;
    padding: 16px 24px;
    line-height: 1.4;
  }
  .tweaks-panel { width: calc(100vw - 32px); right: 16px; bottom: 16px; box-sizing: border-box; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { text-align: left; flex-direction: row; flex-wrap: wrap; }
  .footer-legal { font-size: 11px; }
  .paraquem-card { padding: 24px 20px; grid-template-columns: 48px 1fr; gap: 16px; }
  .paraquem-card h3 { font-size: 18px; }
  .price-head h3 { font-size: 26px; }
}

/* ---------- Typography presets ---------- */
[data-type="geist"] {
  --font-display: "Inter Tight", sans-serif;
  --font-body: "Inter", sans-serif;
}
[data-type="instrument"] {
  --font-display: "Inter Tight", serif;
  --font-body: "Inter", sans-serif;
}

/* ---------- Float CTA ---------- */
.float-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 24px));
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 8px 8px 24px;
  border-radius: var(--r-pill);
  max-width: 520px;
  width: 90vw;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.5);
}
.float-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
/* Light background: dark glass component for contrast */
.float-cta.float-cta--light-bg {
  background: rgba(6, 8, 15, 0.65) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(15, 21, 36, 0.20) !important;
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.12);
}
.float-cta.float-cta--light-bg .float-cta-text {
  color: #F5F7FB;
}
.float-cta.float-cta--light-bg .btn-primary {
  color: white;
}
/* Dark background: keep original glass style */
.float-cta.float-cta--dark-bg {
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.5);
}
.float-cta-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}
.float-cta-btn {
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .float-cta {
    padding: 14px 16px;
    border-radius: var(--r-xl);
    flex-direction: column;
    gap: 10px;
    text-align: center;
    bottom: 16px;
    max-width: calc(100vw - 32px);
    width: calc(100vw - 32px);
    left: 0;
    transform: translateX(0) translateY(calc(100% + 24px));
    right: 0;
    margin: 0 16px;
  }
  .float-cta.visible {
    transform: translateX(0) translateY(0);
  }
  .float-cta-text {
    white-space: normal;
    font-size: 14px;
  }
  .float-cta-btn {
    width: 100%;
  }
}

/* ---------- TECNOLOGIA & INTEGRAÇÕES ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.tech-card {
  padding: 32px 28px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s var(--ease);
}
.tech-card:hover { transform: translateY(-4px); }
.tech-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.section-light .tech-icon {
  background: rgba(59,130,246,0.1);
}
.tech-icon svg { width: 26px; height: 26px; }
.tech-badge {
  display: inline-flex;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  align-self: flex-start;
}
.tech-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
}
.tech-card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
@media (max-width: 900px) {
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid .tech-card:last-child { grid-column: span 2; }
}
@media (max-width: 600px) {
  .tech-grid { grid-template-columns: 1fr; }
  .tech-grid .tech-card:last-child { grid-column: span 1; }
}

/* Windsor.ai callout */
.windsor-callout {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--r-lg);
  align-items: flex-start;
  margin-top: 8px;
  border-color: rgba(245,158,11,0.2) !important;
}
.windsor-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.10);
  color: #F59E0B;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.windsor-icon svg { width: 20px; height: 20px; }
.windsor-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 8px;
}
.windsor-body p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .windsor-callout { flex-direction: column; padding: 20px; }
}
