/* ====== Line — tokens ====== */
:root {
  --bg: #0e0e0e;
  --fg: #ffffff;
  --ink: #0e0e0e;
  --muted: rgba(14, 14, 14, 0.6);
  --line: rgba(144, 143, 146, 0.24);
  --card: #ffffff;
  --step: #1a3dc9;
  --placeholder: #d9d9d9;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: #0e0e0e;
  color: #fff;
  font-family: 'Urbanist', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased
}

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

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

/* full width canvas */
.canvas {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1280px;
  max-width: calc(100vw - 40px);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(14, 14, 14, 0.08);
  border-radius: 100px;
  padding: 10px 14px 10px 24px;
}

.nav.dark {
  background: rgba(14, 14, 14, 0.7);
  border-color: rgba(255, 255, 255, 0.1)
}

.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: 'Urbanist';
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em
}

.nav.dark .brand {
  color: #fff
}

.nav .brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0e0e0e
}

.nav.dark .brand .dot {
  background: #fff
}

.nav ul {
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
  justify-content: center
}

.nav li button {
  all: unset;
  cursor: pointer;
  font-family: 'Urbanist';
  font-size: 13.3px;
  letter-spacing: 0.1em;
  color: #0e0e0e;
  padding: 14px 20px;
  border-radius: 999px;
  transition: background .15s, color .15s;
}

.nav.dark li button {
  color: #fff
}

.nav li button:hover {
  background: rgba(14, 14, 14, 0.06)
}

.nav.dark li button:hover {
  background: rgba(255, 255, 255, 0.08)
}

.nav li button.active {
  background: #0e0e0e;
  color: #fff
}

.nav.dark li button.active {
  background: #fff;
  color: #0e0e0e
}

.nav .cta {
  padding: 12px 22px;
  border-radius: 999px;
  background: #0e0e0e;
  color: #fff;
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}

.nav.dark .cta {
  background: #fff;
  color: #0e0e0e
}

/* ===== Page shells ===== */
.page-light {
  background: #fff;
  color: #0e0e0e;
  position: relative;
  overflow: hidden
}

.page-dark {
  background: #0e0e0e;
  color: #fff;
  position: relative;
  overflow: hidden
}

/* ===== Headings ===== */
.h-xxl {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 96px;
  line-height: 93px;
  text-align: center
}

.h-xl {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 68px;
  line-height: 93px;
  text-align: center
}

.h-lg {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 58px;
  line-height: 61px;
  text-align: center
}

.h-md {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 48px;
  line-height: 50px
}

.h-sm {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 40px;
  line-height: 42px
}

.body-lg {
  font-family: 'Urbanist';
  font-size: 22px;
  line-height: 34px
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 96px 48px;
}

.hero .kicker {
  font-family: 'Urbanist';
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #fff;
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero .title {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 150px;
  line-height: 0.92;
  text-align: center;
  letter-spacing: -0.03em;
}

.hero .title em {
  font-style: italic;
  font-weight: 700;
  color: #cba267;
}

.hero .sub {
  margin-top: 28px;
  max-width: 820px;
  text-align: center;
  font-family: 'Urbanist';
  font-size: 22px;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-marquee {
  margin-top: 40px;
  display: flex;
  gap: 48px;
  align-items: center;
  opacity: .45;
  font-family: 'Urbanist';
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
}

/* ===== Soluções cards (home) ===== */
.sol-section {
  padding: 120px 113px 180px;
  position: relative
}

.sol-grid {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center
}

.sol-row {
  display: flex;
  gap: 18px
}

.sol-card {
  width: 290px;
  background: #fff;
  color: #0e0e0e;
  border-radius: 18px;
  border: 1px solid rgba(144, 143, 146, 0.24);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.sol-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.15);
}

.sol-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fafafa;
  border: 1px solid rgba(144, 143, 146, 0.24);
  display: grid;
  place-items: center;
}

.sol-card .icon svg {
  width: 28px;
  height: 28px;
  color: #0e0e0e
}

.sol-card .t {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  color: #0e0e0e
}

.sol-card .d {
  font-family: 'Urbanist';
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  color: rgba(14, 14, 14, 0.6)
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 406px;
  height: 56px;
  border-radius: 8px;
  background: #0e0e0e;
  color: #fff;
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.002em;
  border: 0;
  cursor: pointer;
  padding: 0 40px;
  transition: transform .2s, opacity .2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: .9
}

