/* ========================================================================
   BPO Financeiro · SmartOS — Landing Pages
   Editorial × Comercial. Navy + cyan accent (brand) + amber CTAs (LP).
   ======================================================================== */

:root {
  /* —— Colors (brand) —— */
  --navy: #002145;
  --navy-deep: #001530;
  --navy-frame: #0a1f3d;
  --navy-soft: #0d2649;
  --blue-deep: #005DA4;
  --blue-principal: #2F529E;
  --blue-mid: #1e3a72;
  --blue-light: #93B3D8;
  --cyan: #00A3E0;
  --cyan-bright: #2eb6ec;
  --cyan-soft: rgba(0, 163, 224, 0.14);
  --cyan-line: rgba(0, 163, 224, 0.35);

  /* —— Commercial accents (LP only) —— */
  --amber: #F59E0B;
  --amber-bright: #fbb849;
  --amber-soft: rgba(245, 158, 11, 0.16);
  --amber-glow: rgba(245, 158, 11, 0.35);
  --wpp: #25D366;
  --wpp-h: #1ebe5a;

  /* —— Status (dashboards only) —— */
  --green: #10B981;
  --green-soft: rgba(16, 185, 129, 0.18);
  --red: #EF4444;
  --red-soft: rgba(239, 68, 68, 0.18);
  --warn: #F59E0B;
  --warn-soft: rgba(245, 158, 11, 0.18);

  /* —— Neutrals —— */
  --white: #ffffff;
  --gray-50: #F6F8FB;
  --gray-100: #EEF2F7;
  --gray-150: #E5EBF2;
  --gray-200: #D9E0E8;
  --gray-300: #BCC6D2;
  --gray-500: #6B7785;
  --gray-700: #2F3947;
  --gray-900: #0F172A;

  /* —— Type —— */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* —— Layout —— */
  --container: 1180px;
  --pad: 60px;
  --pad-mobile: 22px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-pill: 100px;

  /* —— Motion —— */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* —— Reset —— */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--cyan); color: var(--navy); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
@media (max-width: 900px) {
  .container { padding: 0 var(--pad-mobile); }
}

/* ========================================================================
   SIGNATURE MOTIF — mono kicker with cyan hairline (the brand mark)
   ======================================================================== */
.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.lp-kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--cyan);
  flex: 0 0 22px;
}
.lp-kicker--light { color: var(--cyan); }
.lp-kicker--dark { color: var(--blue-deep); }
.lp-kicker--dark::before { background: var(--blue-deep); }

/* ========================================================================
   NAV — fixed top, blur on scroll
   ======================================================================== */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 21, 48, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(147, 179, 216, 0.08);
  padding: 18px 0;
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* ========================================================================
   LIVE WORDMARK — Smart + OS (HTML/CSS, no raster)
   Matches the production nav per brand spec.
   ======================================================================== */
.lp-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  color: var(--white);
  white-space: nowrap;
}
.lp-wordmark > span { color: var(--blue-deep); }
.lp-wordmark.on-light { color: var(--navy); }
.lp-wordmark.on-light > span { color: var(--blue-deep); }
.lp-wordmark--nav { font-size: 24px; }
.lp-wordmark--footer { font-size: 19px; }
.lp-wordmark--obrigado { font-size: 28px; }
.lp-nav-logo { display: flex; align-items: center; }
.lp-nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lp-nav-link {
  color: var(--blue-light);
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  transition: background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.lp-nav-link:hover {
  color: var(--white);
  background: rgba(147, 179, 216, 0.08);
}
.lp-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.lp-cta-secondary:hover {
  background: var(--amber-bright);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--amber-glow);
}
@media (max-width: 720px) {
  .lp-nav-link:not(.lp-cta-secondary) { display: none; }
}

/* ========================================================================
   HERO — navy, big editorial type, live dashboard right
   ======================================================================== */
