/* =====================================================================
   DELIVERY LANDING PAGE — Estilos exclusivos
   Prefixo: .dv- (evita conflitos com app.css)
   ===================================================================== */

/* ── 1. Page base ─────────────────────────────────────────────────── */
.dv-page {
  overflow-x: hidden;
}

/* ── 2. HERO ──────────────────────────────────────────────────────── */
.dv-hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--bg-root);
  overflow: hidden;
}

.dv-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,163,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,163,74,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.dv-hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.dv-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding: var(--sp-20) 0;
}

.dv-hero-content {}

.dv-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green-dark);
  padding: 6px 14px;
  background: var(--c-green-subtle);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
}

.dv-hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  animation: dv-pulse 2s ease-in-out infinite;
}

@keyframes dv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.dv-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: var(--sp-6);
}

.dv-hero-h1 em {
  font-style: normal;
  color: var(--c-green);
}

.dv-hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--sp-10);
  max-width: 520px;
}

.dv-hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.dv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  background: var(--c-green);
  color: #fff;
  border-radius: var(--r-full);
  box-shadow: 0 4px 20px rgba(22,163,74,0.35);
  transition: var(--t-base);
  white-space: nowrap;
}

.dv-btn-primary:hover {
  background: var(--c-green-dark);
  box-shadow: 0 8px 32px rgba(22,163,74,0.45);
  transform: translateY(-2px);
}

.dv-btn-primary svg { flex-shrink: 0; }

.dv-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
  border-radius: var(--r-full);
  transition: var(--t-base);
  white-space: nowrap;
}

.dv-btn-outline:hover {
  border-color: var(--c-green);
  color: var(--c-green-dark);
  background: var(--c-green-subtle);
  transform: translateY(-1px);
}

.dv-hero-trust {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.dv-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.dv-trust-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--c-green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

/* Laptop/Dashboard */
.dv-laptop {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 380px;
  animation: dv-float-slow 6s ease-in-out infinite;
}

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

.dv-laptop-frame {
  background: #1a1f2e;
  border-radius: 12px 12px 0 0;
  padding: 10px 10px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
}

.dv-laptop-frame::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #374151;
}

.dv-laptop-screen {
  background: #fff;
  border-radius: 6px;
  height: 210px;
  overflow: hidden;
  display: flex;
}

/* Dashboard UI */
.dv-dash-sidebar {
  width: 52px;
  background: #0f172a;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.dv-dash-nav-dot {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
}

.dv-dash-nav-dot.active { background: var(--c-green); }

.dv-dash-main {
  flex: 1;
  background: #f8fafc;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.dv-dash-topbar {
  height: 16px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
}

.dv-dash-topbar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
}

.dv-dash-topbar-dot.g { background: var(--c-green); }

.dv-dash-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.dv-dash-stat-card {
  background: #fff;
  border-radius: 6px;
  padding: 8px;
}

.dv-dash-stat-num {
  height: 8px;
  background: var(--c-green-muted);
  border-radius: 3px;
  margin-bottom: 4px;
  width: 60%;
}

.dv-dash-stat-num.big { background: rgba(22,163,74,0.3); width: 80%; height: 10px; }

.dv-dash-stat-label {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  width: 90%;
}

.dv-dash-chart {
  background: #fff;
  border-radius: 6px;
  padding: 8px;
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.dv-chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--c-green-muted);
  transition: height 0.3s ease;
}

.dv-chart-bar.hi { background: var(--c-green); }

.dv-dash-orders {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.dv-order-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-bottom: 1px solid #f1f5f9;
}

.dv-order-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dv-order-line {
  height: 6px;
  border-radius: 3px;
  background: #e2e8f0;
  flex: 1;
}

.dv-order-price {
  height: 6px;
  width: 30px;
  border-radius: 3px;
  background: var(--c-green-muted);
}

.dv-laptop-base {
  background: #1a1f2e;
  height: 16px;
  border-radius: 0 0 4px 4px;
  position: relative;
}

.dv-laptop-base::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -12%;
  width: 124%;
  height: 10px;
  background: #0f172a;
  border-radius: 0 0 8px 8px;
}

/* Phone */
.dv-phone {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 180px;
  z-index: 2;
  animation: dv-float 5s ease-in-out infinite;
}

@keyframes dv-float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(-2deg); }
}

.dv-phone-frame {
  background: #1a1f2e;
  border-radius: 28px;
  padding: 10px 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
}

.dv-phone-notch {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 16px;
  background: #1a1f2e;
  border-radius: 8px;
  z-index: 10;
}

.dv-phone-screen {
  background: #fff;
  border-radius: 20px;
  height: 310px;
  overflow: hidden;
  position: relative;
}

