/* ============================================================
   RF Midia — Design System
   Style: Light Clean Minimalista / Premium Consultoria
   Font: Inter (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Syne:wght@700;800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ============================================================
   1. RESET & BASE
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #F8FAFC;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0F172A;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

/* Typography Scale */

h1 {
  font-size: 2.25rem;   /* 36px */
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0F172A;
}

h2 {
  font-size: 1.75rem;   /* 28px */
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #0F172A;
}

h3 {
  font-size: 1.375rem;  /* 22px */
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #0F172A;
}

h4 {
  font-size: 1.125rem;  /* 18px */
  font-weight: 600;
  line-height: 1.4;
  color: #1E293B;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #1E293B;
}

small {
  font-size: 0.8125rem; /* 13px */
  font-weight: 400;
  line-height: 1.5;
  color: #64748B;
}


/* ============================================================
   2. LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Vertically centered page layout — used by the LP */
.centered-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px 16px;
}


/* ============================================================
   3. PROGRESS BAR
   ============================================================ */

.progress-bar {
  width: 100%;
  margin-bottom: 32px;
}

.progress-bar-track {
  width: 100%;
  height: 4px;
  background-color: #E2E8F0;
  border-radius: 99px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: #3B82F6;
  border-radius: 99px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width;
}


/* ============================================================
   4. FORM COMPONENTS (LP)
   ============================================================ */

/* Card that wraps the multi-step form */
.form-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.06),
    0 4px 16px rgba(15, 23, 42, 0.08),
    0 12px 40px rgba(15, 23, 42, 0.06);
  padding: 48px;
  width: 100%;
  max-width: 560px;
  position: relative;
  overflow: hidden;
}

/* Form steps */
.form-step {
  display: none;
  opacity: 0;
}

.form-step.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.3s ease forwards;
}

.form-step.slide-in {
  display: block;
  animation: slideInRight 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.form-step.slide-out {
  display: block;
  animation: slideOutLeft 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}

/* Question label above options */
.question-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 24px;
  line-height: 1.4;
}

/* 2-column grid for option buttons */
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

/* Selectable option button */
.option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 12px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1E293B;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
  line-height: 1.4;
  min-height: 56px;
  user-select: none;
}

.option-btn:hover {
  border-color: #3B82F6;
  background: #EFF6FF;
  color: #1D4ED8;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

.option-btn:active {
  transform: translateY(0);
}

.option-btn.selected {
  border-color: #3B82F6;
  background: #3B82F6;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.option-btn.selected:hover {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Text input (name, whatsapp) */
.text-input {
  width: 100%;
  padding: 14px 16px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #0F172A;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  margin-bottom: 20px;
}

.text-input::placeholder {
  color: #94A3B8;
}

.text-input:focus {
  border-color: #3B82F6;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

/* Primary CTA button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  background: #3B82F6;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
  user-select: none;
}

.btn-primary:hover {
  background: #2563EB;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}

.btn-primary:active {
  background: #1D4ED8;
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-primary:disabled {
  background: #93C5FD;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}


/* ============================================================
   5. HEADER (LP)
   ============================================================ */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  width: 100%;
  max-width: 560px;
  margin-bottom: 16px;
}

.logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.logo span {
  color: #3B82F6;
}

.header-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #64748B;
}


/* ============================================================
   6. KANBAN / PIPELINE (pipeline.html)
   ============================================================ */

.kanban-board {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  overflow-x: auto;
  padding: 24px;
  min-height: calc(100vh - 120px);
  -webkit-overflow-scrolling: touch;
}

.kanban-board::-webkit-scrollbar {
  height: 6px;
}

.kanban-board::-webkit-scrollbar-track {
  background: #E2E8F0;
  border-radius: 99px;
}

.kanban-board::-webkit-scrollbar-thumb {
  background: #94A3B8;
  border-radius: 99px;
}

/* Individual Kanban column */
.kanban-column {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 280px;
  background: #F1F5F9;
  border-radius: 12px;
  padding: 16px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
}

.kanban-column::-webkit-scrollbar {
  width: 4px;
}

.kanban-column::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 99px;
}

/* Column header */
.kanban-column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #E2E8F0;
}

.kanban-column-header h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1E293B;
}

/* Count badge in column header */
.kanban-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  background: #E2E8F0;
  color: #475569;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Lead card */
.lead-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.06),
    0 2px 8px rgba(15, 23, 42, 0.05);
  padding: 16px;
  margin-bottom: 10px;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  border: 1px solid #F1F5F9;
}

.lead-card:hover {
  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.08),
    0 6px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.lead-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 10px;
}

.lead-field {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 0.8125rem;
}

