/* =====================================================================
   ENTREGADORES LANDING PAGE — Estilos exclusivos
   Prefixo: .et- (evita conflitos com app.css e delivery.css)
   Tema visual: "Central de Operações / Dispatch Board"
   ===================================================================== */

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

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

/* Subtle dark grid — different from delivery page's green grid */
.et-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.et-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(22,163,74,0.04) 100%);
}

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

/* ── Hero Content ── */
.et-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  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);
}

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

@keyframes et-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

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

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

.et-hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--sp-10);
  max-width: 500px;
}

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

.et-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;
}

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

.et-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;
}

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

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

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

.et-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.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── HERO VISUAL: Dispatch Board ─────────────────────────────────── */
.et-hero-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ─ Main dispatch board (laptop-style dark panel) ─ */
.et-dispatch-board {
  position: relative;
  z-index: 2;
  background: #0d1623;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
  width: 420px;
  animation: et-float-slow 7s ease-in-out infinite;
}

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

/* Board top bar */
.et-board-topbar {
  background: #0a1120;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.et-board-dots {
  display: flex;
  gap: 5px;
}

.et-board-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.et-board-title {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.et-board-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--c-green-light);
}

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

/* Board content area: left=map, right=drivers */
.et-board-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* ─ Mini live map ─ */
.et-board-map {
  padding: 12px;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  min-height: 200px;
}

