:root {
  --font: "Inter Tight", ui-sans-serif, system-ui, sans-serif;

  --bg: #f1f4f6;
  --surface: #ffffff;
  --ink: #1a1a1c;
  --ink-soft: color-mix(in srgb, #1a1a1c 62%, transparent);
  --ink-mute: color-mix(in srgb, #1a1a1c 75%, transparent);
  --line: #dfe4eb;

  --accent: #d6006f;
  --accent-light: #ff3fa8;
  --accent-tint: color-mix(in srgb, #d6006f 9%, transparent);

  --dark: #1a1a1c;
  --on-dark: #f4f5f8;
  --on-dark-soft: color-mix(in srgb, #f4f5f8 60%, transparent);
  --on-dark-line: color-mix(in srgb, #f4f5f8 16%, transparent);

  --shell: 1400px;
  --pad-x: 28px;

  --sec-y: clamp(88px, 11vw, 168px);
  --head-gap: clamp(48px, 6vw, 80px);
  --grid-gap: clamp(16px, 1.6vw, 24px);

  --r: 24px;
  --r-sm: 12px;

  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --dur: 0.4s;
}

@media (max-width: 767px) { 
  :root { --pad-x: 20px; } 
}

*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  -webkit-text-size-adjust: 100%; 
}

[id] { 
  scroll-margin-top: 96px; 
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { 
  overflow: hidden; 
}

img { 
  max-width: 100%; 
  display: block; 
}

ul, ol { 
  list-style: none; 
}

a { 
  color: inherit; 
  text-decoration: none; 
}

button { 
  font: inherit; 
  border: none; 
  background: none; 
  cursor: pointer; 
  color: inherit; 
}

::selection { 
  background: var(--accent); 
  color: #fff; 
}

:focus-visible { 
  outline: 2px solid var(--accent); 
  outline-offset: 3px; 
  border-radius: 4px; 
}

.skip-link { 
  position: absolute; 
  left: -9999px; 
  z-index: 10000; 
  padding: 12px 20px; 
  background: var(--ink); 
  color: #fff; 
}

.skip-link:focus { 
  left: 12px; 
  top: 12px; 
}

.shell { 
  width: 100%; 
  max-width: var(--shell); 
  margin-inline: auto; 
  padding-inline: var(--pad-x); 
}

.sec { 
  padding-bottom: var(--sec-y); 
}

h1, h2, h3 { 
  letter-spacing: -0.03em; 
  text-wrap: balance; 
}

h1 { 
  font-weight: 400; 
  font-size: clamp(2.5rem, 5.6vw, 4.875rem); 
  line-height: 1.07; 
  letter-spacing: -0.03em; 
}

@media (max-width: 767px) {
  h1 { font-size: calc(16.4px + 3.46vw); }
}

h2 { 
  font-weight: 400; 
  font-size: clamp(1.875rem, 3.9vw, 3.5rem); 
  line-height: 1.1; 
}

h3 { 
  font-weight: 500; 
  font-size: clamp(1.25rem, 1.55vw, 1.4375rem); 
  line-height: 1.35; 
  letter-spacing: -0.02em; 
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.tag-dot {
  width: 7px; 
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.tag--invert {
  background: transparent;
  border-color: var(--on-dark-line);
  color: var(--on-dark-soft);
}

.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.375rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  text-wrap: pretty;
}

@media (max-width: 767px) { 
  .lead br { display: none; } 
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 10px 26px -12px rgba(214, 0, 111, 0.65);
  backface-visibility: hidden;
  will-change: transform, box-shadow;
  transition: background-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -14px rgba(214, 0, 111, 0.7);
}

.btn-lg {
  height: 62px;
  padding: 0 38px;
  font-size: 1.25rem;
  box-shadow: 0 14px 32px -12px rgba(214, 0, 111, 0.7);
}

.btn-lg:hover { 
  box-shadow: 0 20px 40px -14px rgba(214, 0, 111, 0.75); 
}

.btn-sm { 
  height: 46px; 
  padding: 0 20px; 
  font-size: 0.875rem; 
  box-shadow: none; 
}

.link {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.link:hover { 
  color: var(--accent); 
  border-color: var(--accent); 
}

.link-invert { 
  color: var(--on-dark-soft); 
  border-bottom-color: var(--on-dark-line); 
}

.link-invert:hover { 
  color: var(--on-dark); 
  border-color: var(--on-dark); 
}

.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  background-color: transparent;
  -webkit-backdrop-filter: blur(0px) saturate(100%);
  backdrop-filter: blur(0px) saturate(100%);
  border-bottom: 1px solid transparent;
  box-shadow: 0 6px 24px -18px rgba(26, 26, 28, 0);
  will-change: background-color, backdrop-filter, border-color, box-shadow;
  transform: translateZ(0);
  transition: background-color 0.45s var(--ease),
              backdrop-filter 0.45s var(--ease),
              -webkit-backdrop-filter 0.45s var(--ease),
              border-color 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
}

.hdr.is-scrolled {
  background-color: color-mix(in srgb, var(--bg) 78%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(26, 26, 28, 0.55);
}

.js .hdr {
  translate: 0 -100%;
  opacity: 0;
  will-change: translate, opacity, background-color, backdrop-filter;
  transition: translate 0.5s var(--ease),
              opacity 0.5s var(--ease),
              background-color 0.45s var(--ease),
              backdrop-filter 0.45s var(--ease),
              -webkit-backdrop-filter 0.45s var(--ease),
              border-color 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
}

.js .hdr.is-in { 
  translate: none; 
  opacity: 1; 
}

.hdr-inner { 
  height: 72px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 24px; 
}

.logo { 
  font-size: 1.4375rem; 
  font-weight: 600; 
  letter-spacing: -0.04em; 
  line-height: 1; 
  white-space: nowrap; 
}

.logo-sm { 
  font-size: 1.0625rem; 
}

.hdr-nav { 
  display: none; 
  gap: 2px; 
}

.hdr-nav a {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1;
  color: color-mix(in srgb, var(--ink) 80%, transparent);
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.hdr-nav a:hover { 
  color: var(--ink); 
  background: color-mix(in srgb, var(--ink) 5%, transparent); 
}

.hdr-cta { 
  display: none; 
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--ink) 80%, transparent);
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.icon-link:hover {
  color: var(--accent);
  background: color-mix(in srgb, var(--ink) 5%, transparent);
}

.hdr .icon-link { display: none; }
@media (min-width: 1024px) {
  .hdr .icon-link { display: inline-flex; }
}

.burger { 
  display: flex; 
  flex-direction: column; 
  align-items: flex-end; 
  justify-content: center; 
  gap: 6px; 
  width: 44px; 
  height: 44px; 
  margin-right: -8px; 
}

.burger span { 
  display: block; 
  width: 20px; 
  height: 1.5px; 
  background: var(--ink); 
  transition: width var(--dur) var(--ease); 
}

.burger span:last-child { 
  width: 13px; 
}

.burger:hover span:last-child { 
  width: 20px; 
}

@media (min-width: 1024px) {
  .hdr-nav { display: flex; }
  .hdr-cta { display: inline-flex; }
  .burger { display: none; }
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(-100%);
  visibility: hidden;
  will-change: transform, visibility;
  transition: transform 0.5s var(--ease), visibility 0s linear 0.5s;
}

.menu.is-open { 
  transform: translateY(0); 
  visibility: visible; 
  transition: transform 0.55s var(--ease), visibility 0s; 
}

.menu-top { 
  height: 72px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  flex-shrink: 0; 
}

.burger-close { 
  position: relative; 
  width: 44px; 
  height: 44px; 
  margin-right: -8px; 
}

.burger-close span { 
  position: absolute; 
  top: 50%; 
  right: 8px; 
  width: 20px; 
  height: 1.5px; 
  background: var(--ink); 
}

.burger-close span:first-child { transform: rotate(45deg); }
.burger-close span:last-child { transform: rotate(-45deg); }

.menu-nav { 
  flex: 1; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
}

.menu-nav a {
  padding: 16px 0;
  text-align: center;
  font-size: clamp(1.625rem, min(8vw, 6vh), 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(14px);
  will-change: opacity, transform;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color var(--dur) var(--ease);
}

.menu-foot {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  flex-shrink: 0;
}

.menu-nav a:hover { color: var(--accent); }

.menu.is-open .menu-nav a { opacity: 1; transform: translateY(0); }
.menu.is-open .menu-nav a:nth-child(1) { transition-delay: 0.16s; }
.menu.is-open .menu-nav a:nth-child(2) { transition-delay: 0.22s; }
.menu.is-open .menu-nav a:nth-child(3) { transition-delay: 0.28s; }
.menu.is-open .menu-nav a:nth-child(4) { transition-delay: 0.34s; }

@media (max-height: 520px) { .menu-nav a { padding: 10px 0; } }
@media (min-width: 1024px) { .menu { display: none; } }

.hero {
  padding-top: clamp(148px, 18vw, 216px);
  padding-bottom: var(--sec-y);
  text-align: center;
}

.hero .lead { 
  max-width: 32ch; 
  margin: clamp(20px, 2.4vw, 28px) auto 0; 
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  margin-top: clamp(32px, 3.6vw, 44px);
}

.sec-head { margin-bottom: var(--head-gap); }
.sec-head .lead { margin-top: 16px; max-width: 48ch; }

.cards { display: grid; gap: var(--grid-gap); }
@media (min-width: 720px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: clamp(30px, 3.4vw, 52px);
  background: var(--surface);
  border-radius: var(--r);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform var(--dur) var(--ease);
}

.card:hover { transform: translateY(-5px); }

@media (min-width: 1024px) { .card { min-height: 460px; } }

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: auto;
  padding-bottom: 40px;
}

.card-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.card:hover .card-icon {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  transform: scale(1.06);
}

.card-num {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}

.card h3 { margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 1.0625rem; }

.extras {
  margin-top: var(--grid-gap);
  padding: clamp(28px, 3vw, 40px);
  background: var(--surface);
  border-radius: var(--r);
}

.extras-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.extras-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.extras-list li {
  flex-shrink: 0;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .extras-list li {
    padding: 8px 14px;
    font-size: 0.875rem;
  }
}

.works { display: grid; gap: var(--grid-gap); }

.work { display: flex; flex-direction: column; min-width: 0; }

@media (min-width: 900px) {
  .works {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 660px;
  }
  .work:first-child { grid-column: 1; grid-row: 1 / 3; }
  .work:first-child .work-media { aspect-ratio: auto; flex: 1; min-height: 0; }
}

.work-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
}

.work-media img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  will-change: transform;
  transition: transform 0.6s var(--ease); 
}

.work:hover .work-media img { transform: scale(1.04); }

.work-media.is-empty { background: color-mix(in srgb, var(--ink) 8%, var(--surface)); }

.work--docinhos .work-media.is-empty {
  background: linear-gradient(150deg, #fff6ec 0%, #fbeada 45%, #d4826f 100%);
}
.work--inventty .work-media.is-empty {
  background: linear-gradient(150deg, #2a2a2e 0%, #4a3a1e 55%, #d4af37 100%);
}
.work--prajacar .work-media.is-empty {
  background: linear-gradient(150deg, #1a1a1a 0%, #111 55%, #17c964 100%);
}

.steps { display: grid; gap: 0; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); } }

.step {
  padding: clamp(30px, 3.4vw, 52px);
  background: var(--surface);
  border-radius: var(--r);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform var(--dur) var(--ease);
}

.step:hover { transform: translateY(-5px); }
.step + .step { margin-top: var(--grid-gap); }
@media (min-width: 720px) { .step + .step { margin-top: 0; } }

.step-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}

.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); max-width: 40ch; }

.ftr { padding-bottom: 28px; }

.cta {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: clamp(24px, 3vw, 32px);
  padding: clamp(64px, 9vw, 128px) var(--pad-x);
  text-align: center;
}

.cta h2 { color: var(--on-dark); }
.cta .lead { max-width: 44ch; margin: 20px auto 0; color: var(--on-dark-soft); }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  margin-top: clamp(32px, 3.6vw, 44px);
}

.cta-actions .btn-lg { font-size: 1rem; }

.ftr-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  padding-top: 32px;
  font-size: 0.875rem;
  color: var(--ink-mute);
}

.ftr-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.ftr-links a { transition: color var(--dur) var(--ease); }
.ftr-links a:hover { color: var(--accent); }

@media (max-width: 599px) {
  .ftr-bottom { justify-content: center; text-align: center; }
}

.legal { padding-top: 148px; padding-bottom: var(--sec-y); }
.legal-inner { max-width: 760px; }
.legal h1 { margin-bottom: 12px; }
.legal-date { font-size: 0.9375rem; color: var(--ink-mute); margin-bottom: clamp(36px, 5vw, 56px); }
.legal h2 {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 500;
  margin-top: clamp(36px, 4vw, 52px);
  margin-bottom: 12px;
}
.legal p, .legal li { color: var(--ink-soft); font-size: 1.0625rem; }
.legal p + p { margin-top: 14px; }
.legal ul { margin-top: 12px; display: grid; gap: 10px; }
.legal li { position: relative; padding-left: 22px; }
.legal li::before {
  content: "";
  position: absolute;
  left: 4px; top: 0.7em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.legal a:not(.btn) { color: var(--ink); border-bottom: 1px solid var(--line); }
.legal a:not(.btn):hover { color: var(--accent); border-color: var(--accent); }
.legal-back { display: inline-flex; margin-top: clamp(40px, 5vw, 64px); }

.js [data-opai-animate] { opacity: 0; translate: 0 14px; }
.js [data-text-reveal] { opacity: 0; }

.js [data-reveal-children] > * { opacity: 0; translate: 0 8px; }

@media (prefers-reduced-motion: reduce) {
  .js:not(.force-motion) [data-reveal-children] > * { translate: none; }
}

.rv-l {
  display: block;
  overflow: hidden;
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
}

.rv-li { display: block; }

@media (prefers-reduced-motion: reduce) {
  .js:not(.force-motion) [data-opai-animate] { translate: none; }
}