:root {
  --black: #0d0d0f;
  --black-soft: #151517;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --paper: #f1f1ee;
  --ink: #151517;
  --muted: #68686d;
  --muted-light: #a5a5aa;
  --line: #e4e4e1;
  --line-dark: rgba(255,255,255,.13);
  --red: #bc002d;
  --red-dark: #980024;
  --red-bright: #e0002b;
  --max: 1240px;
  --radius: 22px;
}

/* =========================
   BASE
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  padding-top: 82px;
}

section[id] {
  scroll-margin-top: 106px;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(3.2rem, 6.6vw, 6.7rem);
  line-height: .97;
  font-weight: 700;
}

h2 {
  font-size: clamp(2.25rem, 4.3vw, 4.3rem);
  line-height: 1.04;
  font-weight: 700;
}

h3 {
  line-height: 1.2;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(224,0,43,.35);
  outline-offset: 4px;
  border-radius: 6px;
}


/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(15,15,17,.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.brand-name {
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.brand-name span {
  color: var(--red);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  color: #5f5f64;
  font-size: .82rem;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--red);
  transition: right .2s ease;
}

.main-nav a:hover {
  color: var(--black);
}

.main-nav a:hover::after {
  right: 0;
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease;
}

.header-cta:hover {
  background: var(--red);
  transform: translateY(-1px);
}


/* =========================
   ELEMENTOS GERAIS
========================= */

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 122px 0;
}

.section-soft {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--off-white);
}

.dark-section {
  width: 100%;
  max-width: none;
  padding: 122px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--black);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ff3156;
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading h2 span {
  display: block;
  color: #6d6d72;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.12fr .58fr;
  gap: 88px;
  align-items: end;
}

.section-heading.split > p {
  margin: 0;
  color: var(--muted);
}

.button {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover {
  background: #f2f2f0;
}

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: .88rem;
  font-weight: 700;
}

.text-link-light {
  color: #d0d0d3;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 760px;
  padding: 112px max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 83% 16%, rgba(188,0,45,.19), transparent 29rem),
    var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(340px,.65fr);
  gap: 84px;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -210px;
  bottom: -310px;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 930px;
  margin-bottom: 34px;
}

