/* ═══════════════════════════════════════════════════════════
   RYD — Site oficial
   Paleta: branco + laranja (#FF6A00) + grafite (#1E1E22)
   ═══════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Provicali';
  src: url('/fonts/Provicali.otf') format('opentype');
  font-display: swap;
  font-weight: normal;
}

.brand-ryd { font-family: 'Provicali', 'Inter', sans-serif; }

:root {
  --orange: #FF6A00;
  --orange-light: #FF8533;
  --orange-dark: #E85D00;
  --orange-soft: rgba(255, 106, 0, 0.08);
  --orange-border: rgba(255, 106, 0, 0.2);

  --black: #0A0A0A;
  --graphite: #1E1E22;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;
  --bg-soft:  #F5F7FA;
  --white:    #FFFFFF;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow:    0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.12);
  --shadow-orange: 0 12px 32px rgba(255, 106, 0, 0.25);

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px; font-weight: 400;
  color: var(--graphite);
  background: var(--white);
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

ul, ol { list-style: none; }

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

/* ═══ Tipografia ═══ */
h1, h2, h3, h4 {
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--graphite);
}
h1 { font-size: clamp(36px, 5.2vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 1.8vw, 24px); }
h4 { font-size: 16px; }
p  { color: var(--gray-600); line-height: 1.65; }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--orange); text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: clamp(15px, 1.2vw, 17px); color: var(--gray-600);
  max-width: 640px; line-height: 1.65;
}

/* ═══ Botões ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark); color: var(--white);
  transform: translateY(-1px); box-shadow: 0 16px 40px rgba(255, 106, 0, 0.3);
}
.btn-secondary {
  background: var(--graphite); color: var(--white);
}
.btn-secondary:hover { background: var(--gray-800); color: var(--white); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--graphite);
  border: 1px solid var(--gray-200);
}
.btn-ghost:hover { background: var(--gray-50); color: var(--graphite); border-color: var(--gray-300); }
.btn-orange-ghost {
  background: transparent; color: var(--orange);
  border: 1px solid var(--orange-border);
}
.btn-orange-ghost:hover { background: var(--orange-soft); color: var(--orange); }
.btn-white {
  background: var(--white); color: var(--graphite);
  box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--gray-50); color: var(--graphite); }

/* ═══ Header ═══ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.header.scrolled {
  border-bottom-color: var(--gray-200);
  background: rgba(255, 255, 255, 0.95);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--container); margin: 0 auto;
  gap: 32px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 36px; width: auto; }
.nav { display: flex; gap: 4px; }
.nav a {
  padding: 8px 14px; border-radius: 6px;
  font-size: 14px; font-weight: 500; color: var(--gray-700);
}
.nav a:hover { color: var(--orange); background: var(--orange-soft); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { padding: 10px 20px; font-size: 13px; }
.header-link-driver {
  font-size: 13px; font-weight: 500; color: var(--gray-600);
  padding: 8px 12px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s, background .2s;
}
.header-link-driver::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); display: inline-block;
}
.header-link-driver:hover { color: var(--orange); background: var(--orange-soft); }

.menu-toggle {
  display: none; padding: 10px; border-radius: 6px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--graphite); margin: 4px 0;
  transition: all .2s;
}

@media (max-width: 980px) {
  .nav, .header-actions .btn-ghost, .header-link-driver { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { gap: 12px; }
}

/* ═══ Hero ═══ */
.hero {
  position: relative; padding: 140px 0 80px;
  background: linear-gradient(180deg, #FFFAF5 0%, #FFFFFF 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.15), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -100px; left: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.08), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--gray-200);
  font-size: 13px; font-weight: 600; color: var(--gray-700);
  margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.hero-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); position: relative;
}
.hero-tag .pulse::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%; background: var(--orange);
  opacity: 0.3; animation: pulse-anim 1.5s infinite;
}
@keyframes pulse-anim { 0%, 100% { transform: scale(0.8); opacity: 0; } 50% { transform: scale(1.6); opacity: 0.4; } }

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--orange); }
.hero p {
  font-size: clamp(15px, 1.2vw, 18px); color: var(--gray-600);
  margin-bottom: 32px; max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual — dashboard mockup */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 540px;
  margin-left: auto;
}
.hero-card {
  position: absolute;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 16px 18px;
  border: 1px solid var(--gray-100);
}
.hero-card-main {
  inset: 0;
  background: linear-gradient(135deg, var(--graphite), #2a2a30);
  color: var(--white); padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 16px;
  overflow: hidden;
}
.hero-card-main::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse, rgba(255, 106, 0, 0.3), transparent 70%);
  pointer-events: none;
}
.hero-card-main .label {
  font-size: 11px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}