.lp-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 88px 0 96px;
  isolation: isolate;
}
/* soft cyan radial glow (the only allowed decoration) */
.lp-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -240px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 163, 224, 0.18) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
/* subtle grid */
.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(147, 179, 216, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 179, 216, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: -1;
  mask-image: radial-gradient(ellipse 90% 70% at 30% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 50%, #000 30%, transparent 80%);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.lp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.lp-hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.lp-hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--blue-light);
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 520px;
}

.lp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 15.5px;
  padding: 17px 28px;
  border-radius: var(--radius);
  letter-spacing: -0.005em;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}
.lp-cta-primary:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.38);
}
.lp-cta-primary .arrow {
  display: inline-block;
  transition: transform .2s var(--ease);
}
.lp-cta-primary:hover .arrow { transform: translateX(4px); }

/* US references inline strip */
.lp-hero-refs {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.lp-hero-refs-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(147, 179, 216, 0.7);
}
.lp-hero-refs-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp-hero-refs-list span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-light);
  opacity: 0.85;
}
.lp-hero-refs-list .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--blue-light); opacity: 0.4;
}

@media (max-width: 900px) {
  .lp-hero { padding: 64px 0 72px; }
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========================================================================
   HERO DASHBOARD — polished, live
   ======================================================================== */
.lp-dash {
  background: var(--navy-frame);
  border: 1px solid rgba(147, 179, 216, 0.14);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}
.lp-dash-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(147, 179, 216, 0.08);
}
.lp-dash-traffic {
  display: flex;
  gap: 6px;
}
.lp-dash-traffic span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.lp-dash-traffic .r { background: #ff5f57; }
.lp-dash-traffic .y { background: #febc2e; }
.lp-dash-traffic .g { background: #28c840; }
.lp-dash-bar-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--blue-light);
  opacity: 0.7;
  margin-left: auto;
}
.lp-dash-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}
.lp-dash-live::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--cyan); }
  50% { opacity: 0.4; box-shadow: 0 0 0 6px transparent; }
}

.lp-dash-body { padding: 22px; }
.lp-dash-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.lp-dash-head-l { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.lp-dash-title {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(147, 179, 216, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-dash-subtitle {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.lp-dash-total {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex: 0 0 auto;
}

.lp-dash-rows { display: flex; flex-direction: column; }
.lp-dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(147, 179, 216, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-variant-numeric: tabular-nums;
}
.lp-dash-row:last-of-type { border-bottom: none; }
.lp-dash-row .label { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.lp-dash-row .label small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--blue-light);
  opacity: 0.6;
}
.lp-dash-row .label .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-dash-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.lp-dash-status.paid { background: var(--green-soft); color: #6ee7b7; }
.lp-dash-status.paid::before { content: "●"; color: var(--green); font-size: 8px; }
.lp-dash-status.scheduled { background: rgba(0, 163, 224, 0.18); color: #7dd3fc; }
.lp-dash-status.scheduled::before { content: "●"; color: var(--cyan); font-size: 8px; }
.lp-dash-status.due { background: var(--warn-soft); color: #fcd34d; }
.lp-dash-status.due::before { content: "●"; color: var(--warn); font-size: 8px; }

.lp-dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 64px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(147, 179, 216, 0.08);
}
.lp-dash-chart > div {
  flex: 1;
  background: linear-gradient(to top, rgba(0, 163, 224, 0.4), var(--cyan));
  border-radius: 2px 2px 0 0;
  transition: height .6s var(--ease);
  min-height: 6px;
}

/* floating activity card (off-corner) */
.lp-dash-float {
  position: absolute;
  left: -20px;
  bottom: 28px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gray-150);
  animation: float-in .8s var(--ease) backwards;
  animation-delay: 1.2s;
}
.lp-dash-float .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cyan-soft);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  flex: 0 0 28px;
}
.lp-dash-float .text strong { display: block; font-weight: 600; color: var(--navy); }
.lp-dash-float .text small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-500);
}
@keyframes float-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .lp-dash-float { left: 0; bottom: -16px; }
}

/* ========================================================================
   NUMBERS BAND — editorial strip below hero
   ======================================================================== */