.lead-field-label {
  font-weight: 500;
  color: #94A3B8;
  flex-shrink: 0;
  min-width: 60px;
}

.lead-field-value {
  color: #475569;
  font-weight: 400;
  line-height: 1.4;
}

/* WhatsApp link */
.lead-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #16A34A;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}

.lead-whatsapp:hover {
  color: #15803D;
  text-decoration: underline;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.badge-alto {
  background: #DCFCE7;
  color: #15803D;
}

.badge-medio {
  background: #DBEAFE;
  color: #1D4ED8;
}

.badge-baixo {
  background: #F1F5F9;
  color: #64748B;
}

/* Move button */
.btn-move {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
  white-space: nowrap;
}

.btn-move:hover {
  background: #EFF6FF;
  border-color: #3B82F6;
  color: #1D4ED8;
}

/* Styled select for moving cards */
.btn-move-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 6px 28px 6px 10px;
  background: #F8FAFC url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 8px center;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  outline: none;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.btn-move-select:focus,
.btn-move-select:hover {
  border-color: #3B82F6;
  background-color: #EFF6FF;
}


/* ============================================================
   7. LOGIN / PASSWORD SCREEN (pipeline)
   ============================================================ */

.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.25s ease;
}

.login-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.12),
    0 24px 64px rgba(15, 23, 42, 0.16);
  padding: 40px 48px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-card h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 4px;
}

.login-card p {
  font-size: 0.9rem;
  color: #64748B;
  text-align: center;
  margin-top: -8px;
}

.login-card .text-input {
  margin-bottom: 0;
}


/* ============================================================
   8. ANIMATIONS
   ============================================================ */

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-32px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* ============================================================
   9. UTILITIES
   ============================================================ */

.hidden {
  display: none !important;
}

.text-muted {
  color: #64748B;
}

.text-accent {
  color: #3B82F6;
}

/* Spacing utilities */
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.pt-8  { padding-top: 8px; }
.pt-16 { padding-top: 16px; }
.pt-24 { padding-top: 24px; }

.pb-8  { padding-bottom: 8px; }
.pb-16 { padding-bottom: 16px; }
.pb-24 { padding-bottom: 24px; }

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Flex helpers */
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-8        { gap: 8px; }
.gap-12       { gap: 12px; }
.gap-16       { gap: 16px; }

/* Width helpers */
.w-full { width: 100%; }


/* ============================================================
   10. RESPONSIVE
   ============================================================ */