.hero-card-main .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-card-main .stat-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 12px; border-radius: 10px;
}
.hero-card-main .stat-item .num {
  font-size: 22px; font-weight: 800; color: var(--white);
}
.hero-card-main .stat-item .lbl {
  font-size: 10px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.hero-card-main .map-area {
  flex: 1; min-height: 200px; position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  background-image: radial-gradient(circle at 30% 40%, rgba(255, 106, 0, 0.5) 1px, transparent 2px),
                    radial-gradient(circle at 70% 30%, rgba(255, 106, 0, 0.4) 1px, transparent 2px),
                    radial-gradient(circle at 50% 60%, rgba(255, 106, 0, 0.6) 1px, transparent 2px),
                    radial-gradient(circle at 25% 75%, rgba(255, 106, 0, 0.3) 1px, transparent 2px),
                    radial-gradient(circle at 80% 70%, rgba(255, 106, 0, 0.5) 1px, transparent 2px);
  background-size: 100% 100%;
  display: flex; align-items: flex-end; padding: 12px;
}
.hero-card-main .map-area::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.05), transparent 70%);
  pointer-events: none;
}
.hero-card-main .map-pin {
  position: absolute; width: 12px; height: 12px;
  border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 20px var(--orange);
  animation: pin-pulse 2s ease-in-out infinite;
}
.hero-card-main .map-pin:nth-child(1) { top: 30%; left: 25%; animation-delay: 0s; }
.hero-card-main .map-pin:nth-child(2) { top: 50%; left: 60%; animation-delay: 0.3s; }
.hero-card-main .map-pin:nth-child(3) { top: 70%; left: 35%; animation-delay: 0.6s; }
.hero-card-main .map-pin:nth-child(4) { top: 40%; left: 80%; animation-delay: 0.9s; }
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7); }
  50%      { box-shadow: 0 0 0 10px rgba(255, 106, 0, 0); }
}

/* Floating badges */
.hero-badge-floating {
  position: absolute; padding: 12px 16px;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; color: var(--graphite);
  animation: float 4s ease-in-out infinite;
}
.hero-badge-floating .ico {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--orange-soft); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hero-badge-floating .small { font-size: 11px; color: var(--gray-500); font-weight: 500; }
.hero-badge-1 { top: 12%; left: -24px; animation-delay: 0s; }
.hero-badge-2 { bottom: 18%; right: -32px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .hero { padding: 110px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  /* hero-visual precisa de largura explícita pq todos os filhos são absolute (sem ela colapsa pra 0) */
  .hero-visual { max-width: 100%; width: 100%; margin-left: 0; }
  /* Reposiciona os badges flutuantes pra ficarem dentro da viewport mobile */
  .hero-badge-1 { top: 4%; left: 12px; }
  .hero-badge-2 { bottom: 10%; right: 12px; }
}
@media (max-width: 480px) {
  .hero-badge-floating { padding: 10px 14px; font-size: 13px; }
  .hero-badge-floating .ico { width: 32px; height: 32px; font-size: 16px; }
}

/* ═══ Trust bar (stats) ═══ */
.trust {
  background: var(--white); padding: 60px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-text {
  text-align: center; font-size: 13px; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600;
  margin-bottom: 36px;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.trust-item { text-align: center; }
.trust-item .num {
  font-size: clamp(28px, 3vw, 38px); font-weight: 800;
  color: var(--orange); letter-spacing: -0.02em;
  font-feature-settings: 'tnum';
}
.trust-item .lbl {
  font-size: 13px; color: var(--gray-600); font-weight: 500;
  margin-top: 4px;
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px 16px; }
  .trust-item:nth-child(n+4) { grid-column: span 1; }
}

/* ═══ Section base ═══ */
section.padding {
  padding: 100px 0;
}
section.bg-soft { background: var(--bg-soft); }
section.bg-white { background: var(--white); }
.section-head {
  text-align: center; max-width: 720px; margin: 0 auto 60px;
}
.section-head .section-subtitle { margin: 0 auto; }

@media (max-width: 720px) { section.padding { padding: 70px 0; } }

/* ═══ Cards (genéricos) ═══ */
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all .25s; height: 100%;
}
.card:hover {
  border-color: var(--orange-border); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--orange-soft); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 8px;
}
.card p { font-size: 14px; line-height: 1.6; }