.lp-band {
  background: var(--navy-deep);
  color: var(--white);
  padding: 28px 0;
  border-top: 1px solid rgba(147, 179, 216, 0.08);
  border-bottom: 1px solid rgba(147, 179, 216, 0.08);
}
.lp-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}
.lp-band-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 18px;
  border-left: 1px solid rgba(147, 179, 216, 0.15);
}
.lp-band-item:first-child { border-left: none; padding-left: 0; }
.lp-band-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.lp-band-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  opacity: 0.7;
}
@media (max-width: 720px) {
  .lp-band-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lp-band-item { padding-left: 0; border-left: none; }
}

/* ========================================================================
   SECTIONS — generic
   ======================================================================== */
.lp-section { padding: 96px 0; }
.lp-section.alt { background: var(--gray-50); }
.lp-section.dark { background: var(--navy); color: var(--white); }

.lp-section-head {
  text-align: center;
  margin-bottom: 56px;
}
.lp-section-head .lp-kicker { margin-bottom: 18px; }
.lp-section-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--navy);
  max-width: 780px;
  margin: 0 auto 16px;
  text-wrap: balance;
}
.lp-section-h2 em { font-style: normal; color: var(--cyan); }
.lp-section.dark .lp-section-h2 { color: var(--white); }
.lp-section-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 660px;
  margin: 0 auto;
}
.lp-section.dark .lp-section-sub { color: var(--blue-light); }

@media (max-width: 720px) {
  .lp-section { padding: 64px 0; }
  .lp-section-head { margin-bottom: 36px; }
}

/* ========================================================================
   US VALIDATION — refs cards (light section)
   ======================================================================== */
.lp-refs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.lp-ref {
  padding: 30px;
  border-right: 1px solid var(--gray-200);
}
.lp-ref:last-child { border-right: none; }
.lp-ref-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.lp-ref-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-deep);
  margin-bottom: 14px;
}
.lp-ref-desc {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}
.lp-refs-disclaimer {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 22px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .lp-refs { grid-template-columns: 1fr; }
  .lp-ref { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .lp-ref:last-child { border-bottom: none; }
}

/* ========================================================================
   ESCOPO — numbered cards
   ======================================================================== */
.lp-escopo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lp-escopo-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background .2s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-escopo-card:hover { background: var(--gray-50); }
.lp-escopo-card .lp-escopo-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cyan);
}
.lp-escopo-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.lp-escopo-card p {
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.6;
}
.lp-escopo-disclaimer {
  margin-top: 22px;
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
  font-style: italic;
}
@media (max-width: 900px) {
  .lp-escopo { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lp-escopo { grid-template-columns: 1fr; }
}

/* ========================================================================
   COMO FUNCIONA — 3 lanes on dark
   ======================================================================== */
.lp-section.dark .lp-como {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-como-col {
  background: var(--navy-frame);
  border: 1px solid rgba(147, 179, 216, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.lp-como-col:hover {
  border-color: var(--cyan-line);
  transform: translateY(-2px);
}
.lp-como-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 14px;
}
.lp-como-col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.lp-como-col p {
  font-size: 14.5px;
  color: var(--blue-light);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .lp-section.dark .lp-como { grid-template-columns: 1fr; gap: 16px; }
}

/* ========================================================================
   AGENTES EM AÇÃO — terminal-style timeline (NEW)
   ======================================================================== */
.lp-acao {
  background: var(--navy-deep);
  border: 1px solid rgba(147, 179, 216, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.lp-acao-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(147, 179, 216, 0.08);
}
.lp-acao-bar-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--blue-light);
  opacity: 0.7;
}
.lp-acao-body {
  padding: 28px 30px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}
.lp-acao-line {
  display: flex;
  gap: 14px;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.lp-acao-line.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .lp-acao-line { opacity: 1; transform: none; transition: none; }
}
.lp-acao-time {
  color: var(--cyan);
  flex: 0 0 64px;
  font-weight: 500;
}
.lp-acao-agent {
  color: var(--amber);
  flex: 0 0 130px;
  font-weight: 500;
}
.lp-acao-action {
  flex: 1;
  color: rgba(255, 255, 255, 0.88);
}
.lp-acao-action .ok { color: var(--green); }
.lp-acao-action .warn { color: var(--amber); }
.lp-acao-action .num { color: var(--cyan); }
.lp-acao-action .muted { color: var(--blue-light); opacity: 0.6; }
.lp-acao-divider {
  border-top: 1px dashed rgba(147, 179, 216, 0.18);
  margin: 12px 0;
}
.lp-acao-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 30px;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(147, 179, 216, 0.08);
}
.lp-acao-summary div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-acao-summary .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  opacity: 0.7;
}
.lp-acao-summary .value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.lp-acao-summary .value > em + span,
.lp-acao-summary .value small {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-light);
  font-family: var(--font-body);
}
.lp-acao-summary .value em { font-style: normal; color: var(--cyan); }