.et-map-title {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.et-map-canvas {
  position: relative;
  width: 100%;
  height: 160px;
  background-image:
    linear-gradient(rgba(22,163,74,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,163,74,0.07) 1px, transparent 1px);
  background-size: 18px 18px;
  border-radius: 8px;
  overflow: hidden;
}

/* Route line */
.et-map-route {
  position: absolute;
  background: none;
  border: 1.5px dashed rgba(22,163,74,0.3);
  pointer-events: none;
}

/* Driver dots on map */
.et-map-driver {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #0d1623;
}

.et-map-driver.av { background: #22c55e; animation: et-dot-move-1 8s ease-in-out infinite; }
.et-map-driver.rt { background: #f59e0b; animation: et-dot-move-2 6s ease-in-out infinite; }
.et-map-driver.rt2 { background: #f59e0b; animation: et-dot-move-3 9s ease-in-out infinite; }
.et-map-driver.oc { background: #ef4444; }

.et-map-driver.av::after,
.et-map-driver.rt::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.4;
  animation: et-ring 2s ease-out infinite;
}

.et-map-driver.av { color: #22c55e; }
.et-map-driver.rt { color: #f59e0b; }

@keyframes et-ring {
  0%   { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes et-dot-move-1 {
  0%, 100% { left: 20%; top: 30%; }
  33%       { left: 45%; top: 50%; }
  66%       { left: 60%; top: 25%; }
}

@keyframes et-dot-move-2 {
  0%, 100% { left: 65%; top: 60%; }
  50%       { left: 30%; top: 75%; }
}

@keyframes et-dot-move-3 {
  0%, 100% { left: 75%; top: 20%; }
  50%       { left: 50%; top: 45%; }
}

/* Pickup/dropoff pins */
.et-map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 1.5px solid #0d1623;
}

.et-map-pin.origin { background: var(--c-green); left: 15%; top: 20%; }
.et-map-pin.dest   { background: #ef4444;        right: 15%; bottom: 20%; }

.et-map-legend {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.et-map-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.48rem;
  color: rgba(255,255,255,0.4);
}

.et-map-legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* ─ Driver status grid ─ */
.et-board-drivers {
  padding: 12px;
}

.et-drivers-title {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.et-driver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.et-driver-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 7px;
  padding: 7px;
}

.et-driver-card-top {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.et-driver-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.et-driver-name {
  font-size: 0.52rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  line-height: 1.2;
}

.et-driver-status {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.45rem;
  font-family: var(--font-mono);
  font-weight: 600;
}

.et-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.s-av { color: #22c55e; }
.s-av .et-status-dot { background: #22c55e; }
.s-rt { color: #f59e0b; }
.s-rt .et-status-dot { background: #f59e0b; animation: et-blink 1.5s ease-in-out infinite; }
.s-oc { color: #ef4444; }
.s-oc .et-status-dot { background: #ef4444; }

.et-driver-meta {
  font-size: 0.44rem;
  color: rgba(255,255,255,0.3);
}

/* Board bottom bar — metrics */
.et-board-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.et-metric {
  padding: 8px 12px;
  border-right: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.et-metric:last-child { border-right: none; }

.et-metric-value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-green-light);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.et-metric-label {
  font-size: 0.44rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─ Driver phone (floating, smaller) ─ */
.et-driver-phone {
  position: absolute;
  left: -40px;
  bottom: 30px;
  width: 160px;
  z-index: 3;
  animation: et-float 5s ease-in-out infinite;
}

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

.et-phone-frame {
  background: #1a1f2e;
  border-radius: 26px;
  padding: 9px 7px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.07);
  position: relative;
}

.et-phone-notch {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 14px;
  background: #1a1f2e;
  border-radius: 7px;
  z-index: 10;
}

.et-phone-screen {
  background: #fff;
  border-radius: 19px;
  height: 290px;
  overflow: hidden;
}

/* Driver app header */
.et-app-header {
  background: #0f172a;
  padding: 18px 10px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.et-app-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.et-app-info { flex: 1; }

.et-app-name {
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.et-app-status {
  font-size: 0.45rem;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 3px;
}

.et-app-status.online { color: #22c55e; }
.et-app-status.online::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: et-blink 1.5s ease-in-out infinite;
}

.et-app-earn {
  text-align: right;
}

.et-app-earn-value {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--c-green-light);
}

.et-app-earn-label {
  font-size: 0.4rem;
  color: rgba(255,255,255,0.4);
}

/* Mini map in driver app */
.et-app-minimap {
  height: 80px;
  background: #e8f5e9;
  background-image:
    linear-gradient(rgba(22,163,74,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,163,74,0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.et-app-route-line {
  position: absolute;
  width: 60%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--c-green), #ef4444);
  border-radius: 2px;
}

.et-app-origin {
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-green);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(22,163,74,0.4);
}

.et-app-dest {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(239,68,68,0.4);
}

/* New ride request card */
.et-ride-request {
  margin: 8px;
  background: var(--c-green);
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  animation: et-ride-pulse 3s ease-in-out infinite;
}

@keyframes et-ride-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(22,163,74,0.4); }
  50%       { box-shadow: 0 8px 28px rgba(22,163,74,0.65); }
}

.et-ride-label {
  font-size: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 4px;
}

.et-ride-value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.et-ride-info {
  font-size: 0.48rem;
  opacity: 0.85;
  line-height: 1.5;
}

.et-ride-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 7px;
}

.et-ride-btn {
  padding: 6px;
  border-radius: 6px;
  font-size: 0.5rem;
  font-weight: 700;
  text-align: center;
}

.et-ride-btn.accept { background: #fff; color: var(--c-green-dark); }
.et-ride-btn.reject { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }

/* App footer */
.et-app-footer {
  display: flex;
  justify-content: space-around;
  padding: 8px;
  border-top: 1px solid var(--border);
  background: #fafafa;
}

.et-app-nav-icon {
  font-size: 1rem;
  opacity: 0.4;
}

.et-app-nav-icon.active { opacity: 1; }

/* ─ Live counter card (floating top-right) ─ */
.et-live-card {
  position: absolute;
  right: -20px;
  top: 40px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  border: 1px solid rgba(22,163,74,0.15);
  z-index: 4;
  min-width: 160px;
  animation: et-card-in 0.5s ease 1s both, et-float-card 5s ease-in-out 1.5s infinite;
}

@keyframes et-card-in {
  from { opacity: 0; transform: translateY(-12px) scale(0.95); }
  to   { opacity: 1; transform: none; }
}

@keyframes et-float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.et-live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.et-live-title {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.et-live-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--c-green-dark);
}

.et-live-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-green);
  animation: et-blink 1.5s ease-in-out infinite;
}

.et-live-stats {
  display: flex;
  gap: var(--sp-4);
}

.et-live-stat { text-align: center; }

.et-live-stat-value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-green);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.et-live-stat-label {
  font-size: 0.5rem;
  color: var(--text-muted);
  white-space: nowrap;
}

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

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

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

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

.et-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;
}

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

/* ── 4. SECTIONS COMMON ───────────────────────────────────────────── */
.et-section        { padding: var(--sp-24) 0; }
.et-section-alt    { background: var(--bg-2); }

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

.et-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  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);
}

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

.et-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);
}

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

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

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

.et-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);
}

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

.et-pain-icon { font-size: 1.5rem; margin-bottom: var(--sp-3); line-height: 1; }
.et-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; }
.et-pain-text  { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

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

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

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

.et-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: 80px;
  line-height: 1.1;
}

.et-market-item-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; padding-top: 2px; }
.et-market-item-text strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }

.et-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);
}

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

.et-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-3);
  height: 140px;
  margin-bottom: var(--sp-3);
}

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

.et-bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  position: relative;
}

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

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

.et-chart-source { font-size: 0.7rem; color: var(--text-muted); margin-top: var(--sp-3); }

/* ── 7. FEATURES GRID ─────────────────────────────────────────────── */
.et-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.et-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;
}

.et-feature-card::after {
  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);
}

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

.et-feature-icon { font-size: 1.75rem; margin-bottom: var(--sp-3); line-height: 1; }
.et-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; }
.et-feature-desc  { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }

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

.et-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);
}

.et-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);
}

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

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

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

.et-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;
}

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

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

.et-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));
}

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

.et-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;
}

.et-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;
}

.et-timeline-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--sp-2); }
.et-timeline-desc  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

.et-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 ───────────────────────────────────────────── */
.et-custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

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

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

