:root {
  --black: #050505;
  --ink: #161616;
  --muted: #666666;
  --line: #dedede;
  --paper: #f6f6f3;
  --white: #ffffff;
  --yellow: #ffd21f;
  --yellow-dark: #d6a900;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

#inicio,
#servicos,
#processo,
#contato {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
}

img { max-width: 100%; }

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, .97);
  border-bottom: 1px solid rgba(255, 210, 31, .55);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img { width: 156px; display: block; }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 8px 0 10px;
  color: var(--white);
  letter-spacing: .06em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--yellow);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--yellow);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-actions .button {
  width: 272px;
  padding-inline: 26px;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.header-cta,
.button.primary {
  color: var(--black);
  background: var(--yellow);
}

.header-cta {
  gap: 10px;
}

.header-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 210, 31, .55);
}

.button.secondary svg { color: var(--yellow); }

.button:hover,
.header-cta:hover,
.button:focus-visible,
.header-cta:focus-visible { transform: translateY(-1px); }

.hero {
  padding: 72px 0 56px;
  background: var(--black);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  justify-items: start;
  gap: 54px;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  text-align: left;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .94;
  letter-spacing: 0;
}

.title-block { display: block; }
.title-white { color: var(--white); }
.title-yellow { color: var(--yellow); }
.title-small { font-size: 0.92em; line-height: 0.95; }
.title-nowrap { white-space: nowrap; }

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
}

h3 { margin-bottom: 12px; font-size: 22px; }

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  justify-content: flex-start;
}

.hero-metrics {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 640px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-metrics li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 0 18px;
  text-align: left;
}

.hero-metrics li:first-child { padding-left: 0; }

.hero-metrics li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 4px;
  width: 1px;
  height: 42px;
  background: rgba(180, 180, 180, .34);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1;
  color: var(--white);
}

.hero-metrics svg {
  width: 32px;
  height: 32px;
  color: var(--yellow);
  fill: currentColor;
  flex: 0 0 auto;
}

.hero-metrics span {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  line-height: 1.2;
}

.hero-metrics div {
  min-width: 0;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-visual::before {
  left: -8%;
  top: -5%;
  width: 108%;
  height: 108%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 210, 31, .46) 0%, rgba(255, 210, 31, .25) 34%, rgba(255, 210, 31, .08) 62%, transparent 78%);
  filter: blur(18px);
  z-index: 0;
}

.hero-visual::after {
  left: -4%;
  top: 0;
  width: 92%;
  height: 94%;
  background-image: radial-gradient(circle, rgba(190, 190, 190, .34) 1px, transparent 1.7px);
  background-size: 13px 13px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 46%, transparent 74%);
  opacity: .55;
  z-index: 0;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: min(680px, 76vh);
  object-fit: contain;
  object-position: center;
  transform: translateX(-36px) rotate(5deg) scale(1.28);
  transform-origin: center;
}

.intro-band {
  padding: 26px 0;
  background: var(--black);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.intro-grid p { margin: 0; max-width: 760px; color: rgba(255,255,255,.78); line-height: 1.6; }
.intro-grid a { color: var(--yellow); font-weight: 900; text-transform: uppercase; }

.process { padding: 42px 0 32px; }

.section-heading { max-width: 660px; margin-bottom: 34px; }

.process p { color: rgba(255, 255, 255, .82); line-height: 1.65; }

.process {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 96px;
  color: var(--white);
  background: var(--black);
}

.process::before,
.process::after {
  content: "";
  position: absolute;
  left: max(20px, calc((100% - 1120px) / 2));
  right: max(20px, calc((100% - 1120px) / 2));
  height: 1px;
  background: rgba(255, 210, 31, .45);
  pointer-events: none;
}

.process::before {
  top: 0;
}

.process::after {
  display: none;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 28px;
  row-gap: 18px;
}

.methodology-intro {
  display: grid;
  justify-items: center;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.methodology-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.methodology-icon {
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}

.methodology-icon svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.methodology-intro h2 {
  position: relative;
  margin-bottom: 0;
}

.methodology-intro h2::after {
  content: "";
  display: block;
  width: 190px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--yellow);
}

.process p {
  color: rgba(255, 255, 255, .82);
  line-height: 1.65;
}

.methodology-subtitle {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 18px;
}

.methodology-highlight {
  max-width: 920px;
  margin-inline: auto;
  padding-top: 0;
  text-align: center;
}

.methodology-highlight p {
  margin: 0;
  font-size: 20px;
}

.methodology-highlight strong {
  color: var(--yellow);
}

.methodology-pillars {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 210, 31, .45);
}

