/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --white:       #FFFFFF;
  --orange-500:  #F97316;
  --orange-600:  #EA580C;
  --gray-700:    #374151;
  --orange-50:   #FFF7ED;
  --orange-200:  #FED7AA;
  --gray-500:    #6B7280;
  --gray-400:    #9CA3AF;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.14);

  --ease:        200ms ease;

  --container:   1160px;
  --section-py:  96px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; color: var(--gray-700); }

h1 { font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.02em; }
h3 { font-size: clamp(17px, 2vw, 20px); font-weight: 700; }

.text-orange { color: var(--orange-500); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--ease), border-color var(--ease),
              color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  border: 2px solid var(--orange-500);
}
.btn-primary:hover {
  background: var(--orange-600);
  border-color: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(249,115,22,.35);
}

.btn-outline {
  background: transparent;
  color: var(--orange-500);
  border: 2px solid var(--orange-500);
}
.btn-outline:hover {
  background: var(--orange-500);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-500);
  border: 2px solid var(--gray-400);
}
.btn-ghost:hover {
  border-color: var(--gray-700);
  color: var(--gray-700);
}

.btn-white {
  background: var(--white);
  color: var(--orange-600);
  border: 2px solid var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--orange-50);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.w-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p   { color: var(--gray-500); font-size: 18px; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange-500);
  margin-bottom: 14px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--orange-200);
  transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--gray-700);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo-white { color: var(--white); }
.logo-dot   { color: var(--orange-500); }

.nav {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  transition: color var(--ease);
}
.nav a:hover { color: var(--orange-500); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: -8%;
  right: -4%;
  width: 56%;
  height: 120%;
  background: var(--orange-50);
  border-radius: 40% 0 0 40%;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-50);
  border: 1px solid var(--orange-200);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-600);
  margin-bottom: 28px;
}
.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.85); }
}

.hero-title   { margin-bottom: 24px; }
.hero-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

.hero-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(249, 115, 22, 0.10);
  border-radius: 50%;
  filter: blur(72px);
  top: -80px;
  right: -80px;
  z-index: 0;
  pointer-events: none;
}

/* Phone mockup */
.phone-mockup {
  width: 268px;
  height: 540px;
  background: var(--white);
  border-radius: 40px;
  border: 9px solid var(--gray-700);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(55,65,81,.08);
  position: relative;
  overflow: hidden;
  z-index: 1;
  flex-shrink: 0;
}