@media (max-width: 600px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .form-card {
    padding: 32px 24px;
    border-radius: 12px;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .login-card {
    padding: 32px 24px;
  }

  .kanban-board {
    padding: 16px;
  }

  .kanban-column {
    width: 260px;
  }
}

@media (max-width: 400px) {
  .form-card {
    padding: 24px 16px;
  }

  .centered-layout {
    padding: 16px 12px;
  }
}


/* ============================================================
   11. LANDING PAGE — FORM GRID
   ============================================================ */

.field-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row .text-input {
  width: 100%;
}

select.text-input {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-error {
  color: #DC2626;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   12. PIPELINE — TOPBAR
   ============================================================ */

.pipeline-topbar {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.pipeline-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}


/* ============================================================
   13. PIPELINE — METRICS GRID
   ============================================================ */

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.metric-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.metric-blue   .metric-value { color: #1D4ED8; }
.metric-yellow .metric-value { color: #B45309; }
.metric-orange .metric-value { color: #C2410C; }
.metric-purple .metric-value { color: #7E22CE; }
.metric-green  .metric-value { color: #15803D; }

.metric-green {
  background: #F0FDF4;
  border-color: #BBF7D0;
}

@media (max-width: 900px) {
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   14. PIPELINE — FILTER BAR
   ============================================================ */

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-bar .btn-move-select {
  padding: 8px 32px 8px 12px;
  font-size: 0.875rem;
}


/* ============================================================
   15. PIPELINE — LEADS TABLE
   ============================================================ */

.leads-table-wrap {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
}

.leads-table thead {
  background: #F8FAFC;
  border-bottom: 2px solid #E2E8F0;
}

.leads-table th {
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748B;
  text-align: left;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.leads-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #1E293B;
  border-bottom: 1px solid #F1F5F9;
  vertical-align: middle;
}

.leads-table tbody tr:last-child td {
  border-bottom: none;
}

.leads-table tbody tr:hover {
  background: #F8FAFC;
}

.lead-name-cell {
  font-weight: 600;
  color: #0F172A;
  cursor: pointer;
  transition: color 0.15s;
}

.lead-name-cell:hover {
  color: #3B82F6;
  text-decoration: underline;
}

.lead-empresa-cell {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-top: 2px;
}


/* ============================================================
   16. PIPELINE — DRAWER
   ============================================================ */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 200;
  animation: fadeIn 0.2s ease;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100%;
  background: #FFFFFF;
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(15, 23, 42, 0.12);
  animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid #E2E8F0;
  flex-shrink: 0;
}

.drawer-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
}

.drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-body .lead-field {
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
}

.drawer-body .lead-field:last-child {
  border-bottom: none;
}


/* ============================================================
   SALES PAGE v2 — Editorial redesign
   Fonts: Syne (display) + Plus Jakarta Sans (body)
   Palette: Cream #F8F5EF · Dark #111 · Accent #FFD60A
   ============================================================ */

.sales-page {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #F8F5EF;
  color: #111;
}

.sp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.sp-section { padding: 96px 0; }

/* Labels */
.sp-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 14px;
  display: block;
}

.sp-label-light { color: rgba(255,255,255,0.4); }

.sp-section-header { margin-bottom: 56px; }

.sp-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

/* ============================================================
   NAV
   ============================================================ */

.sp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #F8F5EF;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 18px 0;
}

.sp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;
}

.sp-logo span { color: #FFD60A; }

.sp-nav-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.sp-nav-btn:hover { background: #333; transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */

.sp-hero {
  padding: 100px 0 88px;
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.sp-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,10,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.sp-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sp-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #FFD60A;
  flex-shrink: 0;
}

.sp-hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 800;
  color: #111;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  max-width: 820px;
}

.sp-hero-hl {
  position: relative;
  display: inline;
  white-space: nowrap;
}

.sp-hero-hl::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: -2px;
  right: -2px;
  height: 12px;
  background: #FFD60A;
  opacity: 0.45;
  z-index: -1;
  border-radius: 3px;
}

.sp-hero-sub {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 44px;
}

.sp-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sp-btn-main {
  display: inline-flex;
  align-items: center;
  background: #111;
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.sp-btn-main:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.sp-btn-yellow {
  background: #FFD60A !important;
  color: #111 !important;
}

.sp-btn-yellow:hover {
  background: #F5C800 !important;
  box-shadow: 0 10px 28px rgba(255,214,10,0.35) !important;
  transform: translateY(-2px);
}

.sp-hero-badge {
  font-size: 0.8125rem;
  color: #999;
  font-weight: 500;
}

/* ============================================================
   IDENTIFICAÇÃO
   ============================================================ */

.sp-identification { background: #111; }

.sp-scenes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 36px;
}

.sp-scene {
  background: #111;
  padding: 40px 36px;
  transition: background 0.2s;
}

.sp-scene:hover { background: #181818; }

.sp-scene-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FFD60A;
  display: block;
  margin-bottom: 16px;
}

.sp-scene p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  margin: 0;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */

.sp-services { background: #F8F5EF; }

.sp-service-list { border-top: 1px solid rgba(0,0,0,0.1); }

.sp-service-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: start;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.sp-service-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #ccc;
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.sp-service-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.sp-service-body p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}

.sp-service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 6px;
}

/* ============================================================
   AGENTES DE IA
   ============================================================ */

.sp-ia { background: #111; }

.sp-ia-header { margin-bottom: 52px; }

.sp-ia-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.sp-ia-title em {
  font-style: italic;
  color: #FFD60A;
}

.sp-ia-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 460px;
  margin: 0;
}

.sp-ia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.sp-ia-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px 22px;
  transition: border-color 0.2s;
}

.sp-ia-card:hover { border-color: rgba(255,214,10,0.25); }

.sp-ia-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FFD60A;
  margin-bottom: 18px;
}

.sp-ia-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.sp-ia-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
}

.sp-ia-custom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  background: #1a1a1a;
  border: 1px solid rgba(255,214,10,0.18);
  border-radius: 12px;
  padding: 28px 22px;
  margin-bottom: 10px;
}

.sp-ia-custom div { display: flex; flex-direction: column; }

.sp-ia-custom h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0;
}

.sp-ia-custom p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
  align-self: center;
}

