/* Imontech — landing page
   Cores: azul marinho #10284A · laranja #FF6A2B · grafite #14171C · cinza #F4F5F7 */

:root {
  --navy: #10284A;
  --orange: #FF6A2B;
  --ink: #14171C;
  --ink-soft: #3A4049;
  --muted: #6C737F;
  --muted-light: #9AA1AC;
  --line: #E7E9ED;
  --gray: #F4F5F7;
  --gray-soft: #F9FAFB;
  --sans: 'Outfit', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }

img, svg { display: block; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
}

.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Marca ---------- */

.logo {
  display: flex;
  align-items: flex-end;
  gap: .04em;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1;
  color: var(--ink);
}

.logo__i {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .13em;
  margin-bottom: .03em;
}

.logo__arrow { width: .36em; height: .36em; }

.logo__arrow, .arrow, .hero__mark-card svg { fill: none; }

.logo__stem {
  width: .13em;
  height: .5em;
  border-radius: .065em;
  background: var(--navy);
}

.logo--sm { font-size: 26px; }

/* Seta usada como bullet / elemento gráfico recorrente */
.arrow { width: 20px; height: 20px; flex: none; }
.arrow--lg { width: 34px; height: 34px; }

@keyframes imon-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3px, -3px); }
}

@keyframes imon-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.is-moving { animation: imon-drift 3.4s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .is-moving { animation: none; }
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--navy); color: #fff; }

.btn--ghost {
  border: 1.5px solid #D8DBE0;
  color: var(--ink);
  font-weight: 500;
}
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }

.btn--sm {
  padding: 11px 20px;
  font-size: 15px;
  font-weight: 500;
  background: var(--navy);
  color: #fff;
}
.btn--sm:hover { background: var(--orange); color: #fff; }

/* ---------- Header ---------- */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  flex-wrap: wrap;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px clamp(16px, 3vw, 34px);
  font-size: 15px;
  font-weight: 500;
}

.nav a:not(.btn) { color: var(--ink-soft); }
.nav a:not(.btn):hover { color: var(--orange); }
.nav a.is-active { color: var(--ink); }

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: center;
  padding: 72px 0 88px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: imon-rise .6s ease both;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 600;
  text-wrap: pretty;
}

.hero h1 .arrow {
  display: inline-block;
  width: .34em;
  height: .34em;
  vertical-align: .32em;
  margin-left: .08em;
}

.hero p {
  margin: 0;
  max-width: 520px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.actions { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 6px; }

.placeholder {
  position: relative;
  background: var(--gray);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
}

.placeholder > * { position: relative; }

.hero__art { aspect-ratio: 4 / 3.4; }

.hero__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero__mark-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 38px 34px;
  border-radius: 20px;
}

.hero__mark-card svg { width: 54px; height: 54px; }

.hero__mark-card span {
  width: 16px;
  height: 62px;
  background: var(--navy);
  border-radius: 8px;
}

/* ---------- Seções ---------- */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -.03em;
}

.section-head p {
  margin: 0;
  max-width: 380px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.segments {
  padding: 16px 0 96px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.segments .section-head {
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 26px 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: border-color .18s ease;
}

.card:hover { border-color: var(--navy); }

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gray);
}

.card h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--navy);
}

.card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Sobre ---------- */

.about {
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  padding: 64px clamp(24px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}

.about__intro { display: flex; flex-direction: column; gap: 18px; }
.about__intro .eyebrow { color: #FF8A56; }

.about__intro h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.about__intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #B9C3D1;
  max-width: 360px;
}

.about__list { display: flex; flex-direction: column; }

.about__item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.about__item .arrow { width: 18px; height: 18px; margin-top: 5px; }

.about__item h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.about__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #B9C3D1;
}

/* ---------- Portfólio ---------- */

.work { padding: 96px 0; display: flex; flex-direction: column; gap: 34px; }

.work__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.work__item { display: flex; flex-direction: column; gap: 14px; }

.work__item .placeholder { aspect-ratio: 4 / 3; border-radius: 16px; }

.work__item--sabotador .placeholder { align-items: flex-start; }

.work__item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.work__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.logos__slot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 128px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, var(--line) 0 2px, transparent 2px 12px);
}

/* ---------- CTA final ---------- */

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  padding: 80px 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--gray-soft);
  margin-bottom: 88px;
}

.cta h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 600;
  letter-spacing: -.03em;
  max-width: 16ch;
  line-height: 1.08;
}

.cta p {
  margin: 0;
  max-width: 480px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.cta .actions { justify-content: center; }

.cta__mail {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 15px;
  padding: 16px 10px;
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 52px 0 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.footer__brand { display: flex; flex-direction: column; gap: 16px; }

.footer__brand p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.6;
}

.footer__col { display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: var(--ink-soft); }

.footer__col a { color: var(--ink-soft); }

.footer__title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.legal {
  border-top: 1px solid var(--line);
  padding: 20px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted-light);
}