/* App UI inside phone */
.dv-app-header {
  background: var(--c-green);
  padding: 20px 10px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dv-app-header-logo {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  flex: 1;
}

.dv-app-header-icon {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

.dv-app-address {
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 0.45rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 3px;
}

.dv-app-cats {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  overflow: hidden;
}

.dv-cat-pill {
  background: #f1f5f9;
  border-radius: var(--r-full);
  padding: 4px 8px;
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.dv-cat-pill.active {
  background: var(--c-green-subtle);
  color: var(--c-green-dark);
  border: 1px solid rgba(22,163,74,0.2);
}

.dv-rest-card {
  margin: 0 10px 8px;
  background: #f8fafc;
  border-radius: 10px;
  overflow: hidden;
}

.dv-rest-img {
  height: 40px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dv-rest-img span {
  font-size: 1.2rem;
}

.dv-rest-info {
  padding: 5px 8px 6px;
}

.dv-rest-name {
  font-size: 0.55rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.dv-rest-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.45rem;
  color: #64748b;
}

.dv-rest-star { color: #f59e0b; }

/* Phone notification */
.dv-phone-notif {
  position: absolute;
  left: -60px;
  bottom: 80px;
  width: 200px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 1px solid rgba(22,163,74,0.15);
  z-index: 10;
  animation: dv-notif-in 0.5s ease 1.5s both, dv-notif-float 4s ease-in-out 2s infinite;
}

@keyframes dv-notif-in {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dv-notif-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.dv-notif-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.dv-notif-icon {
  width: 24px;
  height: 24px;
  background: var(--c-green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.dv-notif-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.dv-notif-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--c-green-dark);
  margin-left: auto;
}

.dv-notif-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-green);
  border-radius: 50%;
  animation: dv-pulse 1.5s ease-in-out infinite;
}

.dv-notif-body {
  font-size: 0.6rem;
  color: #475569;
  line-height: 1.4;
}

.dv-notif-value {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-green-dark);
  margin-top: 4px;
}

/* Second notification - different position, delayed */
.dv-phone-notif-2 {
  position: absolute;
  right: -40px;
  top: 160px;
  width: 180px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  border: 1px solid rgba(22,163,74,0.12);
  z-index: 8;
  animation: dv-notif-in 0.5s ease 3s both, dv-notif-float 4s ease-in-out 3.5s infinite;
}

/* ── 3. STATS BAR ─────────────────────────────────────────────────── */
.dv-stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-12) 0;
}

.dv-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.dv-stats-item {
  text-align: center;
  flex: 1;
  padding: 0 var(--sp-8);
  position: relative;
}

.dv-stats-item + .dv-stats-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.dv-stats-value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 600;
  color: var(--c-green);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.dv-stats-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── 4. SECTIONS COMMON ───────────────────────────────────────────── */
.dv-section {
  padding: var(--sp-24) 0;
}

.dv-section-alt {
  background: var(--bg-2);
}

.dv-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--sp-16);
}

.dv-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green-dark);
  padding: 5px 12px;
  background: var(--c-green-subtle);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
}

.dv-section-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-green);
}

.dv-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: var(--sp-5);
}

.dv-section-title em {
  font-style: normal;
  color: var(--c-green);
}

.dv-section-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── 5. PAIN POINTS ───────────────────────────────────────────────── */
.dv-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-16);
}

.dv-pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(220,38,38,0.3);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: var(--t-base);
}

.dv-pain-card:hover {
  border-left-color: rgba(220,38,38,0.7);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.dv-pain-icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-3);
  line-height: 1;
}

.dv-pain-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}

.dv-pain-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── 6. MARKET OPPORTUNITY ────────────────────────────────────────── */
.dv-market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.dv-market-content {}

.dv-market-stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.dv-market-item {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}

.dv-market-item-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-green);
  letter-spacing: -0.02em;
  min-width: 90px;
  line-height: 1.1;
}

.dv-market-item-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 2px;
}

.dv-market-item-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

/* Opportunity visual */
.dv-market-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
}

.dv-chart-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-6);
}

.dv-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-3);
  height: 160px;
}

.dv-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  height: 100%;
  justify-content: flex-end;
}

.dv-bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.dv-bar::after {
  content: attr(data-value);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.dv-bar-yr {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
}

.dv-chart-legend {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
  flex-wrap: wrap;
}

.dv-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.dv-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

/* ── 7. SOLUTION / FEATURES ───────────────────────────────────────── */
.dv-solution-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  margin-bottom: var(--sp-16);
}

.dv-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.dv-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}

.dv-feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-green), var(--c-green-light));
  opacity: 0;
  transition: var(--t-base);
}

.dv-feature-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.dv-feature-card:hover::before {
  opacity: 1;
}