@media (max-width: 720px) {
  .lp-acao-body { padding: 22px 18px; font-size: 12px; }
  .lp-acao-line { flex-wrap: wrap; }
  .lp-acao-time, .lp-acao-agent { flex: 0 0 auto; }
  .lp-acao-action { flex: 1 1 100%; padding-left: 8px; }
  .lp-acao-summary { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
}

/* ========================================================================
   COMPARATIVO — table
   ======================================================================== */
.lp-comp-wrap {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  background: var(--white);
}
.lp-comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.lp-comp-table th,
.lp-comp-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gray-150);
  border-right: 1px solid var(--gray-150);
  vertical-align: top;
}
.lp-comp-table th:last-child,
.lp-comp-table td:last-child { border-right: none; }
.lp-comp-table thead th {
  background: var(--gray-50);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-700);
  font-size: 13px;
  letter-spacing: -0.005em;
}
.lp-comp-table thead th.lp-comp-smartos {
  background: var(--navy);
  color: var(--white);
  position: relative;
  padding-top: 30px;
}
.lp-comp-table thead th.lp-comp-smartos::before {
  content: "RECOMENDADO";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1.2;
}
.lp-comp-table tbody td strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}
.lp-comp-table td.lp-comp-smartos-cell {
  background: rgba(245, 158, 11, 0.08);
  font-weight: 600;
  color: var(--navy);
}
.lp-comp-table tr:last-child td { border-bottom: none; }
.lp-comp-table .check {
  display: inline-flex;
  width: 16px; height: 16px;
  margin-right: 6px;
  vertical-align: -3px;
}
.lp-comp-table .check.yes { color: var(--green); }
.lp-comp-table .check.no { color: var(--gray-300); }
@media (max-width: 900px) {
  .lp-comp-wrap { overflow-x: auto; border-radius: var(--radius); }
  .lp-comp-table { min-width: 720px; }
}

/* ========================================================================
   CASE — editorial pull
   ======================================================================== */
.lp-case {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  position: relative;
}
.lp-case::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 3px;
  height: 60px;
  background: var(--cyan);
}
.lp-case .lp-kicker { margin-bottom: 18px; }
.lp-case h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.lp-case p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 14px;
}
.lp-case p:last-of-type { margin-bottom: 0; }
.lp-case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-150);
}
.lp-case-stat .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.lp-case-stat .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
@media (max-width: 720px) {
  .lp-case { padding: 32px 24px; }
  .lp-case-stats { grid-template-columns: 1fr; gap: 14px; }
}

/* ========================================================================
   TRUST — founder block on dark
   ======================================================================== */
.lp-trust-block {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.lp-trust-block::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 163, 224, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.lp-trust-block .lp-kicker { color: var(--cyan); }
.lp-trust-block h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 720px;
  letter-spacing: -0.018em;
}
.lp-trust-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--blue-light);
  margin-bottom: 16px;
  max-width: 720px;
}
.lp-trust-text strong { color: var(--white); font-weight: 600; }
.lp-trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.lp-trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(147, 179, 216, 0.12);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.lp-trust-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
  font-weight: 600;
}
.lp-trust-card-text {
  font-size: 14.5px;
  color: var(--white);
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 720px) {
  .lp-trust-block { padding: 36px 24px; }
  .lp-trust-cards { grid-template-columns: 1fr; }
}

/* ========================================================================
   FAQ
   ======================================================================== */