/* Por que a RYD — 4 colunas */
.grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

/* Segmentos */
.segments {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.segment {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all .25s; position: relative; overflow: hidden;
}
.segment::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--orange-soft));
  opacity: 0; transition: opacity .3s;
}
.segment:hover::before { opacity: 1; }
.segment:hover { transform: translateY(-4px); border-color: var(--orange-border); box-shadow: var(--shadow-lg); }
.segment > * { position: relative; z-index: 1; }
.segment-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
  box-shadow: var(--shadow-orange);
}
.segment h3 {
  font-size: 19px; font-weight: 700; margin-bottom: 8px;
  color: var(--graphite);
}
.segment p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.segment .arrow {
  font-size: 14px; font-weight: 600; color: var(--orange);
  display: inline-flex; align-items: center; gap: 4px;
}
@media (max-width: 980px) { .segments { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .segments { grid-template-columns: 1fr; } }

/* Produtos — grid 3x2 */
.products {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all .25s; position: relative;
}
.product:hover { border-color: var(--orange-border); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.product .product-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.product h3 {
  font-size: 22px; font-weight: 800; margin-bottom: 8px;
  color: var(--graphite);
}
.product p { font-size: 14px; line-height: 1.6; }
@media (max-width: 980px) { .products { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .products { grid-template-columns: 1fr; } }

/* ═══ Torre de controle ═══ */
.tower {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.tower-text { padding-right: 24px; }
.tower-text ul {
  margin-top: 24px; display: grid; gap: 12px;
}
.tower-text li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--graphite); font-weight: 500;
}
.tower-text li::before {
  content: '✓'; width: 22px; height: 22px; flex-shrink: 0;
  background: var(--orange-soft); color: var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
}
.tower-mock {
  background: var(--graphite); border-radius: var(--radius-xl);
  padding: 24px; box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.tower-mock::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 80%; height: 100%;
  background: radial-gradient(ellipse, rgba(255, 106, 0, 0.15), transparent 70%);
  pointer-events: none;
}
.tower-mock-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
}
.tower-mock-header .title { font-size: 14px; font-weight: 700; }
.tower-mock-header .live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: #4ADE80; font-weight: 600;
}
.tower-mock-header .live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80; animation: pulse-anim 1.2s infinite;
}
.tower-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px; margin-bottom: 16px;
}
.tower-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 12px; border-radius: 10px;
}
.tower-stat .n { color: var(--white); font-size: 20px; font-weight: 800; font-feature-settings: 'tnum'; }
.tower-stat .l { color: rgba(255,255,255,0.5); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.tower-bars {
  display: grid; gap: 8px; padding-top: 8px;
}
.tower-bar {
  display: grid; grid-template-columns: 80px 1fr 40px;
  gap: 12px; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.7);
}
.tower-bar .bar-track {
  height: 6px; background: rgba(255,255,255,0.06);
  border-radius: 3px; overflow: hidden;
}
.tower-bar .bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px;
}
.tower-bar .v { color: var(--white); font-weight: 700; text-align: right; }

