
:root {
  --graphite: #323335;
  --ink: #1f2023;
  --paper: #f7f5f2;
  --white: #ffffff;
  --pink: #f24bae;
  --magenta: #bb0e8c;
  --blue: #3d86ce;
  --cyan: #4dc5f3;
  --muted: #686a70;
  --line: rgba(50, 51, 53, 0.14);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

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

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(1240px, calc(100% - 32px));
  height: 70px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 205px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 14px 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(11, 14, 24, 0.15);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 172px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 13px;
  font-weight: 700;
  color: #55575b;
}

.desktop-nav a,
.footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer a:hover {
  color: var(--magenta);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 12px;
  background: var(--graphite);
  color: white;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

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

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #121418;
  color: white;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-operacao.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 23, 0.96) 0%, rgba(17, 18, 23, 0.85) 43%, rgba(17, 18, 23, 0.26) 76%, rgba(17, 18, 23, 0.16) 100%),
    linear-gradient(0deg, rgba(18, 20, 24, 0.8) 0%, transparent 35%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -48% auto;
  width: 720px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 197, 243, 0.28), transparent 68%);
  filter: blur(15px);
}

.hero-brand-lines {
  position: absolute;
  inset: 0 0 auto auto;
  width: 48%;
  height: 100%;
  opacity: 0.56;
  pointer-events: none;
}

.hero-brand-lines span {
  position: absolute;
  right: -180px;
  width: 720px;
  height: 8px;
  transform: rotate(-46deg);
  border-radius: 20px;
}

.hero-brand-lines span:nth-child(1) { top: 10%; background: var(--pink); }
.hero-brand-lines span:nth-child(2) { top: 14%; background: var(--cyan); }
.hero-brand-lines span:nth-child(3) { top: 18%; background: var(--blue); }
.hero-brand-lines span:nth-child(4) { top: 22%; background: var(--magenta); }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.eyebrow.light {
  color: var(--cyan);
}

.hero h1 {
  max-width: 910px;
  margin: 0;
  font-size: clamp(52px, 6.1vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(110deg, var(--magenta), var(--pink));
  box-shadow: 0 14px 38px rgba(187, 14, 140, 0.25);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 38px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metrics {
  position: relative;
  z-index: 3;
  margin-top: -24px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: 0 24px 60px rgba(31, 32, 35, 0.13);
}

.metric-card {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 36px;
  border-right: 1px solid var(--line);
}

.metric-card:last-child {
  border: 0;
}

.metric-card::before {
  content: "";
  width: 32px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
}

.metric-card strong {
  color: var(--graphite);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.manifesto {
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.manifesto-copy {
  padding-top: 32px;
}

.manifesto-copy p {
  margin: 0 0 24px;
  color: #55575b;
  font-size: 19px;
  line-height: 1.65;
}

.manifesto-copy p:first-child {
  color: var(--graphite);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}

.history {
  background: white;
}

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

.split-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 70px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.timeline-item {
  padding-right: 28px;
}

.timeline-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  border-top: 1px solid #d8d9db;
}

.timeline-dot {
  position: absolute;
  top: -6px;
  width: 12px;
  height: 12px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 1px var(--magenta);
}

.timeline-index {
  margin-left: auto;
  color: #c4c5c8;
  font-size: 12px;
  font-weight: 900;
}

.timeline-year {
  margin: 16px 0 6px;
  color: var(--blue) !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.founders-note {
  display: grid;
  grid-template-columns: 160px 1fr 0.8fr;
  gap: 38px;
  align-items: center;
  margin-top: 90px;
  padding: 42px;
  border-radius: 24px;
  background: var(--paper);
}

.founders-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 48%, var(--magenta) 52%, var(--pink));
  font-size: 34px;
  font-weight: 900;
}

.founders-monogram span {
  margin: 0 6px;
  opacity: 0.72;
  font-size: 20px;
}

.founders-note .eyebrow {
  margin-bottom: 12px;
}

.founders-note h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.founders-note > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.brands {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.brands::before {
  content: "";
  position: absolute;
  top: -340px;
  left: -260px;
  width: 620px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(77, 197, 243, 0.14);
  filter: blur(4px);
}

.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.brand-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.brand-card {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 26px;
  color: white;
  box-shadow: 0 22px 55px rgba(31, 32, 35, 0.13);
}

.brand-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.brand-card:hover > img {
  transform: scale(1.045);
}

.brand-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 23, 28, 0.92) 0%, rgba(21, 23, 28, 0.54) 45%, rgba(21, 23, 28, 0.08) 100%);
}

.papo-card .brand-card-overlay {
  background: linear-gradient(0deg, rgba(77, 6, 57, 0.94) 0%, rgba(132, 9, 98, 0.45) 48%, rgba(20, 13, 19, 0.06) 100%);
}

.brand-card-content {
  position: absolute;
  inset: auto 42px 42px;
}

.brand-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.papo-card .brand-kicker {
  color: #ff9ad8;
}

.brand-card h3 {
  margin: 0 0 14px;
  font-size: 54px;
  letter-spacing: -0.055em;
}

.brand-card p:not(.brand-kicker) {
  max-width: 480px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
}