.btn-primary.inverse {
  background: #fff;
  color: #0e0e0e
}

.center {
  display: flex;
  justify-content: center
}

/* ===== White curved section ===== */
.curved {
  background: #fff;
  color: #0e0e0e;
  border-radius: 128px 128px 0 0;
  padding: 120px 96px 96px;
  position: relative;
}

.curved.dark {
  background: #0e0e0e;
  color: #fff;
  border-radius: 128px 128px 0 0
}

/* ===== Process diagram ===== */
.process {
  margin: 72px auto 0;
  width: 820px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px
}

.process .arch {
  width: 820px;
  height: 260px;
  position: relative;
  background:
    radial-gradient(closest-side at 50% 100%, transparent 58%, transparent 58.5%),
    conic-gradient(from 180deg at 50% 100%, #0e0e0e 0 180deg, transparent 180deg);
  -webkit-mask: radial-gradient(closest-side at 50% 100%, transparent 62%, #000 62.5%);
  mask: radial-gradient(closest-side at 50% 100%, transparent 62%, #000 62.5%);
}

.process .arch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 180deg at 50% 100%,
      oklch(0.66 0.18 25) 0 40deg,
      oklch(0.76 0.15 60) 40deg 80deg,
      oklch(0.82 0.12 100) 80deg 120deg,
      oklch(0.72 0.16 260) 120deg 160deg,
      oklch(0.55 0.22 285) 160deg 180deg,
      transparent 180deg);
  opacity: 0;
}

.step-num {
  width: 48px;
  height: 45px;
  border-radius: 4px;
  background: #1a3dc9;
  color: #fff;
  font-family: 'Urbanist';
  font-size: 30.5px;
  line-height: 1;
  display: grid;
  place-items: center;
  letter-spacing: 0.02em;
}

.step-label {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #000223;
  text-align: center;
  max-width: 164px;
  line-height: 19px
}

.process-ring {
  width: 820px;
  height: 420px;
  position: relative;
  margin: 56px auto 0;
}

.process-ring .hemi {
  position: absolute;
  inset: 0;
  border-radius: 820px 820px 0 0;
  border: 42px solid #0e0e0e;
  border-bottom: 0;
  box-sizing: border-box;
}

.process-ring .hemi::before {
  content: "";
  position: absolute;
  inset: -42px;
  border-radius: 820px 820px 0 0;
  background: conic-gradient(from 180deg at 50% 100%,
      #d04a2b 0 28deg, #d98b3a 28deg 60deg, #e7c26a 60deg 95deg,
      #f3dba0 95deg 110deg, #9aa7e8 110deg 140deg, #5b6ad6 140deg 170deg,
      #2a1e8a 170deg 180deg, transparent 180deg 360deg);
  -webkit-mask: radial-gradient(circle at 50% 100%, transparent 368px, #000 368px, #000 410px, transparent 410px);
  mask: radial-gradient(circle at 50% 100%, transparent 368px, #000 368px, #000 410px, transparent 410px);
}

.process-ring .node {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 10px 16px;
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 14px;
  color: #000223;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, .25);
  white-space: nowrap;
}

/* ===== Image placeholders ===== */
.ph {
  background:
    repeating-linear-gradient(45deg, rgba(14, 14, 14, 0.04) 0 10px, rgba(14, 14, 14, 0.08) 10px 20px),
    #d9d9d9;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14, 14, 14, 0.45);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
}

.ph.dark {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 10px, rgba(255, 255, 255, 0.08) 10px 20px),
    #1a1a1a;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== Artes (home) ===== */
.artes {
  padding: 120px 32px 96px
}

.artes h2 {
  margin: 0 0 56px
}

.artes .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.artes .ph {
  height: 688px
}

/* ===== Vídeos grid (home) ===== */
.videos-grid {
  padding: 96px 32px 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px
}

.videos-grid .ph {
  height: auto;
  aspect-ratio: 9/16
}

.videos-grid .tall {
  grid-column: span 4;
  aspect-ratio: 16/9
}

/* ===== Todo pedaço ===== */
.todo-pedaco {
  padding: 120px 32px 96px
}

.todo-pedaco .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.todo-pedaco .cards img {
  max-width: 100%;
  max-height: 75vh;
  height: auto;
  object-fit: contain;
  border-radius: 24px
}

/* ===== Testimonials ===== */
.testi {
  display: flex;
  gap: 18px;
  padding: 0 96px 96px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.testi::-webkit-scrollbar {
  display: none
}

.testi:active {
  cursor: grabbing
}

.testi .card {
  width: 380px;
  flex-shrink: 0;
  background: #fff;
  color: #0e0e0e;
  border-radius: 18px;
  padding: 24px;
  user-select: none;
}

.testi .card * {
  pointer-events: none
}

.testi .row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px
}

.testi .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, oklch(0.72 0.12 45), oklch(0.55 0.18 25));
}

.testi .name {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 18px
}

.testi .role {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 14px;
  color: #717276
}

.testi hr {
  border: 0;
  border-top: 1px solid #e9eff5;
  margin: 0 0 16px
}

.testi .q {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #0e0e0e
}

/* ===== Footer ===== */
.footer {
  padding: 56px 32px 48px;
  background: #0e0e0e;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px
}

.footer h3 {
  font-family: 'Urbanist';
  font-size: 40px;
  line-height: 42px;
  font-weight: 400;
  margin: 0 0 28px;
  max-width: 468px
}

.footer .contacts {
  display: flex;
  gap: 23px
}

.footer .pill {
  border: 1px solid #fff;
  border-radius: 18px;
  padding: 14px 20px;
  font-family: 'Urbanist';
  font-size: 20px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.footer .insta {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  margin-top: 24px;
  cursor: pointer;
}

.footer .meta {
  display: flex;
  gap: 28px;
  font-family: 'Urbanist';
  font-size: 15px
}

.footer .meta .muted {
  opacity: .5
}

/* ===== Service page shell ===== */
.svc {
  padding: 143px 0 0
}

.svc .heading {
  text-align: center;
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 68px;
  line-height: 93px;
  color: #0e0e0e;
  margin-bottom: 28px
}

.svc .tabs {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 120px
}

.svc .tabs button {
  all: unset;
  cursor: pointer;
  padding: 8px 0;
  font-family: 'Urbanist';
  font-size: 18px;
  color: #0e0e0e;
  border-bottom: 2px solid transparent;
  transition: opacity .2s, border-color .2s;
  opacity: 0.5;
}

.svc .tabs button:hover {
  opacity: 1
}

.svc .tabs button.active {
  opacity: 1;
  border-bottom-color: #0e0e0e
}

.svc .big {
  text-align: center;
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 58px;
  line-height: 61px;
  color: #0e0e0e;
  max-width: 990px;
  margin: 0 auto 96px;
  padding: 0 24px;
}

.svc .two-col {
  display: grid;
  grid-template-columns: 541px 1fr;
  gap: 128px;
  padding: 0 149px;
  align-items: start
}

.svc .two-col h3 {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  margin: 0 0 48px;
  color: #0e0e0e
}

.svc .two-col p {
  font-family: 'Urbanist';
  font-size: 22px;
  line-height: 34px;
  color: #0e0e0e;
  white-space: pre-wrap;
  margin: 0
}

.svc .two-col .media {
  height: 648px;
  background: #d9d9d9;
  border-radius: 28px
}

.svc .media-strip {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 32px;
  margin: 96px 0
}

.svc .media-strip .ph {
  height: 688px
}

.svc .partners {
  display: flex;
  gap: 64px;
  justify-content: center;
  align-items: center;
  margin: 120px 0 40px;
  padding: 0 96px;
}

.svc .partners img {
  height: 200px;
  width: auto;
  object-fit: contain
}

.svc .partners .x {
  font-family: 'Urbanist';
  font-weight: 800;
  font-size: 180px;
  color: #0e0e0e;
  line-height: 1
}

.svc .closing {
  max-width: 990px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
  font-family: 'Urbanist';
  font-size: 22px;
  line-height: 34px;
  color: #0e0e0e;
}

.svc .closing-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 120px
}

/* Social: logos de marcas */
.brands {
  padding: 64px 31px 120px
}

.brands h2 {
  margin: 0 0 56px;
  text-align: center;
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 58px;
  line-height: 61px;
  color: #000
}

.brands .row {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.brands .row .brand-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands .row .brand-logo-wrapper img {
  width: auto;
  transition: all 0.4s ease;
}

.brands .row .brand-logo-wrapper img:hover {
  transform: scale(1.05);
}

/* Padronização de tamanho (caixa invisível) para desktop e tablet */
.brands .row .brand-logo-wrapper img,
.brands .row .brand-logo-wrapper:nth-child(1) img,
.brands .row .brand-logo-wrapper:nth-child(2) img,
.brands .row .brand-logo-wrapper:nth-child(3) img,
.brands .row .brand-logo-wrapper:nth-child(4) img {
  height: 85px !important;
  width: 220px !important;
  object-fit: contain !important;
}

/* Tráfego: highlight text */
.traf-highlight {
  text-align: center;
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 58px;
  line-height: 61px;
  color: #0e0e0e;
  max-width: 1067px;
  margin: 96px auto 48px;
  padding: 0 24px;
}

/* Design — gallery grid */
.design-gallery {
  padding: 0 78px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 96px 0 0
}

.design-gallery .ph {
  height: 676px;
  border-radius: 39px
}

.design-hero {
  padding: 0 78px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 96px 0
}

.design-hero .ph {
  height: 676px
}

.design-hero img,
.design-gallery img,
.todo-pedaco .cards img {
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {

  .design-hero img:hover,
  .design-gallery img:hover,
  .todo-pedaco .cards img:hover {
    transform: scale(1.02) !important;
  }
}

/* Todos: cards grid */
.todos-grid {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 48px 0 96px
}

.todos-row {
  display: flex;
  gap: 28px
}

.todos-card {
  flex: 1;
  height: 560px;
  background: #d9d9d9;
  border-radius: 28px;
  position: relative;
  overflow: hidden
}

.todos-card .tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Contact form inline on home */
.line-small {
  opacity: .5;
  font-size: 15.5px
}

/* Small utility */
.spacer-40 {
  height: 40px
}

.spacer-80 {
  height: 80px
}

.spacer-120 {
  height: 120px
}

/* Hero artwork line */
.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 600px at 50% 30%, rgba(203, 162, 103, 0.14), transparent 70%),
    radial-gradient(ellipse 1200px 800px at 50% 90%, rgba(26, 61, 201, 0.12), transparent 70%);
}

/* ===== Chatbot (IA Page) ===== */
.chatbot {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f5f5f7;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(14, 14, 14, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.chat-window {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-bubble {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 18px;
  font-family: 'Urbanist';
  font-size: 18px;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
}

.chat-bubble.user {
  align-self: flex-end;
  background: #0e0e0e;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-bubble.bot {
  align-self: flex-start;
  background: #fff;
  color: #0e0e0e;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(14, 14, 14, 0.08);
}

.chat-typing {
  align-self: flex-start;
  font-family: 'Urbanist';
  font-size: 14px;
  color: rgba(14, 14, 14, 0.5);
  margin-left: 8px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}

@keyframes line-border-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.chat-input-area {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  background: #fff;
  border-top: 1px solid rgba(14, 14, 14, 0.08);
}

.chat-input-area input {
  flex: 1;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(14, 14, 14, 0.2);
  padding: 0 20px;
  font-family: 'Urbanist';
  font-size: 18px;
  outline: none;
}

.chat-input-area input:focus {
  border-color: #0e0e0e;
}

.chat-input-area button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0e0e0e;
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity .2s;
}

.chat-input-area button:hover {
  opacity: 0.8;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .h-xxl {
    font-size: 64px;
    line-height: 1.05;
  }

  .h-xl {
    font-size: 52px;
    line-height: 1.1;
  }

  .h-lg {
    font-size: 44px;
    line-height: 1.1;
  }

  .sol-section {
    padding: 80px 48px 120px;
  }

  .svc .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 48px;
  }

  .design-gallery,
  .design-hero {
    padding: 0 48px;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 64px 24px 80px;
  }

  .videos-grid .tall {
    grid-column: span 2;
  }

  .testi {
    padding: 0 48px 80px;
  }
}

@media (max-width: 768px) {

  /* Headings */
  .h-xxl {
    font-size: 38px;
    line-height: 1.1;
  }

  .h-xl {
    font-size: 34px;
    line-height: 1.1;
  }

  .h-lg {
    font-size: 30px;
    line-height: 1.15;
  }

  .h-md {
    font-size: 26px;
    line-height: 1.2;
  }

  .h-sm {
    font-size: 22px;
    line-height: 1.25;
  }

  .body-lg {
    font-size: 18px;
    line-height: 1.65;
  }

  /* Hero */
  .hero {
    height: auto;
    min-height: 100svh;
    padding: 80px 24px 48px;
  }

  /* Sol */
  .sol-section {
    padding: 64px 20px 96px;
  }

  .sol-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .sol-card {
    width: 100%;
    max-width: 400px;
  }

  /* Curved */
  .curved {
    padding: 64px 24px 64px;
    border-radius: 56px 56px 0 0;
  }

  /* Videos grid */
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 16px 56px;
    gap: 14px;
  }

  .videos-grid .tall {
    grid-column: span 2;
  }

  /* Todo pedaço */
  .todo-pedaco {
    padding: 64px 20px 56px;
  }

  /* Testimonials */
  .testi {
    padding: 0 16px 56px;
  }

  .testi .card {
    width: 300px;
  }

  /* Footer */
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 24px 40px;
    gap: 40px;
  }

  .footer h3 {
    font-size: 26px;
    line-height: 1.35;
    margin-bottom: 20px;
  }

  .footer .contacts {
    flex-direction: column;
    gap: 12px;
  }

  .footer .meta {
    flex-direction: column;
    gap: 8px;
  }

  /* Service shell */
  .svc {
    padding: 96px 0 0;
  }

  .svc .heading {
    font-size: 36px;
    line-height: 1.2;
  }

  .svc .tabs {
    gap: 16px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 20px;
    scrollbar-width: none;
    flex-wrap: nowrap;
    margin-bottom: 56px;
  }

  .svc .tabs::-webkit-scrollbar {
    display: none;
  }

  .svc .tabs button {
    font-size: 14px;
    white-space: nowrap;
  }

  .svc .big {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 48px;
  }

  .svc .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
  }

  .svc .two-col h3 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .svc .two-col p {
    font-size: 17px;
    line-height: 1.7;
  }

  .svc .two-col .media {
    height: 280px;
  }

  .svc .media-strip {
    padding: 0 16px;
    margin: 48px 0;
  }

  .svc .media-strip .ph {
    height: 260px;
  }

  .svc .partners {
    padding: 0 20px;
    gap: 24px;
    margin: 56px 0 28px;
    flex-wrap: wrap;
  }

  .svc .partners img {
    height: 100px;
  }

  .svc .closing {
    font-size: 17px;
    line-height: 1.7;
    padding: 0 20px;
  }

  .svc .closing-cta {
    margin-bottom: 56px;
  }

  /* Brands */
  .brands {
    padding: 40px 16px 72px;
  }

  .brands h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 36px;
  }

  .brands .row {
    gap: 32px;
  }

  /* Forçando todas as logos a terem o exato mesmo tamanho em uma mesma caixa */
  .brands .row .brand-logo-wrapper img,
  .brands .row .brand-logo-wrapper:nth-child(1) img,
  .brands .row .brand-logo-wrapper:nth-child(2) img,
  .brands .row .brand-logo-wrapper:nth-child(3) img,
  .brands .row .brand-logo-wrapper:nth-child(4) img {
    height: 75px !important;
    width: 180px !important;
    object-fit: contain !important;
  }

  /* Design */
  .design-gallery {
    grid-template-columns: 1fr;
    padding: 0 16px;
    margin: 40px 0;
    gap: 14px;
  }

  .design-hero {
    grid-template-columns: 1fr;
    padding: 0 16px;
    margin: 40px 0;
    gap: 14px;
  }

  .design-gallery .ph,
  .design-hero .ph {
    height: 420px;
  }

  /* Tráfego */
  .traf-highlight {
    font-size: 28px;
    line-height: 1.2;
    margin: 48px auto 28px;
  }

  /* Artes */
  .artes .grid {
    grid-template-columns: 1fr;
  }

  .artes .ph {
    height: 360px;
  }
}

/* ===== Word Reveal mask ===== */
.word-outer {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding: 0.1em 0.1em 0.3em;
  margin: -0.1em -0.1em -0.3em;
}

.word-inner {
  display: inline-block;
  will-change: transform
}