.hero h1 span {
  display: block;
  margin-top: .12em;
  color: #d4d4d7;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 0;
  color: #bdbdc2;
  font-size: clamp(1.05rem,1.55vw,1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.microcopy {
  max-width: 630px;
  margin: 17px 0 0;
  color: #85858b;
  font-size: .79rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 410px;
  justify-self: end;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.hero-visual::before {
  width: 340px;
  height: 340px;
  right: 18px;
  top: 20px;
}

.hero-visual::after {
  width: 225px;
  height: 225px;
  right: 75px;
  top: 77px;
  border-style: dashed;
}

.hero-mark {
  position: absolute;
  z-index: 2;
  right: 140px;
  top: 142px;
}

.hero-mark img {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  box-shadow: 0 22px 70px rgba(0,0,0,.38);
}

.hero-principle {
  position: absolute;
  z-index: 3;
  min-width: 148px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(18,18,20,.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-principle span {
  display: block;
  margin-bottom: 5px;
  color: #ff3156;
  font-size: .67rem;
  font-weight: 800;
}

.hero-principle strong {
  font-size: .86rem;
}

.principle-a {
  right: 0;
  top: 55px;
}

.principle-b {
  left: 0;
  bottom: 105px;
}

.principle-c {
  right: 32px;
  bottom: 20px;
  background: var(--red);
  border-color: var(--red);
}

.principle-c span {
  color: #ffd8e0;
}


/* =========================
   IDENTIFICAÇÃO
========================= */

.recognition {
  border-top: 1px solid var(--line);
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.recognition-card {
  min-height: 220px;
  padding: 28px 28px 30px 0;
  border-right: 1px solid var(--line);
}

.recognition-card:not(:first-child) {
  padding-left: 28px;
}

.recognition-card:last-child {
  border-right: 0;
}

.recognition-card span {
  color: var(--red);
  font-size: .71rem;
  font-weight: 800;
}

.recognition-card p {
  margin: 65px 0 0;
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.5;
}

.recognition-note {
  max-width: 800px;
  margin: 48px 0 0 auto;
}

.recognition-note p {
  margin-bottom: 9px;
  color: var(--muted);
}

.recognition-note strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.5;
  letter-spacing: -.025em;
}


/* =========================
   PRINCÍPIO
========================= */

.principle-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 110px;
  align-items: start;
}

.principle-copy {
  max-width: 600px;
  color: #a5a5aa;
}

.principle-copy p {
  margin-bottom: 11px;
}

.statement {
  max-width: 630px;
  margin: 46px 0 0;
  color: var(--white);
  font-size: clamp(1.35rem,2vw,1.75rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.035em;
}

.statement span {
  display: block;
  margin-top: 9px;
  color: #a6a6ab;
}

.principle-grid {
  border-top: 1px solid var(--line-dark);
}

.principle-grid article {
  padding: 31px 0;
  border-bottom: 1px solid var(--line-dark);
}

.principle-grid article > span {
  color: #ff3156;
  font-size: .7rem;
  font-weight: 800;
}

.principle-grid h3 {
  margin: 28px 0 10px;
  font-size: 1.45rem;
}

.principle-grid p {
  max-width: 610px;
  margin: 0;
  color: #9e9ea4;
}


/* =========================
   SOLUÇÃO
========================= */

.deliverables {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.deliverable {
  min-height: 235px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.deliverable > span {
  color: var(--red);
  font-size: .7rem;
  font-weight: 800;
}

.deliverable h3 {
  margin: 57px 0 10px;
  font-size: 1.11rem;
}

.deliverable p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.strategy-line {
  margin: 58px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--red);
  font-size: clamp(1.4rem,2.1vw,1.9rem);
  font-weight: 700;
  letter-spacing: -.035em;
}


/* =========================
   PROJETOS
========================= */

.projects {
  border-top: 1px solid var(--line);
}

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

.project-card {
  min-height: 555px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.project-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-mark {
  min-height: 180px;
  margin: 30px 0 34px;
  display: grid;
  place-items: center;
  font-size: 2.55rem;
  font-weight: 700;
  letter-spacing: -.05em;
  border-radius: 14px;
}

.mark-juliane {
  background: #ead9e1;
  color: #6c3650;
}

.mark-yui {
  background: #e8ddd2;
  color: #6a5145;
}

.mark-aej {
  background: #111;
  color: #fff;
}

.mark-ibj {
  background: #29252a;
  color: #e96158;
}

.project-card h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.project-card > p {
  color: var(--muted);
}

.project-card ul {
  padding: 0;
  margin: 10px 0 28px;
  list-style: none;
  color: #77777c;
  font-size: .77rem;
}

.project-card li {
  display: inline;
}

.project-card li:not(:last-child)::after {
  content: " · ";
}

.project-card a {
  margin-top: auto;
  font-size: .84rem;
  font-weight: 800;
}

.project-card a:hover {
  color: var(--red);
}


/* =========================
   COMO TRABALHO
========================= */

.work-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 105px;
  align-items: start;
}

.work-copy {
  padding-top: 24px;
}

.work-copy > p {
  max-width: 650px;
  color: var(--muted);
}

.work-copy strong {
  color: var(--ink);
}

blockquote {
  margin: 48px 0 0;
  padding: 0 0 0 22px;
  border-left: 3px solid var(--red);
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.035em;
}


/* =========================
   FORMATOS
========================= */

.formats {
  border-top: 1px solid var(--line);
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.format-card {
  position: relative;
  min-height: 590px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.format-card-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.format-number {
  color: var(--red);
  font-size: .71rem;
  font-weight: 800;
}

.card-label {
  position: absolute;
  top: 38px;
  right: 38px;
  padding: 6px 9px;
  border: 1px solid currentColor;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .65;
}

.format-card h3 {
  max-width: 460px;
  margin: 58px 0 18px;
  font-size: clamp(2rem,3vw,3.05rem);
}

.format-card > p:not(.format-number):not(.card-label) {
  max-width: 520px;
  color: var(--muted);
}

.format-card-dark > p:not(.format-number):not(.card-label) {
  color: #9d9da3;
}

.format-card ul {
  padding: 22px 0;
  margin: 20px 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.format-card-dark ul {
  border-color: var(--line-dark);
}

.format-card li {
  padding: 5px 0;
  font-size: .91rem;
}

.format-card li::before {
  content: "—";
  margin-right: 11px;
  color: var(--red);
}

.format-link {
  margin-top: auto;
  font-size: .85rem;
  font-weight: 800;
}

.format-link:hover {
  color: var(--red);
}


/* =========================
   PROCESSO
========================= */

.process {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 110px;
  align-items: start;
}

.process-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: #a5a5aa;
}

.process-copy small {
  display: block;
  margin-top: 14px;
  color: #77777e;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.process-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-list li > span {
  color: #ff3156;
  font-size: .7rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.17rem;
}

.process-list p {
  max-width: 620px;
  margin: 0;
  color: #9e9ea4;
}


/* =========================
   PARA QUEM É
========================= */

.fit-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 110px;
  align-items: start;
}

.fit-content {
  padding-top: 18px;
}

.fit-lead {
  font-weight: 700;
}

.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.fit-note {
  margin-top: 44px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--off-white);
}

.fit-note h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
}

.fit-note p {
  margin: 0;
  color: var(--muted);
}


/* =========================
   AVALIAÇÃO
========================= */

.evaluation-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
  align-items: start;
}

.evaluation-copy {
  padding-top: 16px;
}

.evaluation-copy > p {
  color: var(--muted);
}

.evaluation-copy ul {
  padding: 0;
  margin: 25px 0 30px;
  list-style: none;
  border-top: 1px solid #dcdcd8;
}

.evaluation-copy li {
  padding: 13px 0;
  border-bottom: 1px solid #dcdcd8;
  color: var(--muted);
}

.evaluation-copy .button {
  margin-top: 8px;
}

.evaluation-copy small {
  display: block;
  margin-top: 13px;
  color: #717176;
}


/* =========================
   FAQ
========================= */

.faq {
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: 900px;
  margin-left: auto;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 27px 55px 27px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 22px;
  font-size: 1.7rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 720px;
  padding: 0 0 27px;
  margin: 0;
  color: var(--muted);
}


/* =========================
   CTA FINAL
========================= */

.final-cta {
  width: 100%;
  padding: 112px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--red);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 90px;
  align-items: end;
}

.final-cta .eyebrow-light {
  color: #ffc7d1;
}

.final-cta h2 {
  max-width: 880px;
}

.final-cta h2 span {
  display: block;
  color: #ffdce4;
}

.final-cta > div > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255,255,255,.83);
}

.final-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-action span {
  color: #ffd5de;
  font-size: .75rem;
  text-align: center;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 56px max(24px, calc((100vw - var(--max)) / 2)) 25px;
  background: var(--black);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr .55fr .6fr;
  gap: 48px;
  align-items: start;
}

.footer-brand-block p {
  margin: 13px 0 0;
  color: #86868c;
  font-size: .82rem;
}

.footer-person {
  display: grid;
  gap: 2px;
}

.footer-person strong {
  font-size: .9rem;
}

.footer-person span {
  color: #86868c;
  font-size: .8rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.footer-links a {
  color: #9d9da3;
  font-size: .82rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 43px;
  padding-top: 21px;
  border-top: 1px solid var(--line-dark);
  color: #7a7a80;
  font-size: .76rem;
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1020px) {

  .main-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 65px;
    min-height: auto;
    padding-top: 92px;
  }

  .hero-visual {
    max-width: 540px;
    justify-self: center;
  }

  .principle-section,
  .work-grid,
  .process,
  .fit-grid,
  .evaluation-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .deliverables {
    grid-template-columns: repeat(2,1fr);
  }

  .footer-main {
    grid-template-columns: 1.1fr .9fr;
  }

  .footer-links {
    grid-column: 1 / -1;
  }

}

@media (max-width: 760px) {

  main {
    padding-top: 70px;
  }

  section[id] {
    scroll-margin-top: 88px;
  }

  .site-header {
    height: 70px;
  }

  .header-inner {
    width: calc(100% - 32px);
  }

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

  .brand-name {
    font-size: .92rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: .72rem;
  }

  .hero {
    padding: 72px 17px 82px;
  }

  .hero h1 {
    font-size: clamp(2.8rem,13vw,4.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

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

  .text-link {
    text-align: center;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual::before {
    width: 280px;
    height: 280px;
    right: calc(50% - 140px);
  }

  .hero-visual::after {
    width: 185px;
    height: 185px;
    right: calc(50% - 92px);
  }

  .hero-mark {
    right: calc(50% - 43px);
    top: 119px;
  }

  .hero-mark img {
    width: 86px;
    height: 86px;
  }

  .principle-a {
    right: 0;
    top: 36px;
  }

  .principle-b {
    left: 0;
    bottom: 80px;
  }

  .principle-c {
    right: 12px;
    bottom: 0;
  }

  .section {
    width: calc(100% - 34px);
    padding: 82px 0;
  }

  .section-soft {
    width: 100%;
    padding-left: 17px;
    padding-right: 17px;
  }

  .dark-section {
    padding: 84px 17px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .recognition-grid,
  .deliverables,
  .project-grid,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .recognition-card,
  .recognition-card:not(:first-child) {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .recognition-card p {
    margin-top: 28px;
  }

  .recognition-note {
    margin-top: 38px;
  }

  .deliverable {
    min-height: auto;
  }

  .deliverable h3 {
    margin-top: 39px;
  }

  .project-card {
    min-height: 530px;
  }

  .format-card {
    min-height: 560px;
    padding: 31px 24px;
  }

  .card-label {
    top: 29px;
    right: 24px;
  }

  .process-list li {
    grid-template-columns: 45px 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 84px 17px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column: auto;
  }

}

@media (max-width: 430px) {

  .brand-name {
    display: none;
  }

  .header-cta {
    padding-inline: 13px;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-principle {
    min-width: 128px;
    padding: 11px 13px;
  }

  .project-card {
    padding: 25px 21px;
  }

}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

}


/* =========================================================
   V3 — CORREÇÕES DE DESKTOP E PROTEÇÃO CONTRA ESTILOS ANTIGOS
   ========================================================= */

.site-header,
.header-inner,
.brand {
  overflow: visible;
}

.site-header {
  min-height: 82px;
}

.header-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.brand img {
  flex: 0 0 40px;
  min-width: 40px;
  min-height: 40px;
}

.section-heading.split {
  align-items: start;
}

.section-heading.split > p {
  max-width: 430px;
  padding-top: 48px;
  justify-self: end;
}

.principle-section,
.work-grid,
.process,
.fit-grid,
.evaluation-grid {
  align-items: start;
}

.principle-intro h2,
.work-grid h2,
.process-copy h2,
.fit-grid h2,
.evaluation-grid h2 {
  max-width: 680px;
}

.solution .section-heading,
.projects .section-heading,
.formats .section-heading {
  margin-bottom: 70px;
}

@media (min-width: 1021px) {
  .hero-copy {
    padding-right: 12px;
  }

  .recognition,
  .solution,
  .projects,
  .formats,
  .fit,
  .faq {
    padding-top: 118px;
    padding-bottom: 118px;
  }

  .work {
    padding-top: 118px;
    padding-bottom: 118px;
  }

  .principle-section,
  .process {
    padding-top: 118px;
    padding-bottom: 118px;
  }

  .evaluation {
    padding-top: 118px;
    padding-bottom: 118px;
  }
}

@media (max-width: 1020px) {
  .section-heading.split > p {
    max-width: 720px;
    padding-top: 0;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
  }

  .brand img {
    flex-basis: 35px;
    min-width: 35px;
    min-height: 35px;
  }
}
