/* ================================================================
   ONVER FOOD — Landing Page Exclusiva do Entregador (/entregador)
   Design System Manrope | Cores: Azul Marinho, Laranja ONVER, Branco
   ================================================================ */

:root {
  --of-navy:        #0A192F;
  --of-navy-mid:    #102653;
  --of-navy-light:  #1C3A5E;
  --of-white:       #ffffff;
  --of-snow:        #f8fafc;
  --of-gray-50:     #f1f5f9;
  --of-gray-100:    #e2e8f0;
  --of-gray-200:    #cbd5e1;
  --of-gray-400:    #94a3b8;
  --of-gray-600:    #475569;
  --of-gray-800:    #1e293b;
  --of-blue:        #3B82F6;
  --of-blue-light:  #60A5FA;
  --of-blue-pale:   #EFF6FF;
  --of-orange:      #FF5C00;
  --of-orange-end:  #FF3D00;
  --of-orange-soft: #FFF4ED;
  --of-green:       #10B981;
  --of-green-soft:  #ECFDF5;
  --of-font:        'Manrope', system-ui, -apple-system, sans-serif;
  --of-max:         1400px;
  --of-gutter:      clamp(20px, 5vw, 80px);
  --of-section-pad: clamp(60px, 10vh, 110px);
  --of-radius:      16px;
  --of-radius-lg:   24px;
  --of-shadow-lg:   0 20px 60px rgba(10, 25, 47, 0.10);
  --of-shadow-xl:   0 32px 80px rgba(10, 25, 47, 0.14);
  --of-trans:       all 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--of-font);
  color: var(--of-navy);
  background: var(--of-snow);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Header ─────────────────────────────────────────── */
.courier-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: var(--of-trans);
}

.courier-header__inner {
  max-width: var(--of-max);
  margin: 0 auto;
  padding: 0 var(--of-gutter);
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.courier-header__brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px; color: var(--of-navy);
}
.courier-header__brand span { color: var(--of-orange); }

.courier-header__badge {
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  background: var(--of-navy); color: #fff;
  padding: 4px 10px; border-radius: 20px;
}

.courier-header__logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--of-orange), var(--of-orange-end));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900;
}

.courier-header__nav { display: flex; gap: 8px; align-items: center; }

.courier-header__link {
  padding: 8px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--of-gray-600);
  transition: var(--of-trans);
}
.courier-header__link:hover { background: var(--of-gray-100); color: var(--of-navy); }

.courier-header__btn {
  padding: 10px 20px; border-radius: 12px;
  font-size: 13px; font-weight: 700;
  background: var(--of-navy); color: #fff;
  transition: var(--of-trans);
}
.courier-header__btn:hover { background: var(--of-navy-mid); }

/* ── Hero ───────────────────────────────────────────── */
.courier-hero {
  padding-top: calc(72px + clamp(40px, 6vh, 80px));
  padding-bottom: clamp(60px, 8vh, 100px);
  position: relative;
  overflow: hidden;
}

.courier-hero__inner {
  max-width: var(--of-max);
  margin: 0 auto;
  padding: 0 var(--of-gutter);
  display: grid;
  grid-template-columns: 50fr 50fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.courier-hero__text { max-width: 580px; }

.courier-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--of-orange);
  margin-bottom: 20px;
}
.courier-eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--of-orange), var(--of-orange-end));
}

.courier-title {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--of-navy);
  margin-bottom: 22px;
}

.courier-subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--of-gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── Benefícios ─────────────────────────────────────── */
.courier-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-bottom: 40px;
}

.courier-benefit {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--of-gray-800);
}

.courier-benefit__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.courier-benefit__icon--orange { background: var(--of-orange-soft); color: var(--of-orange); }
.courier-benefit__icon--blue   { background: var(--of-blue-pale);   color: var(--of-blue); }
.courier-benefit__icon--green  { background: var(--of-green-soft);  color: var(--of-green); }

