/* ============================================================
   LP â€” RTR v2 (Google-style, light, espaÃ§oso, mapa embedded)
   ============================================================ */

/* â”€â”€â”€ HERO â€” majestoso com vÃ­deo + overlay light â”€â”€â”€â”€â”€â”€â”€â”€ */

.lp-hero {
  position: relative;
  min-height: 92vh;
  padding: var(--sp-12) 0 var(--sp-11);
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.lp-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.95);
}

/* Overlay light â€” vidro branco-translÃºcido pra texto charcoal manter contraste */
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.92) 65%, rgba(255,255,255,1) 100%),
    radial-gradient(ellipse at 80% 20%, var(--gold-soft-bg), transparent 60%),
    radial-gradient(ellipse at 20% 80%, var(--navy-soft-bg), transparent 60%);
  pointer-events: none;
}

.lp-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
}

.lp-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-semibold);
  line-height: 1.05;
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-6);
  color: var(--text);
}
.lp-hero__title em {
  color: var(--gold-deep);
  font-style: normal;
}

.lp-hero__lead {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  line-height: var(--lh-base);
  max-width: 60ch;
  margin: 0 auto var(--sp-8);
  font-weight: var(--fw-regular);
}

.lp-hero__ctas {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* â”€â”€â”€ METRICS strip â€” sem caixas, sÃ³ nÃºmeros â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.lp-metrics {
  background: var(--bg-soft);
  padding: var(--sp-9) 0;
}
.lp-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-7);
  text-align: center;
}
.lp-metric__value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.7rem + 2.4vw, 3.5rem);
  font-weight: var(--fw-semibold);
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--sp-3);
  letter-spacing: var(--ls-tight);
}
.lp-metric__value em {
  color: var(--gold-deep);
  font-style: normal;
}
.lp-metric__label {
  font-size: var(--fs-eyebrow);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  font-weight: var(--fw-medium);
}
@media (max-width: 880px) {
  .lp-metrics__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-7); }
}

/* â”€â”€â”€ SERVIÃ‡OS â€” grid sem bordas, padding generoso â”€â”€â”€â”€â”€â”€ */

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

.lp-service {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-7) var(--sp-6);
  background: var(--bg);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: all var(--t);
  position: relative;
}

.lp-service:hover {
  background: var(--bg-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.lp-service__icon {
  width: 48px; height: 48px;
  background: var(--gold-soft-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  transition: all var(--t);
}
.lp-service__icon svg {
  width: 24px; height: 24px;
  color: var(--gold-deep);
}
.lp-service:hover .lp-service__icon {
  background: var(--text);
}
.lp-service:hover .lp-service__icon svg {
  color: var(--bg);
}

.lp-service__name {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--text);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
}
.lp-service__desc {
  font-size: var(--fs-body-sm);
  color: var(--text-muted);
  line-height: var(--lh-base);
}
.lp-service__cta {
  margin-top: auto;
  padding-top: var(--sp-3);
  font-size: var(--fs-body-sm);
  color: var(--gold-deep);
  font-weight: var(--fw-medium);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--t);
}
.lp-service:hover .lp-service__cta {
  gap: var(--sp-3);
}

.lp-service--feature {
  background: var(--text);
  color: var(--bg);
}
.lp-service--feature .lp-service__name { color: var(--bg); }
.lp-service--feature .lp-service__desc { color: rgba(255,255,255,0.72); }
.lp-service--feature .lp-service__icon { background: rgba(255,255,255,0.12); }
.lp-service--feature .lp-service__icon svg { color: var(--gold-bright); }
.lp-service--feature .lp-service__cta { color: var(--gold-bright); }
.lp-service--feature:hover {
  background: var(--navy-deep);
  box-shadow: var(--shadow-3);
}

@media (max-width: 1080px) {
  .lp-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lp-services__grid { grid-template-columns: 1fr; }
}

/* â”€â”€â”€ MAP embedded com iframe lazy â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.lp-map {
  background: var(--bg);
}

.lp-map__head {
  text-align: center;
  margin-bottom: var(--sp-8);
}
.lp-map__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-4);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
  color: var(--text);
}
.lp-map__title em { color: var(--gold-deep); font-style: normal; }
.lp-map__arabic {
  font-family: var(--font-arabic);
  font-size: var(--fs-h3);
  color: var(--gold-deep);
  opacity: 0.7;
  margin-bottom: var(--sp-4);
  font-weight: var(--fw-regular);
}
.lp-map__lead {
  max-width: 60ch;
  margin: 0 auto;
  font-size: var(--fs-lead);
  color: var(--text-muted);
}

/* Mapa FULL-WIDTH â€” vai borda-a-borda da viewport, sem container */
.lp-map__embed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);     /* "break out" do container pai */
  margin-right: calc(50% - 50vw);
  height: 78vh;
  min-height: 600px;
  max-height: 820px;
  overflow: hidden;
  background: #050a14;
  margin-top: var(--sp-8);
}
.lp-map__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.lp-map__cta {
  text-align: center;
  margin-top: var(--sp-7);
}

/* â”€â”€â”€ ROUTES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.lp-routes {
  background: var(--bg-soft);
}

.lp-routes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.lp-route {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  transition: all var(--t);
}
.lp-route:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.lp-route__chip {
  margin-bottom: var(--sp-4);
}
.lp-route__name {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-3);
  letter-spacing: var(--ls-tight);
  color: var(--text);
  line-height: var(--lh-snug);
}
.lp-route__detail {
  font-size: var(--fs-body-sm);
  color: var(--text-muted);
  line-height: var(--lh-base);
  margin-bottom: var(--sp-5);
}
.lp-route__time {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  font-size: var(--fs-body-sm);
  color: var(--text-dim);
}
.lp-route__time strong {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--text);
  letter-spacing: var(--ls-tight);
}

@media (max-width: 880px) {
  .lp-routes__grid { grid-template-columns: 1fr; }
}

/* â”€â”€â”€ CLIENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.lp-clients {
  padding: var(--sp-9) 0;
  text-align: center;
}
.lp-clients__label {
  font-size: var(--fs-eyebrow);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-7);
}

/* â”€â”€â”€ CTA FINAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.lp-cta {
  text-align: center;
  background: var(--text);
  color: var(--bg);
  padding: var(--sp-12) 0;
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.10), transparent 60%);
  pointer-events: none;
}
.lp-cta__inner { position: relative; z-index: 2; }

.lp-cta__title {
  font-size: var(--fs-display);
  font-weight: var(--fw-semibold);
  line-height: 1.05;
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-5);
  color: var(--bg);
}
.lp-cta__title em { color: var(--gold-bright); font-style: normal; }
.lp-cta__lead {
  max-width: 50ch;
  margin: 0 auto var(--sp-8);
  font-size: var(--fs-lead);
  color: rgba(255,255,255,0.72);
}
.lp-cta__btns {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}
.lp-cta .btn--primary {
  background: var(--gold-bright);
  color: var(--text);
}
.lp-cta .btn--primary:hover {
  background: var(--bg);
  color: var(--text);
}
.lp-cta .btn--ghost {
  color: var(--bg);
}
.lp-cta .btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--gold-bright);
}

/* â”€â”€â”€ RTL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â