*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #080d17;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #FFFFFF;
  overflow-x: hidden;
}

/* ── Header ── */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px max(100px, calc((100% - 1200px) / 2));
  border-bottom: 1px solid #545454;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #FFFFFF;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  background-color: #0064E0;
  color: #FFFFFF;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  box-shadow:
    0 0 18px rgba(0, 100, 224, 0.55),
    0 0 40px rgba(0, 100, 224, 0.25);
}

.btn-primary:hover {
  background-color: #0055c2;
  box-shadow:
    0 0 24px rgba(0, 100, 224, 0.75),
    0 0 56px rgba(0, 100, 224, 0.35);
}

/* ── Hero Section ── */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px max(100px, calc((100% - 1200px) / 2));
  gap: 0;
}

.hero-left {
  flex: 0 0 52%;
  max-width: 52%;
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 15px;
  color: #8C9BAF;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #0064E0;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: #8C9BAF;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background-color: #545454;
  flex-shrink: 0;
}

/* ── Diagram ── */
.hero-right {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}

.diagram {
  position: relative;
  width: 420px;
  height: 420px;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* Ring 1 — outermost, very faint */
.ring-1 {
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Ring 2 */
.ring-2 {
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* Ring 3 */
.ring-3 {
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,0.18);
}

/* Ring 4 — innermost filled circle with glow + rotation */
.ring-4 {
  width: 140px;
  height: 140px;
  border: 1px solid rgba(120,170,255,0.28);
  background: radial-gradient(circle at 50% 40%, #1a3a8a 0%, #0d1f5c 50%, #04061B 100%);
  box-shadow:
    0 0 60px rgba(0, 80, 200, 0.35),
    inset 0 0 40px rgba(0, 60, 160, 0.3);
  overflow: hidden;
  animation: globe-spin 28s linear infinite;
}

@keyframes globe-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* SVG inside ring-4 */
.globe-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stream {
  fill: none;
  stroke: rgba(80, 140, 255, 0.22);
  stroke-width: 1;
}

.meridian {
  fill: none;
  stroke: rgba(80, 140, 255, 0.12);
  stroke-width: 0.8;
}

.dot {
  fill: #4d90ff;
}

.dot-sm {
  fill: #89b8ff;
  opacity: 0.75;
}

.tag {
  position: absolute;
  background: #FFFFFF;
  color: #111827;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  animation: tag-float 3.5s ease-in-out infinite;
}

@keyframes tag-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.tag-inteligencia { animation-delay: 0s; }
.tag-automacao    { animation-delay: -1s; }
.tag-crm          { animation-delay: -2s; }
.tag-ia           { animation-delay: -0.5s; }

/* tag positions relative to 520×520 diagram */
.tag-inteligencia {
  top: 68px;
  left: 30px;
}

.tag-automacao {
  top: 155px;
  right: -10px;
}

.tag-crm {
  bottom: 155px;
  left: 12px;
}

.tag-ia {
  bottom: 68px;
  right: 24px;
}

/* ── Section 2 — Stats Bar ── */
.stats-bar {
  background-color: #080d17;
  display: flex;
  align-items: center;
  padding: 32px max(100px, calc((100% - 1200px) / 2));
  gap: 40px;
  overflow: hidden;
}

.stats-group {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-n {
  font-size: 22px;
  font-weight: 700;
  color: #0064E0;
  line-height: 1;
}

.stat-l {
  font-size: 13px;
  color: #8C9BAF;
  white-space: nowrap;
}

.stats-sep {
  width: 1px;
  height: 36px;
  background-color: #2e2e2e;
  flex-shrink: 0;
}

.logos-divider {
  width: 1px;
  height: 40px;
  background-color: #2e2e2e;
  flex-shrink: 0;
}

/* ── Marquee ── */
.marquee-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.marquee-logo:hover {
  opacity: 1;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section 4 — Você se identifica? ── */
.identifica {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px max(100px, calc((100% - 1200px) / 2));
  background-color: #FFFFFF;
}

.identifica-badge {
  display: inline-block;
  background-color: #dce8ff;
  color: #3b6fd4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.identifica-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
  max-width: 960px;
}

.identifica-sub {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 960px;
  white-space: nowrap;
}

.identifica-sub strong {
  color: #1e293b;
  font-weight: 700;
}

.identifica-btn {
  margin-top: 48px;
  padding: 18px 48px;
  font-size: 17px;
}

/* ════════════════════════════════
   RESPONSIVO — TABLET (≤ 1024px)
   ════════════════════════════════ */
@media (max-width: 1024px) {
  header {
    padding: 18px 40px;
  }

  .hero {
    padding: 50px 40px;
    gap: 32px;
  }

  .hero-left {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .hero-right {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 0;
    justify-content: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .diagram {
    width: 340px;
    height: 340px;
  }

  .ring-1 { width: 320px; height: 320px; }
  .ring-2 { width: 248px; height: 248px; }
  .ring-3 { width: 176px; height: 176px; }
  .ring-4 { width: 112px; height: 112px; }

  .stats-bar {
    padding: 28px 40px;
    gap: 28px;
  }

  .identifica {
    padding: 70px 40px;
  }

  .identifica-title {
    font-size: 34px;
  }

  .identifica-sub {
    white-space: normal;
    font-size: 15px;
  }
}

/* ════════════════════════════════
   RESPONSIVO — MOBILE (≤ 768px)
   ════════════════════════════════ */
@media (max-width: 768px) {
  header {
    padding: 16px 24px;
  }

  .btn-primary {
    padding: 11px 20px;
    font-size: 14px;
  }

  /* Hero — empilha vertical */
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px 48px;
    gap: 48px;
  }

  .hero-left,
  .hero-right {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
    justify-content: center;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -0.6px;
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
  }

  /* Diagrama centralizado e menor */
  .diagram {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .ring-1 { width: 280px; height: 280px; }
  .ring-2 { width: 216px; height: 216px; }
  .ring-3 { width: 152px; height: 152px; }
  .ring-4 { width: 96px;  height: 96px;  }

  .tag { font-size: 11px; padding: 7px 12px; }
  .tag-inteligencia { top: 30px;  left: 10px;  }
  .tag-automacao    { top: 100px; right: -8px; }
  .tag-crm          { bottom: 100px; left: 4px; }
  .tag-ia           { bottom: 30px; right: 10px; }

  /* Stats bar — empilha */
  .stats-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
  }

  .stats-group {
    flex-wrap: wrap;
    gap: 20px 28px;
  }

  .logos-divider { display: none; }
  .stats-sep { display: none; }

  .marquee-wrap { width: 100%; }

  /* Seção 4 */
  .identifica {
    padding: 60px 24px;
    text-align: left;
    align-items: flex-start;
  }

  .identifica-title {
    font-size: 26px;
    letter-spacing: -0.4px;
  }

  .identifica-sub {
    white-space: normal;
    font-size: 14px;
    max-width: 100%;
  }
}

/* ── Identifica cards ── */
.identifica-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  width: 100%;
  max-width: 960px;
}

.icard {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.icard-icon {
  width: 56px;
  height: 56px;
  background: #dce8ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icard-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.icard-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .identifica-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
}

/* ── Section 5 — Soluções Completas ── */
/* ── Section 5 — Soluções Completas ── */
.solucoes {
  background-color: #F9FAFC;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 100px max(60px, calc((100% - 1200px) / 2));
}

.solucoes-sticky {
  flex: 0 0 480px;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.solucoes-badge {
  display: inline-block;
  background-color: transparent;
  color: #0f172a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #cbd5e1;
}

.solucoes-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.18;
  letter-spacing: -0.8px;
}

.solucoes-sub {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.75;
}

.solucoes-sticky .btn-primary {
  margin-top: 8px;
  padding: 18px 48px;
  font-size: 17px;
}

/* Grid de cards */
.solucoes-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.scard {
  background: #FFFFFF;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scard-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  text-align: left;
}

.scard-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.65;
  text-align: left;
}

.scard-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 4px 0;
}

.scard-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scard-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
}

.scard-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%233b6fd4' stroke-width='2'/%3E%3Cpath d='M8 12l3 3 5-5' stroke='%233b6fd4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .solucoes {
    flex-direction: column;
    padding: 60px 40px;
  }
  .solucoes-sticky {
    position: static;
    flex: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .solucoes {
    padding: 60px 24px;
    gap: 40px;
  }
  .solucoes-title { font-size: 28px; }
  .solucoes-grid { grid-template-columns: 1fr; }
}

/* ── Section 6 — Ferramentas ── */
.ferramentas {
  background:
    radial-gradient(ellipse at 15% 60%, rgba(0, 100, 224, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(30, 80, 200, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 90%, rgba(0, 60, 180, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(100, 160, 255, 0.12) 0%, transparent 45%),
    linear-gradient(145deg, #020818 0%, #061040 25%, #0a2272 55%, #061040 80%, #020818 100%);
  padding: 90px max(60px, calc((100% - 1200px) / 2)) 100px;
  overflow: hidden;
}

/* Linha 1: ícone + botão */
.ferramentas-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.ferramentas-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Linha 2: título + descrição */
.ferramentas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 56px;
}

.ferramentas-title {
  flex: 0 0 44%;
  font-size: 40px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.ferramentas-desc {
  flex: 0 0 44%;
  font-size: 15px;
  color: #8C9BAF;
  line-height: 1.75;
  padding-top: 8px;
}

.btn-outline-light {
  align-self: flex-start;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 11px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}

/* Carousel */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 8px;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.24);
}

.carousel-clip {
  flex: 1;
  overflow: hidden;
  padding: 40px 0;
  margin: -40px 0;
}

.carousel-track {
  display: flex;
  gap: 16px;
  align-items: stretch;
  will-change: transform;
}

/* Cards */
.fcard {
  flex: 0 0 calc(33.33% - 11px);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.35s ease,
              box-shadow 0.35s ease,
              background 0.35s ease;
  opacity: 0.5;
  transform: scaleX(0.93);
}

.fcard-active {
  background: #FFFFFF;
  border-color: #FFFFFF;
  opacity: 1;
  transform: scale(1.10);
  box-shadow: none;
}

.fcard-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

.fcard-active .fcard-title {
  font-size: 18px;
}

.fcard-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.65;
  text-align: center;
}

.fcard-link {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 4px;
}

/* Mockup base */
.fcard-mockup {
  background: #0d1440;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 220px;
  flex-shrink: 0;
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #080d2e;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mock-dot.red    { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green  { background: #28c840; }

.mock-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-left: 8px;
}

/* Pipeline mockup */
.mock-pipeline {
  display: flex;
  gap: 8px;
  padding: 14px;
}

.mock-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-stage-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.mock-deal {
  font-size: 10px;
  font-weight: 500;
  padding: 7px 9px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deal-blue   { background: rgba(0,100,224,0.25); color: #7eb8ff; }
.deal-indigo { background: rgba(99,102,241,0.25); color: #a5b4fc; }
.deal-green  { background: rgba(34,197,94,0.2);  color: #86efac; }

/* Flow mockup */
.mock-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
}

.mock-flow-node {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
}

.node-trigger   { background: rgba(0,100,224,0.2);   color: #7eb8ff; }
.node-action    { background: rgba(99,102,241,0.2);  color: #a5b4fc; }
.node-condition { background: rgba(14,165,233,0.2);  color: #7dd3fc; }

.mock-flow-arrow {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  line-height: 1;
}

.mock-flow-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.mock-flow-branch {
  flex: 1;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  padding: 6px 4px;
  border-radius: 6px;
}

.branch-yes { background: rgba(34,197,94,0.2);  color: #86efac; }
.branch-no  { background: rgba(239,68,68,0.2);  color: #fca5a5; }

/* Chat mockup */
.mock-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}

.mock-chat-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.msg-ai   { flex-direction: row; }
.msg-user { flex-direction: row-reverse; }

.msg-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0064E0, #6366f1);
  font-size: 9px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.msg-bubble {
  font-size: 10.5px;
  line-height: 1.5;
  padding: 8px 11px;
  border-radius: 10px;
  max-width: 78%;
}

.bubble-ai   { background: rgba(0,100,224,0.2); color: #bdd6ff; border-bottom-left-radius: 3px; }
.bubble-user { background: rgba(99,102,241,0.25); color: #c4c9ff; border-bottom-right-radius: 3px; }

.mock-typing {
  display: flex;
  gap: 4px;
  padding: 4px 8px;
  align-items: center;
  margin-left: 34px;
}

.mock-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: typing-dot 1.2s ease-in-out infinite;
}
.mock-typing span:nth-child(2) { animation-delay: 0.2s; }
.mock-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
  30%            { transform: translateY(-4px); opacity: 1; }
}

/* Mock — qualify bars */
.mock-qualify { padding: 8px 4px; display: flex; flex-direction: column; gap: 7px; }
.mock-qualify-row { display: flex; align-items: center; gap: 6px; }
.mock-qualify-label { font-size: 9px; color: #64748b; width: 58px; flex-shrink: 0; }
.mock-qualify-bar { flex: 1; height: 4px; background: #e2e8f0; border-radius: 2px; overflow: hidden; }
.mock-qualify-fill { height: 100%; border-radius: 2px; }
.mock-qualify-val { font-size: 9px; color: #0f172a; font-weight: 600; width: 22px; text-align: right; }
.mock-qualify-score { font-size: 10px; color: #0f172a; text-align: center; padding-top: 6px; border-top: 1px solid #e2e8f0; margin-top: 2px; }

/* Mock — list items */
.mock-list { padding: 4px; display: flex; flex-direction: column; gap: 5px; }
.mock-list-item { display: flex; align-items: center; justify-content: space-between; padding: 5px 8px; border-radius: 6px; background: #f8fafc; }
.mock-list-name { font-size: 9px; color: #0f172a; font-weight: 500; }
.mock-list-sub { font-size: 8px; color: #94a3b8; }
.mock-list-tag { font-size: 8px; padding: 2px 7px; border-radius: 10px; font-weight: 600; }
.tag-hot   { background: #fef3c7; color: #d97706; }
.tag-cold  { background: #dbeafe; color: #2563eb; }
.tag-warm  { background: #dcfce7; color: #16a34a; }
.tag-upsell{ background: #f3e8ff; color: #7c3aed; }
.tag-done  { background: #dcfce7; color: #16a34a; }
.tag-alert { background: #fee2e2; color: #dc2626; }

/* Mock — big score */
.mock-score-big { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 14px 4px; }
.mock-score-num { font-size: 40px; font-weight: 800; color: #0064E0; line-height: 1; }
.mock-score-sub { font-size: 9px; color: #64748b; }
.mock-score-badge { font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 20px; }

/* Mock — timeline */
.mock-timeline { padding: 4px 2px; display: flex; flex-direction: column; gap: 0; }
.mock-tl-item { display: flex; gap: 8px; padding: 5px 0; position: relative; }
.mock-tl-item:not(:last-child)::before { content: ''; position: absolute; left: 6px; top: 18px; bottom: -5px; width: 1px; background: #e2e8f0; }
.mock-tl-dot { width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.mock-tl-title { font-size: 9px; font-weight: 600; color: #ffffff; }
.mock-tl-time  { font-size: 8px; color: rgba(255,255,255,0.5); }

/* Mock — stats boxes */
.mock-stats-row { display: flex; gap: 6px; padding: 8px 4px; }
.mock-stat-box { flex: 1; background: #f8fafc; border-radius: 8px; padding: 8px 4px; text-align: center; }
.mock-stat-num { font-size: 18px; font-weight: 800; color: #0064E0; line-height: 1.1; }
.mock-stat-lbl { font-size: 8px; color: #64748b; margin-top: 2px; }

/* Mock — insights */
.mock-insights { padding: 4px; display: flex; flex-direction: column; gap: 5px; }
.mock-insight-item { display: flex; align-items: flex-start; gap: 6px; padding: 5px 7px; background: #f8fafc; border-radius: 6px; }
.mock-insight-ico  { font-size: 11px; flex-shrink: 0; line-height: 1.4; }
.mock-insight-text { font-size: 9px; color: #0f172a; line-height: 1.35; }

/* Mock — enrich profile */
.mock-profile { padding: 6px 4px; display: flex; flex-direction: column; gap: 5px; }
.mock-profile-row { display: flex; align-items: center; gap: 6px; }
.mock-profile-key { font-size: 9px; color: #64748b; width: 52px; flex-shrink: 0; }
.mock-profile-val { font-size: 9px; color: #0f172a; font-weight: 500; flex: 1; background: #f1f5f9; border-radius: 4px; padding: 2px 6px; }
.mock-profile-val.filling { color: #0064E0; background: #eff6ff; }

/* Responsive */
@media (max-width: 1024px) {
  .ferramentas-header {
    flex-direction: column;
    gap: 32px;
  }
  .ferramentas-header-right {
    flex: unset;
  }
}

@media (max-width: 768px) {
  .ferramentas {
    padding: 60px 24px 70px;
  }
  .ferramentas-title {
    font-size: 28px;
  }

  .carousel-wrapper {
    display: grid;
    grid-template-areas:
      "clip clip"
      "prev next";
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding: 0;
    align-items: center;
  }

  .carousel-clip {
    grid-area: clip;
    padding: 12px 0;
    margin: -12px 0;
  }

  .carousel-prev {
    grid-area: prev;
    justify-self: end;
  }

  .carousel-next {
    grid-area: next;
    justify-self: start;
  }

  .carousel-track {
    flex-direction: row;
    gap: 0;
  }

  .fcard {
    flex: 0 0 100%;
    height: 420px;
    transform: scale(1);
    opacity: 1;
    border-radius: 20px;
  }

  .fcard-active {
    transform: scale(1);
    box-shadow: none;
  }
}

/* ── Section — Metodologia ── */
.metodologia {
  background: #ffffff;
  padding: 80px max(24px, calc((100% - 1200px) / 2));
}

.metodologia-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.metodologia-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.metodologia-sub {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

.metodologia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.mcard {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease;
}

.mcard:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.mcard-num {
  font-size: 13px;
  font-weight: 700;
  color: #0064E0;
  letter-spacing: 1px;
}

.mcard-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.mcard-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

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

/* ── Section — Resultados Comprovados ── */
.resultados {
  background-color: #FFFFFF;
  padding: 100px max(60px, calc((100% - 1200px) / 2));
}

.resultados-header {
  text-align: center;
  margin-bottom: 60px;
}

.resultados-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.resultados-sub {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

.resultados-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rcard {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07), 0 4px 20px rgba(0,0,0,0.05);
}

.rcard-top {
  background: linear-gradient(135deg, #1a4fd6 0%, #0064E0 60%, #2563eb 100%);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rcard-top-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rcard-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rcard-client {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
}

.rcard-segment {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.rcard-top-right {
  text-align: right;
  flex-shrink: 0;
}

.rcard-badge-val {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.rcard-badge-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.rcard-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rcard-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.rcard-arrow {
  font-size: 20px;
  color: #22c55e;
  line-height: 1;
}

.rcard-big {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.rcard-main-label {
  font-size: 14px;
  color: #64748b;
}

.rcard-chart-wrap { width: 100%; }

.rcard-svg {
  width: 100%;
  height: auto;
  display: block;
}

.rcard-stats {
  display: flex;
  align-items: center;
  background: #F8FAFC;
  border-radius: 12px;
  padding: 14px 0;
  border: 1px solid #f1f5f9;
}

.rcard-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rcard-stat-val {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.rcard-stat-lbl {
  font-size: 11px;
  color: #94a3b8;
}

.rcard-stat-sep {
  width: 1px;
  height: 32px;
  background: #e2e8f0;
  flex-shrink: 0;
}

.rcard-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .resultados {
    padding: 70px 40px;
  }
  .resultados-grid {
    grid-template-columns: 1fr;
  }
  .resultados-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .resultados {
    padding: 60px 24px;
  }
  .resultados-title {
    font-size: 26px;
  }
  .rcard-big {
    font-size: 26px;
  }
  .rcard-stat-val {
    font-size: 13px;
  }
}

/* ── CTA Final ── */
.cta-final {
  background-color: #04061B;
  padding: 80px max(60px, calc((100% - 1200px) / 2));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
  white-space: nowrap;
}

.cta-highlight {
  color: #0064E0;
}

.cta-sub {
  font-size: 16px;
  color: #8C9BAF;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 48px;
}

.btn-cta-final {
  padding: 18px 48px;
  font-size: 17px;
  margin-bottom: 52px;
}

.cta-trust {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.cta-trust-item svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .cta-final {
    padding: 60px 24px;
  }
  .cta-title {
    font-size: 22px;
    white-space: normal;
  }
  .btn-cta-final {
    font-size: 15px;
    padding: 16px 28px;
  }
  .cta-trust {
    flex-direction: column;
    gap: 16px;
  }
}

/* ── Footer ── */
.footer {
  background-color: #000000;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px max(60px, calc((100% - 1200px) / 2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.9;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── WhatsApp fixo ── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}