/* ── CTAs ───────────────────────────────────────────── */
.courier-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.courier-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 32px; border-radius: 16px;
  background: linear-gradient(135deg, var(--of-orange), var(--of-orange-end));
  color: var(--of-white);
  font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(255, 61, 0, 0.25);
  transition: var(--of-trans);
  cursor: pointer; border: none;
}
.courier-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 61, 0, 0.35);
}
.courier-btn-primary.is-disabled {
  opacity: 0.65; cursor: default;
}

.courier-btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 56px; padding: 0 24px; border-radius: 16px;
  background: transparent;
  color: var(--of-navy);
  font-size: 14px; font-weight: 600;
  border: 2px solid var(--of-gray-200);
  transition: var(--of-trans);
}
.courier-btn-secondary:hover { border-color: var(--of-navy); background: #fff; }

.courier-soon {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--of-gray-400);
}

/* ── Phone Visual ───────────────────────────────────── */
.courier-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}

.courier-phone {
  width: 290px;
  background: var(--of-navy);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--of-shadow-xl);
  position: relative;
  z-index: 2;
}

.courier-phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px; background: #0B121E;
  border-radius: 0 0 16px 16px; z-index: 3;
}

.courier-phone__screen {
  background: #0B121E;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  color: white;
  aspect-ratio: 9 / 19.5;
  font-size: 8px;
  display: flex; flex-direction: column;
}