.et-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;
}

.et-custom-text-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.et-custom-text-sub   { font-size: 0.825rem; color: var(--text-secondary); line-height: 1.5; }

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

.et-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);
}

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

.et-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;
}

.et-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); }

.et-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;
}

.et-price-prefix { font-size: 1.25rem; font-weight: 500; vertical-align: top; line-height: 1.8; }
.et-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); }
.et-price-desc   { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: var(--sp-6); line-height: 1.6; }

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

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

.et-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;
}

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

.et-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;
}

.et-pricing-total-text  { font-family: var(--font-display); font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 4px; }
.et-pricing-total-value { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--c-green-dark); }

/* ── 12. VIDEO ────────────────────────────────────────────────────── */
.et-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;
}

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

.et-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;
}

.et-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);
}

.et-video-play svg { width: 32px; height: 32px; fill: #fff; margin-left: 4px; }
.et-video-placeholder:hover .et-video-play { background: var(--c-green-dark); transform: scale(1.08); }
.et-video-placeholder-text { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.7); }

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

.et-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);
}

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

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

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

.et-testi-quote::before {
  content: '"';
  font-size: 2.5rem;
  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;
}

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

.et-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;
}

.et-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.et-testi-name { font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; color: var(--text-primary); }
.et-testi-meta { font-size: 0.775rem; color: var(--text-muted); }

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

.et-faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--t-base); }
.et-faq-item.open { border-color: var(--border-active); box-shadow: var(--shadow-sm); }

.et-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);
}

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

.et-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);
}

.et-faq-item.open .et-faq-icon { background: var(--c-green-muted); transform: rotate(45deg); }
.et-faq-icon svg { width: 14px; height: 14px; stroke: var(--text-secondary); stroke-width: 2; }
.et-faq-item.open .et-faq-icon svg { stroke: var(--c-green-dark); }

.et-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.et-faq-item.open .et-faq-a { max-height: 300px; }

.et-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. FORM ─────────────────────────────────────────────────────── */
.et-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.et-form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.et-form-group.full { grid-column: 1 / -1; }

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

.et-form-input, .et-form-select, .et-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);
}

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

.et-form-input:focus, .et-form-select:focus, .et-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);
}

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

.et-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);
}

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

.et-form-success, .et-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); }
.et-form-success { background: var(--c-green-subtle); color: var(--c-green-dark); border: 1px solid rgba(22,163,74,0.2); }
.et-form-error   { background: #fef2f2; color: #dc2626; border: 1px solid rgba(220,38,38,0.2); }

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

.et-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;
}

.et-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;
}

.et-cta-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.et-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); }
.et-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); }
.et-cta-sub   { font-size: 1.125rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: var(--sp-10); }

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

.et-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;
}

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

.et-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;
}

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

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

/* ── 17. Scroll reveal ────────────────────────────────────────────── */
.et-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.et-reveal.et-visible { opacity: 1; transform: none; }
.et-reveal-delay-1 { transition-delay: 0.1s; }
.et-reveal-delay-2 { transition-delay: 0.2s; }
.et-reveal-delay-3 { transition-delay: 0.3s; }

/* ── 18. RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .et-dispatch-board { width: 340px; }
  .et-hero-visual { height: 460px; }
}

@media (max-width: 1024px) {
  .et-hero-inner { grid-template-columns: 1fr; gap: var(--sp-12); text-align: center; padding: var(--sp-16) 0; }
  .et-hero-sub { max-width: none; }
  .et-hero-actions { justify-content: center; }
  .et-hero-trust { justify-content: center; }
  .et-hero-visual { height: 420px; order: -1; justify-content: center; }
  .et-dispatch-board { width: 320px; }
  .et-driver-phone { left: 0; }
  .et-pain-grid { grid-template-columns: repeat(2, 1fr); }
  .et-features-grid { grid-template-columns: repeat(2, 1fr); }
  .et-market-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .et-custom-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .et-testimonials-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
}

@media (max-width: 768px) {
  .et-hero-visual { display: none; }
  .et-stats-inner { flex-direction: column; align-items: flex-start; gap: var(--sp-5); }
  .et-stats-item + .et-stats-item::before { display: none; }
  .et-stats-item { text-align: left; padding: 0; }
  .et-pain-grid { grid-template-columns: 1fr; }
  .et-features-grid { grid-template-columns: 1fr 1fr; }
  .et-includes-grid { grid-template-columns: 1fr; }
  .et-pricing-grid { grid-template-columns: 1fr; }
  .et-form-grid { grid-template-columns: 1fr; }
  .et-timeline::before { left: 24px; }
  .et-timeline-num { width: 48px; height: 48px; font-size: 0.9rem; }
  .et-section { padding: var(--sp-16) 0; }
  .et-cta-section { padding: var(--sp-16) 0; }
}

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

@media (prefers-reduced-motion: reduce) {
  .et-dispatch-board, .et-driver-phone, .et-live-card,
  .et-map-driver, .et-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