@media (max-width: 980px) {
  .tower { grid-template-columns: 1fr; gap: 40px; }
  .tower-text { padding-right: 0; }
}

/* ═══ CRM + IA ═══ */
.crm-ai {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.crm-mock {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.crm-tabs {
  display: flex; padding: 12px 16px; gap: 4px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.crm-tabs .tab {
  padding: 6px 12px; font-size: 12px; font-weight: 600;
  color: var(--gray-500); border-radius: 6px;
}
.crm-tabs .tab.active { background: var(--white); color: var(--orange); box-shadow: var(--shadow-sm); }
.crm-msg-list { padding: 12px; display: grid; gap: 8px; }
.crm-msg {
  display: flex; gap: 12px; padding: 12px; border-radius: 10px;
  background: var(--gray-50); align-items: flex-start;
}
.crm-msg.active { background: var(--orange-soft); border: 1px solid var(--orange-border); }
.crm-msg .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.crm-msg .body { flex: 1; min-width: 0; }
.crm-msg .name {
  font-size: 13px; font-weight: 700; color: var(--graphite);
  display: flex; justify-content: space-between; gap: 8px;
}
.crm-msg .name .time { color: var(--gray-400); font-weight: 500; font-size: 11px; }
.crm-msg .preview {
  font-size: 12px; color: var(--gray-500);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 2px;
}
.crm-msg .badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  background: var(--orange-soft); color: var(--orange);
  padding: 2px 6px; border-radius: 4px; margin-top: 4px;
}

.crm-quote {
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 700;
  color: var(--graphite); line-height: 1.4; margin-top: 32px;
}
.crm-quote span { color: var(--orange); }

@media (max-width: 980px) {
  .crm-ai { grid-template-columns: 1fr; gap: 40px; }
  .crm-ai > div:first-child { order: 2; }
}

/* ═══ API section ═══ */
.api-section {
  background: var(--graphite); color: var(--white);
  padding: 100px 0; position: relative; overflow: hidden;
}
.api-section::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.15), transparent 60%);
  pointer-events: none;
}
.api-section h2 { color: var(--white); }
.api-section p  { color: rgba(255,255,255,0.65); }
.api-section .eyebrow { color: var(--orange-light); }

.api-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.api-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 32px;
}
.api-feat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 16px; border-radius: 10px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85);
}
.api-feat .ico { color: var(--orange); font-size: 16px; }