/* App Dark Screen */
.courier-app-header {
  padding: 34px 14px 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.courier-app-header__greet { font-size: 8px; opacity: 0.7; }
.courier-app-header__name { font-size: 11px; font-weight: 800; }
.courier-app-header__bell { width: 22px; height: 22px; border-radius: 50%; background: #1C2D42; display: flex; align-items: center; justify-content: center; font-size: 10px; }

.courier-app-status {
  margin: 6px 10px;
  background: #13233F; border-radius: 12px;
  padding: 10px 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.courier-app-status__left { display: flex; align-items: center; gap: 8px; }
.courier-app-status__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--of-green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: pulse-green 2s infinite;
}
.courier-app-status__title { font-size: 9px; font-weight: 800; }
.courier-app-status__sub { font-size: 6px; opacity: 0.5; }
.courier-app-status__toggle {
  width: 38px; height: 20px; border-radius: 10px;
  background: var(--of-green); position: relative;
}
.courier-app-status__toggle::after {
  content: ''; position: absolute; top: 3px; right: 3px;
  width: 14px; height: 14px; border-radius: 50%; background: white;
}

.courier-app-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; padding: 4px 10px;
}
.courier-app-metric {
  background: #13233F; border-radius: 10px;
  padding: 8px; text-align: center;
}
.courier-app-metric__icon { font-size: 13px; margin-bottom: 2px; }
.courier-app-metric__val { font-size: 12px; font-weight: 800; }
.courier-app-metric__lbl { font-size: 5px; opacity: 0.5; font-weight: 700; }

.courier-app-offer {
  margin: 8px 10px;
  background: #13233F; border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(255,92,0,0.35);
}
.courier-app-offer__top { display: flex; justify-content: space-between; align-items: center; }
.courier-app-offer__tag {
  background: var(--of-orange); color: white;
  font-size: 6px; font-weight: 800; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 6px;
}
.courier-app-offer__timer { font-size: 10px; font-weight: 800; color: var(--of-orange); }

.courier-app-offer__val { font-size: 22px; font-weight: 800; text-align: center; margin: 4px 0; }
.courier-app-offer__dist { font-size: 7px; text-align: center; opacity: 0.5; margin-bottom: 10px; }

.courier-app-offer__route { display: flex; flex-direction: column; gap: 8px; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.courier-app-offer__step { display: flex; align-items: center; gap: 8px; font-size: 7px; }
.courier-app-offer__pdot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.courier-app-offer__pdot--pickup { background: var(--of-orange); }
.courier-app-offer__pdot--drop { background: var(--of-green); }

.courier-app-offer__actions { display: grid; grid-template-columns: 1fr 2fr; gap: 6px; margin-top: 10px; }
.courier-app-offer__btn {
  padding: 8px; border-radius: 10px; text-align: center;
  font-size: 8px; font-weight: 800;
}
.courier-app-offer__btn--no { background: #1C2D42; color: var(--of-gray-400); }
.courier-app-offer__btn--yes { background: var(--of-orange); color: white; }

/* Floating badges */
.courier-float {
  position: absolute;
  background: white; border-radius: 14px;
  padding: 10px 16px; box-shadow: var(--of-shadow-lg);
  font-size: 12px; font-weight: 600; z-index: 5;
  border: 1px solid rgba(226, 232, 240, 0.6);
}
.courier-float--icon {
  width: 48px; height: 48px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; border-radius: 50%;
}
.courier-float--orange { border-left: 3px solid var(--of-orange); }

/* ── Seção: Como Funciona ────────────────────────────── */
.courier-steps {
  background: white;
  padding: var(--of-section-pad) 0;
  border-top: 1px solid var(--of-gray-100);
  border-bottom: 1px solid var(--of-gray-100);
}

.courier-steps__inner {
  max-width: var(--of-max);
  margin: 0 auto;
  padding: 0 var(--of-gutter);
}

.courier-section-header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.courier-section-header h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--of-navy); margin-bottom: 12px; }
.courier-section-header p { font-size: 16px; color: var(--of-gray-600); }

.courier-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.courier-step-card {
  background: var(--of-snow);
  border: 1px solid var(--of-gray-100);
  border-radius: var(--of-radius-lg);
  padding: 36px 28px;
  transition: var(--of-trans);
}
.courier-step-card:hover { transform: translateY(-4px); box-shadow: var(--of-shadow-lg); }

.courier-step-card__num {
  font-size: 32px; font-weight: 900; color: var(--of-orange);
  margin-bottom: 16px;
}
.courier-step-card__title { font-size: 18px; font-weight: 800; color: var(--of-navy); margin-bottom: 10px; }
.courier-step-card__desc { font-size: 14px; color: var(--of-gray-600); line-height: 1.6; }

/* ── Seção: Veículos ─────────────────────────────────── */
.courier-vehicles {
  padding: var(--of-section-pad) 0;
}

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

.courier-vehicle-card {
  background: white;
  border-radius: var(--of-radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--of-gray-100);
  text-align: center;
  box-shadow: 0 4px 20px rgba(10,25,47,0.04);
}
.courier-vehicle-card__icon { font-size: 40px; margin-bottom: 16px; }
.courier-vehicle-card__title { font-size: 18px; font-weight: 800; color: var(--of-navy); margin-bottom: 8px; }
.courier-vehicle-card__desc { font-size: 13px; color: var(--of-gray-600); }

/* ── Footer ─────────────────────────────────────────── */
.courier-footer {
  background: var(--of-navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0;
  text-align: center;
}
.courier-footer__inner { max-width: var(--of-max); margin: 0 auto; padding: 0 var(--of-gutter); }
.courier-footer__brand { font-size: 18px; font-weight: 800; color: white; margin-bottom: 4px; }
.courier-footer__brand span { color: var(--of-orange); }
.courier-footer__links { margin: 18px 0; display: flex; justify-content: center; gap: 20px; font-size: 13px; }
.courier-footer__links a:hover { color: white; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* ── Responsivo ─────────────────────────────────────── */
@media (max-width: 960px) {
  .courier-header__nav { display: none; }
  .courier-hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .courier-hero__text { max-width: 100%; }
  .courier-benefits { justify-content: center; max-width: 420px; margin: 0 auto 36px; text-align: left; }
  .courier-ctas { justify-content: center; }
  .courier-steps__grid, .courier-vehicles__grid { grid-template-columns: 1fr; }
  .courier-float { display: none; }
}

@media (max-width: 640px) {
  .courier-title { font-size: clamp(28px, 7vw, 36px); }
  .courier-benefits { grid-template-columns: 1fr; }
  .courier-phone { width: 230px; }
  .courier-ctas { flex-direction: column; width: 100%; }
  .courier-btn-primary, .courier-btn-secondary { width: 100%; }
}