.operation {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
  color: white;
}

.operation::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.operation-mark {
  position: absolute;
  top: 70px;
  right: -80px;
  width: 540px;
  opacity: 0.07;
  filter: grayscale(1);
}

.operation-content {
  position: relative;
  z-index: 1;
}

.light-heading h2 {
  color: white;
}

.light-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

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

.operation-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(6px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.operation-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 197, 243, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.operation-number {
  display: block;
  margin-bottom: 52px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.operation-card:nth-child(2) .operation-number,
.operation-card:nth-child(4) .operation-number {
  color: var(--pink);
}

.operation-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.operation-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.international {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 84px;
  padding: 54px;
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(61, 134, 206, 0.32), rgba(187, 14, 140, 0.34));
}

.international-copy .eyebrow {
  margin-bottom: 14px;
}

.international h3 {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.international-copy > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.international-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.international-facts span {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  font-size: 13px;
  font-weight: 800;
}

.culture {
  background: white;
}

.culture-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.culture-lead {
  position: sticky;
  top: 130px;
  align-self: start;
}

.culture-definition {
  max-width: 470px;
  margin: 24px 0 26px;
  color: var(--magenta);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.culture-lead > p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.principle {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
}

.principle span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.principle:nth-child(even) span {
  color: var(--magenta);
}

.principle strong {
  font-size: 21px;
  letter-spacing: -0.02em;
}

.careers {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #25262a;
  color: white;
}

.careers-gradient {
  position: absolute;
  top: 50%;
  left: 35%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--blue), var(--cyan), transparent 35%, transparent 60%, var(--pink), var(--magenta));
  opacity: 0.15;
  filter: blur(45px);
}

.careers-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.careers h2 {
  max-width: 700px;
  color: white;
}

.careers-grid > div:first-child > p:last-child {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.career-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.career-tag {
  display: inline-block;
  margin-bottom: 26px;
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(77, 197, 243, 0.13);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.career-card h3 {
  margin: 0 0 14px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.career-card p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

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

.footer {
  padding: 74px 0 24px;
  background: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 64px;
}

.footer-brand img {
  width: 240px;
}

.footer-brand p {
  max-width: 420px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 180px);
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 14px;
}

.footer-links strong {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #898b8f;
  font-size: 12px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 180px 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
    padding: 13px 16px;
    border-radius: 10px;
    background: var(--paper);
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 78px;
    right: 0;
    width: min(340px, calc(100vw - 32px));
    display: flex;
    flex-direction: column;
    padding: 14px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 20px 50px rgba(31, 32, 35, 0.18);
  }

  .mobile-menu nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-menu nav a:last-child {
    border: 0;
  }

  .manifesto-grid,
  .split-heading,
  .culture-grid,
  .careers-grid {
    gap: 56px;
  }

  .operation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .founders-note {
    grid-template-columns: 130px 1fr;
  }

  .founders-note > p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section-pad {
    padding: 78px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 64px;
    grid-template-columns: 1fr auto;
    padding: 8px 10px 8px 16px;
    border-radius: 15px;
  }

  .brand img {
    width: 145px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 790px;
  }

  .hero-image {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(17, 18, 23, 0.96) 0%, rgba(17, 18, 23, 0.76) 100%);
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .hero-scroll {
    display: none;
  }

  .metrics {
    margin-top: -18px;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-card {
    min-height: 125px;
    padding: 22px;
    border-bottom: 1px solid var(--line);
  }

  .metric-card:nth-child(2) {
    border-right: 0;
  }

  .metric-card strong {
    font-size: 30px;
  }

  .manifesto-grid,
  .split-heading,
  .brand-grid,
  .culture-grid,
  .careers-grid,
  .international,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .split-heading,
  .culture-grid,
  .careers-grid,
  .international {
    gap: 38px;
  }

  .manifesto-copy {
    padding-top: 0;
  }

  .manifesto-copy p:first-child {
    font-size: 21px;
  }

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

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    padding: 0 0 38px 28px;
    border-left: 1px solid #d8d9db;
  }

  .timeline-top {
    min-height: 0;
    border-top: 0;
  }

  .timeline-dot {
    top: 4px;
    left: -34px;
  }

  .timeline-index {
    display: none;
  }

  .timeline-year {
    margin-top: 0;
  }

  .founders-note {
    grid-template-columns: 1fr;
    margin-top: 42px;
    padding: 28px;
  }

  .founders-note > p {
    grid-column: auto;
  }

  .founders-monogram {
    width: 106px;
  }

  .brand-card {
    min-height: 520px;
  }

  .brand-card-content {
    inset: auto 26px 28px;
  }

  .brand-card h3 {
    font-size: 43px;
  }

  .operation-grid {
    grid-template-columns: 1fr;
  }

  .operation-card {
    min-height: auto;
  }

  .operation-number {
    margin-bottom: 34px;
  }

  .international {
    margin-top: 50px;
    padding: 28px;
  }

  .international-facts {
    grid-template-columns: 1fr;
  }

  .culture-lead {
    position: static;
  }

  .careers {
    padding: 80px 0;
  }

  .career-card {
    padding: 28px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