.dv-feature-icon {
  font-size: 1.75rem;
  margin-bottom: var(--sp-3);
  line-height: 1;
}

.dv-feature-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}

.dv-feature-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── 8. O QUE ESTÁ INCLUSO ────────────────────────────────────────── */
.dv-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.dv-include-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}

.dv-include-group-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-green-dark);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.dv-include-group-title::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--c-green);
  border-radius: 2px;
}

.dv-include-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.dv-include-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.dv-include-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-green-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dv-include-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--c-green-dark);
  stroke-width: 2.5;
}

/* ── 9. COMO FUNCIONA — TIMELINE ─────────────────────────────────── */
.dv-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.dv-timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-green), var(--c-green-muted));
}

.dv-timeline-step {
  display: flex;
  gap: var(--sp-8);
  position: relative;
  padding-bottom: var(--sp-10);
  align-items: flex-start;
}

.dv-timeline-step:last-child {
  padding-bottom: 0;
}

.dv-timeline-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-green);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(22,163,74,0.3);
  position: relative;
  z-index: 1;
}

.dv-timeline-content {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-8);
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
}

.dv-timeline-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.dv-timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.dv-timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--c-green-dark);
  background: var(--c-green-subtle);
  padding: 3px 8px;
  border-radius: var(--r-full);
  margin-top: var(--sp-3);
}

/* ── 10. PERSONALIZAÇÃO ───────────────────────────────────────────── */
.dv-custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.dv-custom-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

.dv-custom-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.dv-custom-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--c-green-subtle);
  border: 1px solid rgba(22,163,74,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dv-custom-text-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.dv-custom-text-sub {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Brand preview mockup */
.dv-brand-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dv-brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 360px;
}

.dv-brand-header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}

.dv-brand-logo-mock {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.dv-brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.dv-brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dv-brand-row {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.dv-brand-chip {
  flex: 1;
  height: 32px;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.7rem;
  color: var(--text-muted);
  gap: 6px;
}

.dv-brand-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ── 11. PRICING ──────────────────────────────────────────────────── */
.dv-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  max-width: 860px;
  margin: 0 auto var(--sp-10);
}

.dv-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  position: relative;
  transition: var(--t-base);
}

.dv-price-card.featured {
  border-color: var(--c-green);
  box-shadow: 0 0 0 1px var(--c-green), var(--shadow-xl);
}

.dv-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-green);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.dv-price-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}

.dv-price-value {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--c-green);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.dv-price-prefix {
  font-size: 1.25rem;
  font-weight: 500;
  vertical-align: top;
  line-height: 1.8;
}

.dv-price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}

.dv-price-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

.dv-price-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.dv-price-feat {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.dv-price-feat::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-green-muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='3'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.dv-pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.dv-pricing-total {
  text-align: center;
  background: var(--c-green-subtle);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-8);
  max-width: 500px;
  margin: var(--sp-8) auto 0;
}

.dv-pricing-total-text {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.dv-pricing-total-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-green-dark);
}

/* ── 12. VIDEO ────────────────────────────────────────────────────── */
.dv-video-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-3);
  aspect-ratio: 16/9;
}

.dv-video-wrap iframe,
.dv-video-wrap video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.dv-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  cursor: pointer;
}

.dv-video-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(22,163,74,0.15), 0 0 0 24px rgba(22,163,74,0.07);
  transition: var(--t-base);
}

.dv-video-play svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  margin-left: 4px;
}

.dv-video-placeholder:hover .dv-video-play {
  background: var(--c-green-dark);
  transform: scale(1.08);
}

.dv-video-placeholder-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* ── 13. TESTIMONIALS ─────────────────────────────────────────────── */
.dv-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.dv-testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: var(--t-base);
}

.dv-testi-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.dv-testi-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.875rem;
}

.dv-testi-quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
  font-style: italic;
}

.dv-testi-quote::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--c-green-muted);
  line-height: 0.5;
  display: block;
  margin-bottom: var(--sp-3);
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--c-green);
  opacity: 0.4;
}

.dv-testi-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

.dv-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-green-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-green-dark);
  flex-shrink: 0;
  overflow: hidden;
}

.dv-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dv-testi-name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dv-testi-meta {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* ── 14. FAQ ──────────────────────────────────────────────────────── */
.dv-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.dv-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t-base);
}

.dv-faq-item.open {
  border-color: var(--border-active);
  box-shadow: var(--shadow-sm);
}

.dv-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  user-select: none;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--t-fast);
}

.dv-faq-q:hover {
  color: var(--c-green-dark);
}

.dv-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t-base);
}

.dv-faq-item.open .dv-faq-icon {
  background: var(--c-green-muted);
  transform: rotate(45deg);
}

.dv-faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-secondary);
  stroke-width: 2;
}