.sp-ia-cta {
  margin-top: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sp-ia-cta span {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
}

.sp-ia-cta-btn {
  background: #FFD60A;
  color: #111;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.sp-ia-cta-btn:hover { background: #F5C800; transform: translateY(-1px); }

/* ============================================================
   PROCESSO
   ============================================================ */

.sp-process { background: #F8F5EF; }

.sp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sp-process-step {
  border-top: 2px solid #111;
  padding-top: 28px;
}

.sp-process-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ccc;
  margin-bottom: 20px;
}

.sp-process-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.sp-process-step p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   COMPARAÇÃO
   ============================================================ */

.sp-comparison { background: #EDEAE2; }

.sp-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.1);
  border-radius: 16px;
  overflow: hidden;
}

.sp-comp-col { padding: 40px 36px; }

.sp-comp-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.sp-comp-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-comp-col li {
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}

.sp-comp-other { background: #fff; }
.sp-comp-other .sp-comp-label { color: #bbb; }
.sp-comp-other li { color: #888; }
.sp-comp-other li::before { content: '—'; position: absolute; left: 0; color: #ddd; font-size: 0.875rem; line-height: 1.75; }

.sp-comp-rf { background: #111; }
.sp-comp-rf .sp-comp-label { color: #FFD60A; }
.sp-comp-rf li { color: rgba(255,255,255,0.78); }
.sp-comp-rf li::before { content: '→'; position: absolute; left: 0; color: #FFD60A; font-size: 0.875rem; line-height: 1.75; }

/* ============================================================
   PARA QUEM É
   ============================================================ */

.sp-audience { background: #F8F5EF; }

.sp-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sp-aud-card {
  border-radius: 16px;
  padding: 40px 36px;
}

.sp-aud-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.sp-aud-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-aud-card li {
  font-size: 0.9375rem;
  line-height: 1.65;
  padding-left: 24px;
  position: relative;
}

.sp-aud-yes { background: #111; }
.sp-aud-yes .sp-aud-label { color: #FFD60A; }
.sp-aud-yes li { color: rgba(255,255,255,0.78); }
.sp-aud-yes li::before { content: '✓'; position: absolute; left: 0; color: #FFD60A; font-weight: 700; }

.sp-aud-no { background: #EDEAE2; border: 1px solid rgba(0,0,0,0.07); }
.sp-aud-no .sp-aud-label { color: #aaa; }
.sp-aud-no li { color: #666; }
.sp-aud-no li::before { content: '·'; position: absolute; left: 2px; color: #bbb; font-size: 1.2rem; line-height: 1.35; }

.sp-aud-note {
  font-size: 0.875rem;
  color: #999;
  font-style: italic;
  margin-top: 20px;
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */

.sp-faq { background: #EDEAE2; }

.sp-faq-list {
  border-top: 1px solid rgba(0,0,0,0.1);
  max-width: 760px;
}

.sp-faq-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.sp-faq-q {
  font-family: 'Syne', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.sp-faq-a {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.72;
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.sp-cta-final { background: #111; text-align: center; }

.sp-cta-final-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.375rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.sp-cta-final-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 36px;
}

.sp-cta-final-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.sp-footer {
  background: #F8F5EF;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 28px 0;
}

.sp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sp-footer-copy {
  font-size: 0.8125rem;
  color: #bbb;
  margin: 0;
}

.sp-footer-hidden { color: transparent; text-decoration: none; }
.sp-footer-hidden:hover { color: #ccc; }

/* ============================================================
   MODAL
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modalFadeIn 0.2s ease;
}

.modal-overlay.hidden { display: none; }

.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalScaleIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #64748B;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}

.modal-close:hover { background: #E2E8F0; }

.modal-title { font-size: 1.4rem; font-weight: 800; color: #0F172A; margin-bottom: 6px; }
.modal-sub { font-size: 0.9rem; color: #64748B; margin-bottom: 24px; }

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalScaleIn {
  from { opacity: 0; transform: scale(0.95) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================================
   RESPONSIVE — SALES PAGE
   ============================================================ */

@media (max-width: 1024px) {
  .sp-ia-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-ia-custom { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 768px) {
  .sp-section { padding: 64px 0; }
  .sp-container { padding: 0 20px; }
  .sp-hero { padding: 72px 0 56px; min-height: auto; }
  .sp-hero-headline { font-size: 2.25rem; }
  .sp-hero-actions { flex-direction: column; align-items: flex-start; }
  .sp-scenes { grid-template-columns: 1fr; }
  .sp-service-item { grid-template-columns: 40px 1fr; }
  .sp-service-tag { display: none; }
  .sp-ia-grid { grid-template-columns: 1fr; }
  .sp-ia-cta { flex-direction: column; align-items: flex-start; }
  .sp-process-grid { grid-template-columns: 1fr; gap: 32px; }
  .sp-comparison-grid { grid-template-columns: 1fr; }
  .sp-audience-grid { grid-template-columns: 1fr; }
  .sp-cta-final-title { font-size: 2rem; }
  .sp-footer-inner { flex-direction: column; text-align: center; }
  .sp-nav-btn { display: none; }
  .modal-box { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .sp-scene { padding: 28px 20px; }
  .sp-comp-col { padding: 28px 20px; }
  .sp-aud-card { padding: 28px 20px; }
}