.methodology-pillars article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: start;
  padding-right: 28px;
}

.pillar-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
}

.pillar-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-icon.image-icon {
  padding: 0;
  overflow: hidden;
}

.pillar-icon.image-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-icon.filled svg {
  fill: currentColor;
  stroke: none;
}

.pillar-icon.lock-icon {
  background: rgba(255, 210, 31, .12);
  color: #ffd94d;
}

.pillar-icon.lock-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

.pillar-icon svg path {
  fill: currentColor;
  stroke: none;
}

.pillar-icon:first-child svg circle,
.pillar-icon:first-child svg path {
  fill: none;
  stroke: currentColor;
}

.methodology-pillars article:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.methodology-pillars h3 {
  position: relative;
  max-width: 280px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.12;
}

.methodology-pillars h3::after {
  content: "";
  display: block;
  width: 118px;
  height: 2px;
  margin-top: 12px;
  background: var(--yellow);
}

.methodology-pillars h3 strong {
  display: block;
  color: var(--yellow);
}

.methodology-pillars p {
  max-width: 300px;
  margin: 0;
  font-size: 15px;
}

.services {
  padding: 32px 0 14px;
  background: var(--black);
}

.services-heading {
  display: flex;
  max-width: 760px;
  margin-bottom: 32px;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.services-heading::before,
.services-heading::after {
  content: "";
  width: min(150px, 22vw);
  height: 1px;
  background: rgba(255, 210, 31, .7);
}

.services-heading h2 {
  margin: 0;
  color: var(--yellow);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-panel {
  padding: 28px;
  border: 1px solid rgba(255, 210, 31, .45);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.service-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
}

.service-head::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background: rgba(190, 190, 190, .28);
}

.service-title-icons {
  display: grid;
  grid-template-columns: repeat(2, 28px);
  gap: 6px;
  flex: 0 0 auto;
  color: var(--yellow);
}

.service-title-icons svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-title-icons-single {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
}

.service-title-icons-single svg {
  width: 58px;
  height: 58px;
}

.service-head h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 26px;
}

.service-tagline {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.service-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.55;
}

.service-item-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 210, 31, .55);
  border-radius: 50%;
  color: var(--yellow);
}

.service-item-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.service-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--yellow);
  font-size: 16px;
  line-height: 1.2;
}

.service-item-copy {
  display: block;
}

.service-item-copy span {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.45;
}

.site-footer {
  padding: 14px 0 28px;
  background: var(--black);
  color: rgba(255, 255, 255, .78);
}

.footer-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) minmax(240px, 300px);
  align-items: center;
  gap: 26px;
  overflow: hidden;
  padding: 0 24px 0 0;
  border: 1px solid rgba(190, 190, 190, .35);
  border-radius: 18px;
  background: #050505;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .32);
}

.footer-card-copy {
  max-width: 620px;
}

.footer-eyebrow {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.05;
}

.footer-card h2 strong {
  color: var(--yellow);
}

.footer-rocket {
  width: 100%;
  height: 100%;
  min-height: 126px;
  object-fit: cover;
  object-position: 78% 52%;
}

.footer-actions {
  display: grid;
  gap: 10px;
  justify-self: end;
  width: min(100%, 300px);
}

.footer-actions .button {
  width: 100%;
}

.footer-actions .button.secondary {
  background: rgba(5, 5, 5, .72);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
}

.footer-brand {
  display: contents;
}

.footer-brand img {
  grid-column: 1;
  width: 128px;
  justify-self: start;
}

.footer-brand p {
  grid-column: 2;
  justify-self: center;
  margin: 0;
  font-size: 14px;
  text-align: center;
}