.lp-faq {
  max-width: 780px;
  margin: 0 auto;
}
.lp-faq details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.lp-faq details:hover { border-color: var(--gray-300); }
.lp-faq details[open] { border-color: var(--cyan-line); }
.lp-faq summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  letter-spacing: -0.005em;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 400;
  color: var(--cyan);
  transition: transform .2s var(--ease);
  width: 24px;
  flex: 0 0 24px;
  text-align: center;
  line-height: 1;
}
.lp-faq details[open] summary::after { content: "−"; }
.lp-faq details > p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ========================================================================
   CTA FINAL + FORM
   ======================================================================== */
.lp-cta-final {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 112px 0;
}
.lp-cta-final::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 163, 224, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.lp-cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(147, 179, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 179, 216, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
}
.lp-cta-final .lp-section-head { position: relative; z-index: 1; }
.lp-cta-final .lp-section-h2 { color: var(--white); }
.lp-cta-final .lp-section-sub { color: var(--blue-light); }
.lp-cta-final .lp-kicker { color: var(--cyan); }

.lp-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--gray-900);
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.lp-form-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.lp-form-head::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: live-pulse 2s ease-in-out infinite;
}
.lp-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lp-form input,
.lp-form select,
.lp-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  margin-bottom: 16px;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-soft);
}
.lp-form textarea { resize: vertical; min-height: 88px; }
.lp-form button {
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  border: none;
  padding: 17px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
  margin-top: 8px;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}
.lp-form button:hover {
  background: var(--amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.38);
}
.lp-form-microcopy {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.lp-footer {
  background: var(--navy-deep);
  color: var(--blue-light);
  padding: 28px 0;
  font-size: 13px;
  border-top: 1px solid rgba(147, 179, 216, 0.06);
}
.lp-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.lp-footer .lp-wordmark { opacity: 0.9; transition: opacity .2s var(--ease); }
.lp-footer .lp-wordmark:hover { opacity: 1; }
.lp-footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.lp-footer-links a {
  color: var(--blue-light);
  transition: color .2s var(--ease);
  font-size: 13px;
}
.lp-footer-links a:hover { color: var(--white); }
.lp-footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .lp-footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ========================================================================
   FADE-UP entrance animation
   ======================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.d1 { transition-delay: .10s; }
.fade-up.d2 { transition-delay: .22s; }
.fade-up.d3 { transition-delay: .35s; }
.fade-up.d4 { transition-delay: .48s; }

/* Respect reduced motion: skip the entrance entirely */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .live-dot,
  .lp-dash-live::before,
  .lp-form-head::before,
  .obrigado-check::before {
    animation: none !important;
  }
}

/* ========================================================================
   OBRIGADO — separate minimalist page
   ======================================================================== */
.obrigado-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}
.obrigado-wrap::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 163, 224, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.obrigado-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(147, 179, 216, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 179, 216, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
}
.obrigado-card {
  position: relative;
  z-index: 1;
  max-width: 580px;
  text-align: center;
}
.obrigado-card .lp-wordmark { margin: 0 auto 32px; }
.obrigado-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cyan-soft);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid var(--cyan-line);
  position: relative;
}
.obrigado-check::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  opacity: 0.4;
  animation: obrigado-pulse 2.5s ease-in-out infinite;
}
@keyframes obrigado-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0; }
}
.obrigado-card .lp-kicker { margin-bottom: 22px; justify-content: center; display: flex; }
.obrigado-card h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.obrigado-card h1 em { font-style: normal; color: var(--cyan); }
.obrigado-card .lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--blue-light);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.obrigado-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
  text-align: left;
}
.obrigado-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(147, 179, 216, 0.12);
  border-radius: var(--radius);
  padding: 18px;
}
.obrigado-step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 8px;
  font-weight: 600;
}
.obrigado-step-text {
  font-size: 13px;
  color: var(--white);
  line-height: 1.5;
}
.obrigado-back {
  display: inline-block;
  color: var(--blue-light);
  font-size: 13px;
  text-decoration: none;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(147, 179, 216, 0.3);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.obrigado-back:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}
@media (max-width: 600px) {
  .obrigado-steps { grid-template-columns: 1fr; }
}
