:root {
  --red: #ff252c;
  --red-deep: #77090d;
  --ink: #080607;
  --ink-soft: #171315;
  --paper: #f7f3f0;
  --muted: #b9aeb0;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.has-cursor-orb {
  cursor: none;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 37, 44, 0.28), transparent 34rem),
    radial-gradient(circle at 88% 30%, rgba(255, 37, 44, 0.22), transparent 28rem),
    linear-gradient(180deg, #100708 0%, #080607 38%, #120809 100%);
}

.cursor-orb {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(255, 37, 44, 0.62);
  box-shadow: 0 0 22px rgba(255, 37, 44, 0.78);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.18s ease, height 0.18s ease, opacity 0.18s ease;
  mix-blend-mode: screen;
}

.cursor-orb.is-visible {
  opacity: 1;
}

.cursor-orb.is-active {
  width: 34px;
  height: 34px;
  background: rgba(255, 37, 44, 0.28);
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 6, 7, 0.72);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--paper);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
}

.nav-cta {
  padding: 0 18px;
  background: var(--paper);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: end;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 58px;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, var(--ink) 8%, transparent);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(1.18) contrast(1.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 890px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #ff9a9d;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 10vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.3rem, 5.2vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.05;
}

.hero-copy {
  max-width: 610px;
  color: #ded5d5;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--red);
  box-shadow: 0 18px 52px rgba(255, 37, 44, 0.38);
  color: white;
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.hero-badge {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 72px;
  z-index: 3;
  width: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 6, 7, 0.46);
  backdrop-filter: blur(18px);
}

.hero-badge span,
.hero-badge strong {
  display: block;
}

.hero-badge span {
  color: var(--muted);
}

.hero-badge strong {
  margin-top: 6px;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  gap: 16px;
  padding: 18px max(24px, calc((100vw - 1180px) / 2));
  border-block: 1px solid var(--line);
  background: #13090a;
  overflow-x: auto;
}

.ticker span {
  flex: 0 0 auto;
  color: #eee;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 52px;
  align-items: end;
}

.intro p:last-child,
.service-list p,
.footer p,
.steps span {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.work-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink-soft);
}

.work-card.large {
  grid-row: span 2;
  min-height: 738px;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card:hover img {
  transform: scale(1.04);
}

.work-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent);
  content: "";
}

.work-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.work-card span {
  display: block;
  margin-bottom: 8px;
  color: #ff9a9d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-list article {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 37, 44, 0.16), rgba(255, 255, 255, 0.035));
}

.service-list span {
  color: var(--red);
  font-weight: 900;
}

.service-list h3 {
  margin: 56px 0 14px;
}

.behance-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 37, 44, 0.9), rgba(119, 9, 13, 0.62)),
    url("assets/Banerbarrinha.jpg") center/cover;
}

.behance-strip h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.steps div {
  min-height: 180px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.steps div + div {
  border-left: 1px solid var(--line);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 58px;
  font-size: 1.45rem;
}

.footer {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: 150px 1fr auto;
  gap: 30px;
  align-items: center;
  margin: 0 auto 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f1ee;
  color: var(--ink);
}

.footer img {
  width: 150px;
  border-radius: 6px;
}

.footer .eyebrow {
  color: var(--red);
}

.footer h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.6rem);
}

.footer .button.ghost {
  border-color: rgba(8, 6, 7, 0.16);
  background: var(--ink);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 860px) {
  body.has-cursor-orb {
    cursor: auto;
  }

  .cursor-orb {
    display: none;
  }

  .nav {
    top: 10px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
  }

  .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-top: 2px;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--paper);
    font-size: 0.78rem;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: 720px;
    align-items: end;
    padding-top: 170px;
    padding-bottom: 46px;
  }

  .hero-media img {
    object-position: 54% center;
    opacity: 0.48;
  }

  .hero-copy {
    max-width: 540px;
  }

  .hero-badge {
    display: none;
  }

  .intro,
  .work-grid,
  .service-list,
  .steps,
  .footer {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card.large {
    min-height: 420px;
  }

  .behance-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 32px;
  }

  .steps div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer {
    align-items: start;
    padding: 24px;
  }

  .footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav {
    width: calc(100% - 20px);
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 68px 0;
  }

  .hero {
    min-height: 690px;
    padding-right: 14px;
    padding-left: 14px;
    padding-top: 164px;
  }

  .hero-content {
    max-width: 100%;
  }

  h1 {
    max-width: 360px;
    font-size: 3rem;
    line-height: 0.92;
  }

  h2 {
    font-size: 2rem;
    line-height: 1;
  }

  h3 {
    font-size: 1.22rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 26px;
  }

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

  .ticker {
    padding: 14px;
  }

  .work-card,
  .work-card.large {
    min-height: 340px;
  }

  .service-list article {
    min-height: 220px;
    padding: 22px;
  }

  .service-list h3 {
    margin-top: 38px;
  }

  .behance-strip {
    padding: 24px;
  }

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

  .steps div {
    min-height: 155px;
    padding: 22px;
  }

  .steps strong {
    margin-bottom: 34px;
    font-size: 1.22rem;
  }

  .footer img {
    width: 112px;
  }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  body.has-cursor-orb {
    cursor: auto;
  }

  .cursor-orb {
    display: none;
  }
}