.api-code {
  background: #14141a; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 13px; line-height: 1.7;
  overflow: hidden;
}
.api-code .top {
  display: flex; gap: 6px; padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  align-items: center;
}
.api-code .top .dot {
  width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.15);
}
.api-code .top .file { font-size: 12px; color: rgba(255,255,255,0.5); margin-left: auto; font-family: 'Inter'; }
.api-code pre { padding: 20px; color: rgba(255,255,255,0.85); margin: 0; overflow-x: auto; }
.api-code .k { color: #FF8533; }
.api-code .s { color: #86EFAC; }
.api-code .c { color: rgba(255,255,255,0.4); }
.api-code .n { color: #93C5FD; }

@media (max-width: 980px) { .api-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ═══ Comparação ═══ */
.compare-table {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head {
  background: var(--gray-50);
  font-weight: 700; font-size: 13px; color: var(--gray-700);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.compare-row.head .c-ryd {
  color: var(--orange);
}
.compare-cell {
  padding: 16px 20px; font-size: 14px; color: var(--graphite);
}
.compare-cell.center { text-align: center; }
.compare-cell.feature { font-weight: 600; }
.check-yes { color: #16A34A; font-size: 18px; font-weight: 700; }
.check-no  { color: var(--gray-400); font-size: 18px; }
.check-partial { color: #F59E0B; font-size: 13px; font-weight: 600; }

@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr; font-size: 13px; }
  .compare-cell { padding: 12px; font-size: 13px; }
}

/* ═══ Clientes ═══ */
.clients {
  text-align: center;
}
.clients-carousel {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: clients-scroll 40s linear infinite;
}
.clients-carousel:hover .clients-track { animation-play-state: paused; }
.client-logo {
  flex: 0 0 auto;
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.client-logo:hover { opacity: 1; filter: grayscale(0%); }
.client-logo img {
  max-height: 48px;
  max-width: 150px;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}
.client-logo-text {
  font-weight: 800; font-size: 22px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  padding: 0 8px;
}
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 32px)); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
}
@media (max-width: 720px) {
  .clients-track { gap: 40px; animation-duration: 30s; }
  .client-logo { height: 48px; }
  .client-logo img { max-height: 36px; max-width: 110px; }
  .client-logo-text { font-size: 18px; }
}

/* ═══ CTA Final ═══ */
/* ═══ Driver Section ═══ */
.driver-section {
  position: relative; overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #1A1A1F 0%, #2A1810 50%, #1A1A1F 100%);
}
.driver-section::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 106, 0, 0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255, 106, 0, 0.12), transparent 50%);
  pointer-events: none;
}
.driver-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
}
.eyebrow-light {
  color: var(--orange-light) !important;
  background: rgba(255, 106, 0, 0.12);
  padding: 6px 12px; border-radius: 6px;
  display: inline-block; width: fit-content;
}
.driver-perks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 36px;
}
.driver-perk {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.driver-perk .ico { font-size: 20px; flex-shrink: 0; }
.driver-perk strong {
  display: block; color: #fff; font-size: 14px;
  font-weight: 600; margin-bottom: 2px;
}
.driver-perk span {
  font-size: 12px; color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.driver-cta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px;
}
.btn-driver {
  background: var(--orange); color: #fff;
  padding: 14px 28px; font-size: 14px; font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(255,106,0,0.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-driver:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,106,0,0.45);
}
.btn-ghost-light {
  color: rgba(255,255,255,0.85); padding: 14px 22px;
  font-size: 13px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; transition: background .2s, border-color .2s;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
}

/* Driver Visual — foto real do entregador */
.driver-visual { position: relative; }
.driver-photo {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  background: #1F1F25;
  aspect-ratio: 1 / 1;
}
.driver-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.driver-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.driver-photo-stats {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; padding: 14px;
  background: rgba(20,20,24,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}
.driver-photo-stat { text-align: center; }
.driver-photo-stat .n {
  font-size: 18px; font-weight: 700; color: #fff;
  font-family: 'JetBrains Mono', monospace;
  display: flex; align-items: center; justify-content: center; gap: 2px;
}
.driver-photo-stat .l {
  font-size: 10px; color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-top: 4px;
}
.driver-photo-stat .star {
  font-size: 12px; color: var(--orange);
}
.driver-floating {
  position: absolute; bottom: -12px; left: -16px;
  background: #fff; border-radius: 12px;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.driver-floating .ico {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,106,0,0.12); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.driver-floating > div:last-child {
  font-size: 12px; font-weight: 600; color: var(--graphite);
}
.driver-floating .small {
  font-size: 11px; font-weight: 400; color: var(--gray-500);
  margin-top: 2px;
}

@media (max-width: 980px) {
  .driver-grid { grid-template-columns: 1fr; gap: 48px; }
  .driver-perks { grid-template-columns: 1fr; }
  .driver-floating { left: 12px; }
}

.cta-final {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 100px 0; color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 60%; height: 200%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
  pointer-events: none;
}
.cta-final h2 {
  color: var(--white); font-size: clamp(32px, 4vw, 48px);
  max-width: 720px; margin: 0 auto 16px;
}
.cta-final p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 560px; margin: 0 auto 36px;
}
.cta-final .btn-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-final .btn-white { color: var(--orange); }
.cta-final .btn-white:hover { color: var(--orange-dark); }
.cta-final .btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.cta-final .btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* ═══ Footer ═══ */
.footer {
  background: #0F0F12; color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 320px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  transition: color .2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 12px; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.05); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 14px;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }

@media (max-width: 1180px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══ Utility classes (extraídas dos inline styles) ═══ */

/* Hero card overlays */
.hero-card-head {
  display: flex; justify-content: space-between; align-items: center;
  color: #fff; position: relative; z-index: 1;
}
.hero-card-head .label-strong {
  font-size: 18px; font-weight: 700; margin-top: 4px;
}
.live-badge {
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; color: #4ADE80; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.live-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80; animation: pulse-anim 1.2s infinite;
}
.stat-grid.stacked { position: relative; z-index: 1; }
.unit {
  font-size: 14px; color: rgba(255,255,255,0.6);
}
.unit-sm {
  font-size: 12px;
}
.map-caption {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.6); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}

/* Section subtitle modifiers */
.section-subtitle.tight { margin-bottom: 8px; }
.section-subtitle.flush { margin-bottom: 0; }
.section-subtitle.centered { margin: 0 auto; }

/* Generic spacing modifier for buttons */
.btn.mt-32 { margin-top: 32px; }

/* CRM avatars colored variants */
.avatar.avatar-blue {
  background: linear-gradient(135deg, #3B82F6, #60A5FA);
}
.avatar.avatar-green {
  background: linear-gradient(135deg, #10B981, #34D399);
}
.badge.badge-green {
  background: rgba(16,185,129,0.1); color: #10B981;
}

/* CRM feature list */
.crm-feature-list {
  margin-top: 24px; display: grid; gap: 14px;
}
.crm-feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
}
.crm-feature-list .arrow {
  color: var(--orange); font-weight: 700; flex-shrink: 0;
}

/* Section title light variant */
.section-title.section-title-light { color: #fff; }

/* Driver section lead paragraph */
.driver-lead {
  color: rgba(255,255,255,0.75);
  font-size: 17px; line-height: 1.6;
  margin-top: 16px; max-width: 520px;
}
.driver-stat .star {
  font-size: 14px; color: var(--orange);
}

/* Footer brand social wrapper */
.footer-social-wrap { margin-top: 20px; }

/* ═══════════════════════════════════════════════════════════
   Responsividade unificada (tablet, mobile, small mobile)
   Breakpoints:
     ≥1281px  desktop / notebook grande
     ≤1280px  notebook
     ≤1024px  tablet
     ≤768px   mobile
     ≤480px   small mobile
   ═══════════════════════════════════════════════════════════ */

/* ── Notebook (≤1280px): containers e gaps proporcionais ── */
@media (max-width: 1280px) {
  :root { --container: 1100px; }
  .header-inner { gap: 24px; }
  .nav { gap: 2px; }
  .nav a { padding: 8px 10px; font-size: 13px; }
  .header-actions .btn { padding: 9px 16px; }
  .hero-inner, .tower, .crm-ai, .api-grid, .driver-grid {
    gap: 48px;
  }
  .container { padding: 0 28px; }
}

/* ── Tablet (≤1024px): grids 2 colunas, header compacto ── */
@media (max-width: 1024px) {
  :root { --container: 100%; }
  .container { padding: 0 24px; }
  .header-inner { padding: 14px 20px; }

  /* No tablet, mantemos 2 colunas onde fizer sentido */
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .segments { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }

  /* Hero/tower/crm/api/driver: 1 coluna */
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding: 120px 0 60px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-badge-1, .hero-badge-2 { display: none; }
  .tower { grid-template-columns: 1fr; gap: 40px; }
  .tower-text { padding-right: 0; }
  .crm-ai { grid-template-columns: 1fr; gap: 40px; }
  .crm-ai > div:first-child { order: 2; }
  .api-grid { grid-template-columns: 1fr; gap: 40px; }
  .driver-grid { grid-template-columns: 1fr; gap: 48px; }
  .driver-perks { grid-template-columns: repeat(2, 1fr); }

  /* Header: nav some, hamburguer aparece */
  .nav, .header-actions .btn-ghost, .header-link-driver { display: none; }
  .menu-toggle { display: flex; }

  /* Drawer mobile (.nav.open) */
  .nav.open {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 8px 16px 16px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 99;
    animation: nav-slide-in .2s ease-out;
  }
  .nav.open a {
    padding: 14px 12px;
    font-size: 16px;
    border-radius: 8px;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav.open a:last-child { border-bottom: none; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

@keyframes nav-slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Mobile (≤768px): tudo em coluna única, padding menor ── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 12px 16px; }
  .logo img { height: 30px; }

  .grid-4 { grid-template-columns: 1fr; gap: 14px; }
  .segments { grid-template-columns: 1fr; gap: 14px; }
  .products { grid-template-columns: 1fr; gap: 14px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }

  /* Section padding menor */
  section.padding { padding: 64px 0; }
  .driver-section, .api-section, .cta-final { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  /* Hero ajustes */
  .hero { padding: 100px 0 48px; }
  .hero-inner { gap: 40px; }
  .hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .hero p { font-size: 15px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-visual { max-width: 100%; }

  /* Driver perks */
  .driver-perks { grid-template-columns: 1fr; gap: 12px; }
  .driver-floating { left: 12px; bottom: -8px; }
  .driver-cta { flex-direction: column; }
  .driver-cta .btn-driver,
  .driver-cta .btn-ghost-light { width: 100%; text-align: center; justify-content: center; }

  /* Compare table — colunas mais apertadas */
  .compare-row { grid-template-columns: 1.4fr 1fr 1fr; }
  .compare-cell { padding: 10px 8px; font-size: 12px; }
  .compare-row.head { font-size: 11px; }

  /* API code: rolagem horizontal ao invés de overflow */
  .api-code pre { padding: 14px; font-size: 12px; }
  .api-features { grid-template-columns: 1fr; }

  /* Tower mock: header e bars compactos */
  .tower-mock { padding: 16px; }
  .tower-bar { grid-template-columns: 64px 1fr 36px; gap: 8px; }

  /* CTA final */
  .cta-final h2 { font-size: clamp(26px, 7vw, 36px); }
  .cta-final .btn-cta { flex-direction: column; align-items: stretch; }
  .cta-final .btn-cta .btn { width: 100%; justify-content: center; }

  /* Footer bottom: empilha social e copyright */
  .footer { padding: 56px 0 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 16px; }

  /* Botões: garantir altura mínima de 44px (touch target) */
  .btn { padding: 13px 22px; min-height: 44px; }

  /* Driver photo stats: fonte menor pra caber */
  .driver-photo-stat .n { font-size: 16px; }
  .driver-photo-stat .l { font-size: 9px; }
  .driver-photo-stats { padding: 12px; gap: 6px; }
}

/* ── Small mobile (≤480px): última camada de aperto ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 12px 12px; gap: 8px; }
  .header-actions { gap: 6px; }
  .header-actions .btn { padding: 9px 14px; font-size: 12px; }
  .logo img { height: 28px; }

  /* Trust grid em 2 colunas pra evitar números espremidos */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px 12px; }

  /* Footer em 1 coluna no mini */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Hero h1 mais ajustado */
  .hero { padding: 90px 0 40px; }
  .hero h1 { font-size: clamp(28px, 9vw, 40px); }

  /* Section title menor */
  section.padding { padding: 56px 0; }
  .section-title { font-size: clamp(24px, 7vw, 32px); }

  /* Compare table: stack pra evitar squish */
  .compare-row { grid-template-columns: 1fr; gap: 0; padding: 12px 0; }
  .compare-row.head { display: none; }
  .compare-cell { padding: 6px 16px; }
  .compare-cell.feature { font-weight: 700; padding-top: 12px; padding-bottom: 6px; }
  .compare-cell.center { text-align: left; padding: 4px 16px; font-size: 13px; }
  .compare-cell.center::before {
    content: attr(data-col) ": ";
    font-size: 11px; color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.05em;
    font-weight: 700; margin-right: 6px;
  }

  /* Driver photo stats: sem grid, vira linha vertical */
  .driver-photo-stats {
    grid-template-columns: 1fr; gap: 4px;
    left: 12px; right: 12px; bottom: 12px;
  }
  .driver-photo-stat { display: flex; align-items: center; justify-content: space-between; gap: 8px; text-align: left; }
  .driver-photo-stat .n { font-size: 14px; }
  .driver-photo-stat .l { margin-top: 0; }

  /* CTA final menor */
  .cta-final { padding: 56px 0; }

  /* Driver floating: esconder em mobile pra não sobrepor o card de stats */
  .driver-floating { display: none; }

  /* Stats card mais compacto */
  .driver-photo-stats {
    padding: 10px 12px;
    background: rgba(15,15,18,0.78);
  }
  .driver-photo-stat .l {
    font-size: 10px;
    text-align: right;
    line-height: 1.2;
    color: rgba(255,255,255,0.78);
  }
}

/* ── Landscape mobile (orientation refinement) ── */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { padding: 80px 0 32px; }
  section.padding { padding: 48px 0; }
}

/* ── Touch device polish ── */
@media (hover: none) and (pointer: coarse) {
  .card:hover, .segment:hover, .product:hover { transform: none; }
  .btn:hover { transform: none; }
}

/* ═══ Reveal animations ═══ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══ Páginas internas (sobre, crm, rastreamento, legal) ═══ */
.page-hero {
  padding: 140px 0 56px;
  background: linear-gradient(180deg, var(--orange-soft) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-100);
}
.page-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange); margin: 0 0 16px;
}
.page-title {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.1;
  color: var(--graphite); margin: 0 0 20px; max-width: 820px;
}
.page-lead {
  font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5;
  color: var(--gray-700); max-width: 720px; margin: 0;
}
.page-content { padding: 72px 0 96px; background: var(--white); }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-size: 28px; font-weight: 700; color: var(--graphite);
  margin: 48px 0 16px; line-height: 1.25;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 20px; font-weight: 700; color: var(--graphite);
  margin: 32px 0 12px;
}
.prose p {
  font-size: 16px; line-height: 1.7; color: var(--gray-700);
  margin: 0 0 16px;
}
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 24px; }
.prose li { font-size: 16px; line-height: 1.7; color: var(--gray-700); margin-bottom: 8px; }
.prose a { color: var(--orange); text-decoration: underline; }
.prose a:hover { color: var(--orange-light); }
.prose strong { color: var(--graphite); font-weight: 600; }
.prose hr { border: 0; border-top: 1px solid var(--gray-200); margin: 40px 0; }
.prose .note {
  background: var(--orange-soft); border-left: 3px solid var(--orange);
  padding: 16px 20px; border-radius: 6px; margin: 24px 0;
  font-size: 15px; color: var(--gray-700);
}
.prose .meta {
  font-size: 13px; color: var(--gray-500); margin-bottom: 32px;
  padding-bottom: 16px; border-bottom: 1px solid var(--gray-100);
}

.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; margin: 32px 0 48px;
}
.stat-card {
  background: var(--gray-50); border-radius: 12px; padding: 24px;
  text-align: center;
}
.stat-card .num {
  font-size: 36px; font-weight: 800; color: var(--orange); line-height: 1;
}
.stat-card .label {
  font-size: 13px; font-weight: 600; color: var(--gray-700);
  text-transform: uppercase; letter-spacing: .05em; margin-top: 8px;
}

.feature-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin: 24px 0 32px; list-style: none; padding: 0;
}
.feature-list li {
  background: var(--gray-50); border-radius: 10px; padding: 20px;
  border-left: 3px solid var(--orange); margin: 0;
}
.feature-list li strong { display: block; margin-bottom: 6px; color: var(--graphite); }