.footer-social {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  border: 1px solid transparent;
  border-radius: 50%;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.social-instagram {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.9;
}

.social-instagram circle:last-child {
  fill: var(--yellow);
  stroke: none;
}

.social-facebook {
  fill: var(--yellow);
}

.social-linkedin {
  width: 24px;
  height: 24px;
}

.social-linkedin rect {
  fill: var(--yellow);
}

.social-linkedin circle,
.social-linkedin path {
  fill: var(--black);
}

@media (max-width: 960px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: auto;
    padding: 14px 0;
  }

  .brand { justify-self: start; }
  .brand img { width: min(156px, 54vw); }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .header-cta { grid-column: 1 / -1; justify-self: stretch; width: 100%; margin-top: 8px; }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 210, 31, .55);
    border-radius: var(--radius);
    background: var(--black);
  }

  .site-header.menu-open .nav { display: flex; }
  .nav a { padding: 12px 14px; }

  .hero-grid,
  .process-grid,
  .showcase-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-copy {
    order: 1;
    grid-column: auto;
    grid-row: auto;
    display: grid;
    justify-items: center;
    width: 100%;
    text-align: center;
  }

  .lead {
    margin-inline: auto;
  }

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

  .hero-visual {
    order: 2;
    grid-column: auto;
    grid-row: auto;
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .hero-visual img {
    height: auto;
    object-fit: contain;
    transform: rotate(4deg) scale(1.04);
  }

  .hero-metrics {
    order: 3;
    grid-column: auto;
    grid-row: auto;
    width: min(100%, 640px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .hero-metrics li {
    justify-content: center;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 210, 31, .22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .03);
    text-align: left;
  }
  .hero-metrics li::after { display: none; }
  .services-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .service-panel {
    width: min(100%, 680px);
  }
  .methodology-highlight {
    padding-top: 0;
  }
  .methodology-pillars {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }
  .methodology-pillars article {
    width: min(100%, 640px);
    grid-template-columns: 68px minmax(0, 1fr);
    padding-right: 0;
    padding-bottom: 28px;
    text-align: left;
  }
  .methodology-pillars article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }
  .footer-card {
    width: min(100%, 760px);
    grid-template-columns: 120px minmax(0, 1fr);
    justify-items: center;
    padding: 0 22px 22px 0;
    margin-inline: auto;
    text-align: center;
  }
  .footer-card-copy {
    justify-self: stretch;
  }
  .footer-actions {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 360px);
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-brand img,
  .footer-brand p,
  .footer-social {
    grid-column: 1;
    justify-self: center;
  }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding: 28px 0 34px; }
  .hero-grid { gap: 16px; }
  h1 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: clamp(34px, 10vw, 48px);
  }
  .title-nowrap { white-space: normal; }
  .lead {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.38;
  }
  .hero-actions {
    width: min(100%, 340px);
    gap: 8px;
    margin-bottom: 6px;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 42px;
  }
  .hero-visual {
    width: min(100%, 268px);
  }
  .hero-visual img {
    transform: rotate(3deg) scale(.88);
  }
  .hero-metrics {
    width: min(100%, 360px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 8px;
  }
  .hero-metrics li {
    min-height: 88px;
    padding: 10px 8px;
    align-items: center;
  }
  .hero-metrics svg {
    width: 26px;
    height: 26px;
  }
  .hero-metrics strong {
    font-size: 18px;
  }
  .hero-metrics span {
    font-size: 10.5px;
  }
  .hero-metrics li::after { display: none; }
  .process { padding: 30px 0; }
  .methodology-intro {
    grid-template-columns: 1fr;
  }
  .methodology-title-row {
    max-width: 100%;
    gap: 10px;
  }
  .methodology-icon,
  .methodology-icon svg {
    width: 48px;
    height: 48px;
  }
  .methodology-intro h2 {
    font-size: clamp(28px, 8vw, 38px);
  }
  .methodology-subtitle,
  .methodology-highlight p {
    font-size: 16px;
  }
  .methodology-pillars {
    padding-top: 26px;
  }
  .methodology-pillars article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .methodology-pillars h3,
  .methodology-pillars p {
    max-width: 100%;
  }
  .methodology-pillars h3::after {
    margin-inline: auto;
  }
  .services {
    padding-top: 24px;
  }
  .services-heading {
    gap: 10px;
    margin-bottom: 24px;
  }
  .services-heading::before,
  .services-heading::after {
    width: min(64px, 16vw);
  }
  .service-panel {
    width: min(100%, 360px);
    padding: 22px 18px;
  }
  .service-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .service-list li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .cards-grid { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; }
  .steps li { grid-template-columns: 1fr; }
  .button,
  .header-cta { width: 100%; }
  .header-cta { min-height: 50px; }
  .footer-card {
    width: min(100%, 360px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 18px 22px;
  }
  .footer-rocket {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 18px 0 0;
    object-fit: contain;
    object-position: center top;
    border-radius: 12px;
  }
  .footer-actions {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }
  .footer-card h2 {
    font-size: clamp(24px, 8vw, 32px);
  }
}
