/* ============================================================
   LP — Landing Page MVP — seções específicas da home/LP
   ============================================================ */

/* ─── HERO ─────────────────────────────────────────────── */

.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(var(--nav-h) * -1);
  padding-top: var(--nav-h);
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero__bg video,
.lp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42);
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.9) 100%),
    radial-gradient(ellipse at 25% 30%, rgba(212,175,55,0.10), transparent 60%);
}

.lp-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--sp-9) 0;
}

.lp-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-black);
  line-height: 0.95;
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
  max-width: 16ch;
}
.lp-hero__title span {
  color: var(--gold);
  display: inline-block;
}

.lp-hero__lead {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  line-height: var(--lh-base);
  max-width: 50ch;
  margin-bottom: var(--sp-7);
}

.lp-hero__ctas {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.lp-hero__scroll {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: var(--fs-eyebrow);
  color: var(--text-dim);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  animation: lp-bounce 2s ease-in-out infinite;
}
.lp-hero__scroll::after {
  content: '';
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes lp-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ─── METRICS STRIP ────────────────────────────────────── */

.lp-metrics {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-7) 0;
}
.lp-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  text-align: center;
}
.lp-metric__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
  font-weight: var(--fw-black);
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: var(--ls-tight);
}
.lp-metric__value span { color: var(--gold); }
.lp-metric__label {
  font-size: var(--fs-eyebrow);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  font-weight: var(--fw-bold);
}

@media (max-width: 880px) {
  .lp-metrics__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
}

/* ─── COMPANIES ────────────────────────────────────────── */

.lp-companies__intro {
  text-align: center;
  margin-bottom: var(--sp-7);
}
.lp-companies__intro h2 {
  font-size: var(--fs-h1);
  margin-bottom: var(--sp-3);
}
.lp-companies__intro h2 span { color: var(--gold); }

.lp-company {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--t), border-color var(--t);
  border-radius: var(--r-sm);
}
.lp-company:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}
.lp-company__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.4rem + 1vw, 2.25rem);
  font-weight: var(--fw-black);
  color: var(--text);
  letter-spacing: var(--ls-tight);
}
.lp-company__role {
  font-size: var(--fs-eyebrow);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  font-weight: var(--fw-bold);
}
.lp-company__desc {
  font-size: var(--fs-body-sm);
  color: var(--text-muted);
  line-height: var(--lh-base);
}

/* ─── MAP TEASER ───────────────────────────────────────── */

.lp-map {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(212,175,55,0.06), transparent 60%),
    var(--bg);
  text-align: center;
}
.lp-map__title {
  font-size: var(--fs-h1);
  margin-bottom: var(--sp-3);
}
.lp-map__title span { color: var(--gold); }
.lp-map__arabic {
  font-family: var(--font-arabic);
  font-size: var(--fs-h3);
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: var(--sp-5);
}
.lp-map__lead {
  max-width: 60ch;
  margin: 0 auto var(--sp-7);
  font-size: var(--fs-lead);
  color: var(--text-muted);
}
.lp-map__frame {
  background: linear-gradient(180deg, #0a0a0c, #050506);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
  box-shadow: var(--shadow-lg);
}
.lp-map__frame svg {
  width: 100%;
  height: auto;
}

/* ─── STRAIT SECTION ───────────────────────────────────── */

.lp-strait {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  text-align: center;
  position: relative;
}
.lp-strait__title {
  font-size: var(--fs-h1);
  margin-bottom: var(--sp-5);
  max-width: 22ch;
  margin-inline: auto;
}
.lp-strait__title span { color: var(--gold); }
.lp-strait__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-h3);
  color: var(--text);
  max-width: 50ch;
  margin: var(--sp-7) auto 0;
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
  text-transform: none;
  letter-spacing: 0;
}
.lp-strait__cite {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--fs-eyebrow);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  font-style: normal;
  font-weight: var(--fw-bold);
}

/* ─── VISION 2030 ──────────────────────────────────────── */

.lp-vision__intro {
  text-align: center;
  margin-bottom: var(--sp-7);
}
.lp-vision__pillar {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: var(--sp-5);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border);
}
.lp-vision__pillar:last-child { border-bottom: 0; }
.lp-vision__k {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-black);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
}
.lp-vision__v {
  font-size: var(--fs-body);
  color: var(--text-muted);
  line-height: var(--lh-base);
}

@media (max-width: 720px) {
  .lp-vision__pillar { grid-template-columns: 1fr; gap: var(--sp-3); }
}

/* ─── CTA FINAL ────────────────────────────────────────── */

.lp-cta {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.10), transparent 60%),
    var(--bg);
  padding: var(--sp-10) 0;
}
.lp-cta__title {
  font-size: var(--fs-display);
  margin-bottom: var(--sp-3);
  line-height: 0.95;
}
.lp-cta__title span { color: var(--gold); }
.lp-cta__lead {
  max-width: 50ch;
  margin: 0 auto var(--sp-7);
  font-size: var(--fs-lead);
  color: var(--text-muted);
}
.lp-cta__btns {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CLIENTS LOGOS ────────────────────────────────────── */

.lp-clients {
  text-align: center;
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.lp-clients__label {
  font-size: var(--fs-eyebrow);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-5);
}

/* ─── RTL específicas ──────────────────────────────────── */

html[dir="rtl"] .lp-hero__title,
html[dir="rtl"] .lp-cta__title,
html[dir="rtl"] .lp-companies__intro h2 {
  font-family: var(--font-arabic);
  text-transform: none;
  letter-spacing: 0;
}
html[dir="rtl"] .lp-vision__pillar {
  grid-template-columns: 2.5fr 1fr;
}
html[dir="rtl"] .lp-company {
  border-top: 2px solid var(--gold);
  text-align: right;
}