.dv-faq-item.open .dv-faq-icon svg {
  stroke: var(--c-green-dark);
}

.dv-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dv-faq-item.open .dv-faq-a {
  max-height: 300px;
}

.dv-faq-a-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-4);
}

/* ── 15. CONTACT FORM ─────────────────────────────────────────────── */
.dv-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.dv-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.dv-form-group.full {
  grid-column: 1 / -1;
}

.dv-form-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dv-form-label span {
  color: var(--c-green);
}

.dv-form-input,
.dv-form-select,
.dv-form-textarea {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--t-fast);
  font-family: var(--font-body);
}

.dv-form-input::placeholder,
.dv-form-textarea::placeholder {
  color: var(--text-muted);
}

.dv-form-input:focus,
.dv-form-select:focus,
.dv-form-textarea:focus {
  outline: none;
  border-color: var(--c-green);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}

.dv-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.dv-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  width: 100%;
  padding: 16px;
  background: var(--c-green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(22,163,74,0.3);
  transition: var(--t-base);
}

.dv-form-submit:hover {
  background: var(--c-green-dark);
  box-shadow: 0 8px 32px rgba(22,163,74,0.4);
  transform: translateY(-2px);
}

.dv-form-success,
.dv-form-error {
  display: none;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: var(--sp-4);
}

.dv-form-success {
  background: var(--c-green-subtle);
  color: var(--c-green-dark);
  border: 1px solid rgba(22,163,74,0.2);
}

.dv-form-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid rgba(220,38,38,0.2);
}

/* ── 16. CTA FINAL ────────────────────────────────────────────────── */
.dv-cta-section {
  background: linear-gradient(140deg, #16A34A 0%, #15803D 100%);
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}

.dv-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.dv-cta-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.dv-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.dv-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-6);
}

.dv-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: var(--sp-6);
}

.dv-cta-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: var(--sp-10);
}

.dv-cta-actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

.dv-btn-white {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  background: #fff;
  color: var(--c-green-dark);
  border-radius: var(--r-full);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: var(--t-base);
  white-space: nowrap;
}

.dv-btn-white:hover {
  background: #f0fdf4;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.dv-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--r-full);
  transition: var(--t-base);
  white-space: nowrap;
}

.dv-btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}

.dv-cta-note {
  margin-top: var(--sp-8);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* ── 17. Scroll reveal ────────────────────────────────────────────── */
.dv-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.dv-reveal.dv-visible {
  opacity: 1;
  transform: none;
}

.dv-reveal-delay-1 { transition-delay: 0.1s; }
.dv-reveal-delay-2 { transition-delay: 0.2s; }
.dv-reveal-delay-3 { transition-delay: 0.3s; }
.dv-reveal-delay-4 { transition-delay: 0.4s; }

/* ── 18. RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dv-hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    text-align: center;
    padding: var(--sp-16) 0;
  }

  .dv-hero-sub { max-width: none; }
  .dv-hero-actions { justify-content: center; }
  .dv-hero-trust { justify-content: center; }

  .dv-hero-visual {
    height: 420px;
    order: -1;
  }

  .dv-laptop { width: 300px; }
  .dv-phone { width: 150px; left: 40px; }

  .dv-pain-grid { grid-template-columns: repeat(2, 1fr); }
  .dv-features-grid { grid-template-columns: repeat(2, 1fr); }
  .dv-market-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .dv-custom-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .dv-testimonials-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
}

@media (max-width: 768px) {
  .dv-hero-visual { display: none; }

  .dv-stats-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-5);
  }

  .dv-stats-item + .dv-stats-item::before { display: none; }
  .dv-stats-item { text-align: left; padding: 0; }

  .dv-pain-grid { grid-template-columns: 1fr; }
  .dv-features-grid { grid-template-columns: 1fr 1fr; }
  .dv-includes-grid { grid-template-columns: 1fr; }
  .dv-pricing-grid { grid-template-columns: 1fr; }
  .dv-form-grid { grid-template-columns: 1fr; }

  .dv-timeline::before { left: 24px; }
  .dv-timeline-num { width: 48px; height: 48px; font-size: 0.9rem; }

  .dv-section { padding: var(--sp-16) 0; }
  .dv-cta-section { padding: var(--sp-16) 0; }
}

@media (max-width: 480px) {
  .dv-features-grid { grid-template-columns: 1fr; }
  .dv-hero-actions { flex-direction: column; }
  .dv-cta-actions { flex-direction: column; align-items: center; }
  .dv-btn-primary,
  .dv-btn-white,
  .dv-btn-outline,
  .dv-btn-outline-white { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .dv-float, .dv-float-slow,
  .dv-phone, .dv-laptop,
  .dv-phone-notif, .dv-phone-notif-2,
  .dv-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