.phone-notch {
  width: 88px;
  height: 20px;
  background: var(--gray-700);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  height: calc(100% - 20px);
  overflow: hidden;
  background: #F9FAFB;
  display: flex;
  flex-direction: column;
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border-bottom: 1px solid #F3F4F6;
  flex-shrink: 0;
}
.app-bar-avatar {
  width: 34px;
  height: 34px;
  background: var(--orange-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.app-bar-info   { display: flex; flex-direction: column; }
.app-bar-name   { font-size: 11px; font-weight: 700; color: var(--gray-700); line-height: 1.3; }
.app-bar-sub    { font-size: 9px; color: var(--gray-500); }

.app-categories {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: var(--white);
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: none;
}
.app-categories::-webkit-scrollbar { display: none; }

.cat {
  font-size: 9px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: #F3F4F6;
  color: var(--gray-500);
  white-space: nowrap;
  flex-shrink: 0;
}
.cat.active { background: var(--orange-500); color: var(--white); }

.app-items {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.item-thumb         { width: 42px; height: 42px; border-radius: 8px; flex-shrink: 0; }
.item-thumb-1       { background: linear-gradient(135deg, #FCD34D, #F97316); }
.item-thumb-2       { background: linear-gradient(135deg, #6EE7B7, #3B82F6); }
.item-thumb-3       { background: linear-gradient(135deg, #FCA5A5, #EF4444); }

.item-body          { flex: 1; min-width: 0; }
.item-name          { display: block; font-size: 11px; font-weight: 700; color: var(--gray-700); }
.item-desc          { display: block; font-size: 9px; color: var(--gray-400); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.item-price         { display: block; font-size: 11px; font-weight: 800; color: var(--orange-600); margin-top: 3px; }

.item-add {
  width: 24px;
  height: 24px;
  background: var(--orange-500);
  color: var(--white);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

/* Floating elements */
.float-chat {
  position: absolute;
  bottom: 72px;
  right: -16px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  background: var(--white);
  border-radius: 16px 16px 4px 16px;
  padding: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid #F0F0F0;
  max-width: 196px;
  z-index: 2;
  animation: floatBob 3.2s ease-in-out infinite;
}
.chat-avatar {
  width: 30px;
  height: 30px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.chat-avatar svg   { width: 16px; height: 16px; }
.chat-bubble       { flex: 1; min-width: 0; }
.chat-name         { font-size: 10px; font-weight: 700; color: var(--gray-700); }
.chat-msg          { font-size: 11px; color: var(--gray-500); margin-top: 2px; line-height: 1.4; }
.chat-time         { font-size: 9px; color: var(--gray-400); display: block; text-align: right; margin-top: 4px; }

.float-loyalty {
  position: absolute;
  top: 48px;
  left: -16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--orange-200);
  z-index: 2;
  animation: floatBob 3.2s ease-in-out infinite 1.6s;
}
.loyalty-icon     { font-size: 20px; }
.loyalty-info     { display: flex; flex-direction: column; }
.loyalty-title    { font-size: 10px; font-weight: 600; color: var(--gray-500); }
.loyalty-pts      { font-size: 13px; font-weight: 800; color: var(--orange-600); }

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.how { background: var(--orange-50); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 16px;
  align-items: start;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  color: var(--orange-200);
}
.step-connector svg { width: 22px; height: 22px; stroke: var(--orange-200); }

.step { text-align: center; }

.step-number {
  font-size: 12px;
  font-weight: 800;
  color: var(--orange-500);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--orange-200);
}
.step-icon svg { width: 26px; height: 26px; stroke: var(--orange-500); }

.step h3 { margin-bottom: 12px; }
.step p  { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid #F0F0F0;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.feature-card:hover {
  border-color: var(--orange-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1.5px solid var(--orange-200);
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--orange-500); }

.feature-card h3 { margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ============================================================
   COMPARATIVO
   ============================================================ */
.comp { background: var(--orange-50); }

.comp-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
  min-width: 640px;
}

.comp-table thead tr {
  background: var(--gray-700);
}
.comp-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
}
.comp-table thead th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.comp-table thead th:last-child  { border-radius: 0 var(--radius-lg) 0 0; }

.comp-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid #F3F4F6;
  vertical-align: middle;
}
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:not(.comp-row-pediu):hover td { background: #FAFAFA; }

.comp-name { display: block; font-weight: 700; color: var(--gray-700); }
.comp-sub  { display: block; font-size: 12px; color: var(--gray-400); margin-top: 2px; }

.comp-yes     { color: #16A34A; font-weight: 600; }
.comp-no      { color: var(--gray-400); }
.comp-partial { color: var(--gray-500); }

.comp-row-pediu td {
  background: var(--orange-50);
  border-bottom: none;
}
.comp-row-pediu td:first-child { border-left: 3px solid var(--orange-500); }
.comp-row-pediu .comp-name { color: var(--orange-600); }

/* ROI Callout */
.roi-callout {
  background: var(--white);
  border: 1.5px solid var(--orange-200);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.roi-item { flex: 1; min-width: 200px; }
.roi-label { display: block; font-size: 13px; color: var(--gray-500); margin-bottom: 4px; }
.roi-value { display: block; font-size: 15px; color: var(--gray-700); line-height: 1.5; }
.roi-highlight { color: var(--orange-600); }

.roi-divider {
  font-size: 24px;
  color: var(--orange-200);
  font-weight: 300;
  flex-shrink: 0;
}

.roi-anchor {
  width: 100%;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid var(--orange-200);
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.roi-anchor strong { color: var(--orange-600); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--orange-500); padding: 52px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat span {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* ============================================================
   DEPOIMENTOS — 3 CARDS
   ============================================================ */
.testimonial { background: var(--white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: var(--white);
  border: 1.5px solid #F0F0F0;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.tcard:hover {
  border-color: var(--orange-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tcard-quote {
  font-size: 56px;
  font-weight: 900;
  color: var(--orange-200);
  line-height: .7;
  font-family: Georgia, 'Times New Roman', serif;
}

.tcard-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  flex: 1;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #F0F0F0;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info        { }
.author-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-700); }
.author-info span   { font-size: 12px; color: var(--gray-500); line-height: 1.4; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--orange-50); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 2px solid #F0F0F0;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.plan-card-featured {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(249,115,22,.08);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-500);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: .04em;
}
.plan-badge-dark { background: var(--gray-700); }

.plan-header  { margin-bottom: 28px; }

.plan-name {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange-500);
  margin-bottom: 12px;
}
.plan-card-featured .plan-name { color: var(--orange-600); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-price-value  { font-size: 42px; font-weight: 900; color: var(--gray-700); line-height: 1; letter-spacing: -0.02em; }
.plan-price-period { font-size: 16px; color: var(--gray-500); }

.plan-tagline {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-500);
  margin-bottom: 6px;
}

.plan-annual {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.plan-condition { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--gray-700);
}
.plan-features-list li         { display: flex; align-items: flex-start; gap: 8px; }
.plan-features-list .check     { color: var(--orange-500); font-weight: 700; flex-shrink: 0; }
.plan-features-list .unavailable       { color: var(--gray-400); }
.plan-features-list .unavailable span  { color: var(--gray-400); }

/* Below pricing grid */
.pricing-bottom { margin-top: 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; }

.pricing-anchor-callout {
  background: var(--white);
  border: 1.5px solid var(--orange-200);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  font-size: 15px;
  color: var(--gray-700);
  text-align: center;
  max-width: 680px;
  line-height: 1.6;
}
.pricing-anchor-callout strong { color: var(--orange-600); }

.pricing-annual-note {
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
}

/* ============================================================
   FAQ — ACCORDION
   ============================================================ */
.faq { background: var(--white); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid #F0F0F0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #F0F0F0;
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: var(--white);
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  transition: background var(--ease), color var(--ease);
  cursor: pointer;
}
.faq-question:hover { background: var(--orange-50); color: var(--orange-600); }
.faq-question[aria-expanded="true"] {
  background: var(--orange-50);
  color: var(--orange-600);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange-50);
  border: 1.5px solid var(--orange-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-500);
  flex-shrink: 0;
  transition: transform var(--ease), background var(--ease);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--orange-500);
  color: var(--white);
  border-color: var(--orange-500);
}

.faq-answer {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  animation: fadeDown .2s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { background: var(--orange-500); text-align: center; }

.cta-content h2 { color: var(--white); margin-bottom: 20px; }
.cta-content p  {
  color: rgba(255,255,255,.85);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--gray-700); padding: 64px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand .logo   { margin-bottom: 16px; display: inline-block; }
.footer-brand p       { font-size: 14px; color: var(--gray-400); max-width: 280px; line-height: 1.75; }

.footer-links h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO — TRUST INDICATORS
   ============================================================ */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
}
.trust-item svg { color: var(--orange-500); flex-shrink: 0; }
.trust-sep { color: var(--gray-400); font-size: 12px; }

/* ============================================================
   HERO — FLOAT CRM
   ============================================================ */
.float-crm {
  position: absolute;
  top: 120px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid #F0F0F0;
  z-index: 2;
  animation: floatBob 3.2s ease-in-out infinite 0.8s;
}
.crm-icon-wrap {
  width: 28px;
  height: 28px;
  background: var(--orange-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange-500);
}
.crm-info  { display: flex; flex-direction: column; }
.crm-label { font-size: 10px; font-weight: 600; color: var(--gray-500); }
.crm-value { font-size: 13px; font-weight: 800; color: var(--gray-700); }

/* ============================================================
   HERO — ECOSYSTEM MOCKUP PANELS
   ============================================================ */

/* On desktop, hide float-chat and float-crm (replaced by panels) */
@media (min-width: 769px) {
  .float-chat { display: none; }
  .float-crm  { display: none; }
}

.mock-panel {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid #EFEFEF;
  overflow: hidden;
}

/* CRM browser panel — in front of phone, right side */
.mock-crm-panel {
  width: 230px;
  top: 24px;
  right: -24px;
  z-index: 2;
}

/* WhatsApp chat panel — in front, bottom-left */
.mock-wa-panel {
  width: 183px;
  bottom: 40px;
  left: -10px;
  z-index: 3;
}

/* Loyalty card — in front, bottom-right */
.mock-loyalty-panel {
  width: 170px;
  bottom: 20px;
  right: -20px;
  z-index: 3;
}

/* Browser chrome bar */
.mock-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  background: #F8F9FA;
  border-bottom: 1px solid #F0F0F0;
}
.mock-tl-row { display: flex; gap: 4px; flex-shrink: 0; }
.mock-tl {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}
.mock-tl-r { background: #FF5F57; }
.mock-tl-y { background: #FEBC2E; }
.mock-tl-g { background: #28C840; }
.mock-url-bar {
  flex: 1;
  font-size: 9px;
  color: var(--gray-400);
  background: #ECEEF0;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CRM content */
.mock-panel-content { padding: 10px 12px; }
.mock-panel-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.mock-panel-title { font-size: 11px; font-weight: 700; color: var(--gray-700); }
.mock-count-tag {
  font-size: 9px;
  font-weight: 600;
  color: var(--orange-600);
  background: var(--orange-50);
  padding: 2px 7px;
  border-radius: 99px;
}
.mock-cust-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  border-bottom: 1px solid #F5F5F5;
}
.mock-cust-row:last-child { border-bottom: none; }
.mock-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--av-bg, var(--orange-500));
  color: white;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-av-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.mock-av-meta span  { font-size: 10px; font-weight: 600; color: var(--gray-700); }
.mock-av-meta small {
  font-size: 8px;
  color: var(--gray-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-tag {
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 99px;
  flex-shrink: 0;
}
.mock-tag-g { background: #DCFCE7; color: #16A34A; }
.mock-tag-o { background: var(--orange-50); color: var(--orange-600); }
.mock-tag-y { background: #FEF9C3; color: #CA8A04; }

/* WhatsApp panel */
.mock-wa-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #075E54;
}
.mock-wa-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.mock-wa-name   { font-size: 10px; font-weight: 700; color: white; line-height: 1.2; }
.mock-wa-online { font-size: 8px; color: rgba(255,255,255,.7); }
.mock-wa-body {
  padding: 8px 8px 6px;
  background: #ECE5DD;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mock-bubble {
  font-size: 9.5px;
  line-height: 1.45;
  padding: 5px 8px;
  border-radius: 8px;
  max-width: 90%;
  color: var(--gray-700);
}
.mock-bubble-in  { background: white; align-self: flex-start; border-radius: 0 8px 8px 8px; }
.mock-bubble-out { background: #D9FDD3; align-self: flex-end; border-radius: 8px 0 8px 8px; }
.mock-link { color: #128C7E; font-size: 8.5px; }
.mock-time { font-size: 7.5px; color: var(--gray-400); display: inline; }

/* Loyalty panel */
.mock-loy-hdr {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px 6px;
}
.mock-loy-title { font-size: 11px; font-weight: 700; color: var(--gray-700); }
.mock-loy-pts {
  font-size: 30px;
  font-weight: 900;
  color: var(--orange-600);
  letter-spacing: -0.04em;
  line-height: 1;
  padding: 0 12px 6px;
}
.mock-loy-pts small { font-size: 13px; font-weight: 600; color: var(--gray-400); letter-spacing: 0; }
.mock-progress-wrap { padding: 0 12px 4px; }
.mock-progress-track {
  height: 5px;
  background: #F0F0F0;
  border-radius: 99px;
  overflow: hidden;
}
.mock-progress-fill {
  height: 100%;
  width: 80%;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-600));
  border-radius: 99px;
}
.mock-loy-info { padding: 2px 12px 5px; font-size: 8px; color: var(--gray-400); }
.mock-loy-levels {
  display: flex;
  gap: 3px;
  padding: 0 12px 6px;
}
.mock-lev {
  font-size: 8px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 99px;
  background: #F3F4F6;
  color: var(--gray-400);
}
.mock-lev-done { background: #FEF9C3; color: #B45309; }
.mock-lev-on   { background: var(--orange-50); color: var(--orange-600); }
.mock-lev-next { background: #F3F4F6; color: var(--gray-400); }
.mock-redeem {
  margin: 0 12px 10px;
  background: var(--orange-500);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 8px;
  text-align: center;
}

/* ============================================================
   DORES
   ============================================================ */
.dores { background: var(--white); }

.dores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.dor-card {
  background: var(--white);
  border: 1.5px solid #F0F0F0;
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.dor-card:hover {
  border-color: #E5E7EB;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.dor-icon-wrap {
  width: 56px;
  height: 56px;
  background: #FEF2F2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1.5px solid #FECACA;
}
.dor-icon-wrap svg { width: 24px; height: 24px; stroke: #EF4444; }
.dor-card h3 { font-size: 16px; margin-bottom: 10px; }
.dor-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

.dores-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px;
  background: var(--orange-50);
  border: 1.5px solid var(--orange-200);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}
.dores-cta p {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  margin: 0;
  flex: 1;
  min-width: 240px;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais { background: var(--orange-50); }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dif-card {
  background: var(--white);
  border: 1.5px solid #F0F0F0;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.dif-card:hover {
  border-color: var(--orange-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.dif-card-highlight {
  border-color: var(--orange-200);
  background: linear-gradient(135deg, #FFF7ED 0%, var(--white) 60%);
}
.dif-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1.5px solid var(--orange-200);
}
.dif-icon svg { width: 24px; height: 24px; stroke: var(--orange-500); }
.dif-card h3 { margin-bottom: 10px; }
.dif-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ============================================================
   PRICING — FREE PLAN HIGHLIGHT
   ============================================================ */
.plan-card-free        { border-color: var(--orange-500); }
.plan-badge-free       { background: #16A34A; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .hero-grid        { gap: 48px; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .steps-grid       { grid-template-columns: repeat(4, 1fr); }
  .step-connector   { display: none; }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .dores-grid       { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .roi-callout      { flex-direction: column; gap: 16px; }
  .roi-divider      { transform: rotate(90deg); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* Mobile nav */
  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 8px 24px 24px;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--orange-200);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 16px;
    color: var(--gray-700);
  }
  .nav a:last-child { border-bottom: none; }

  .header .btn-sm { display: none; }
  .menu-toggle    { display: flex; }

  /* Hero */
  .hero { padding: 48px 0 64px; }
  .hero::before { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-subtitle  { margin: 0 auto 40px; }
  .hero-actions   { justify-content: center; }
  .hero-trust     { justify-content: center; }
  .hero-visual    { order: -1; min-height: auto; }

  .float-chat     { right: 0; }
  .float-loyalty  { left: 0; }
  .float-crm      { display: none; }
  .mock-crm-panel, .mock-wa-panel, .mock-loyalty-panel { display: none; }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    gap: 36px;
  }

  /* Dores */
  .dores-grid         { grid-template-columns: 1fr; }
  .dores-cta          { flex-direction: column; text-align: center; }

  /* Diferenciais */
  .diferenciais-grid  { grid-template-columns: 1fr; }

  /* Features */
  .features-grid  { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid   { grid-template-columns: 1fr; }

  /* Testimonial */
  .testimonial-grid { grid-template-columns: 1fr; max-width: 100%; }

  /* FAQ */
  .faq-question { padding: 18px 20px; font-size: 14px; }
  .faq-answer   { padding: 0 20px 18px; font-size: 14px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; justify-content: center; }

  .phone-mockup   { width: 240px; height: 480px; }
  .float-chat     { max-width: 168px; right: -8px; }
  .float-loyalty  { left: -8px; }

  .stats-grid     { grid-template-columns: repeat(2, 1fr); }

  .roi-callout    { padding: 20px; }
  .pricing-anchor-callout { padding: 16px 20px; font-size: 14px; }

  .dor-card, .dif-card { padding: 24px 20px; }
}

