:root {
  --black: #050506;
  --ink: #0a090c;
  --paper: #f4f0f2;
  --white: #ffffff;
  --muted: #a9a5ad;
  --line: rgba(255,255,255,.14);
  --violet: #7d1cff;
  --pink: #ed38e6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--black); }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { color: #fff; background: var(--pink); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 62px;
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 100px;
  background: rgba(8,7,10,.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0,0,0,.3);
}

.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-hut { font-size: 20px; line-height: 1; font-weight: 900; letter-spacing: -.07em; }
.brand-divider { width: 1px; height: 22px; background: rgba(255,255,255,.35); }
.brand-talentos { font-size: 10px; line-height: 1.1; font-weight: 700; letter-spacing: .22em; }

.site-header nav { display: flex; align-items: center; gap: 30px; }
.site-header nav a { color: #c2bec6; font-size: 12px; transition: color .25s ease; }
.site-header nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switch {
  height: 38px;
  padding: 4px 5px;
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  background: rgba(255,255,255,.04);
}
.language-switch button {
  width: 34px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: #88838c;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: color .2s, background .2s;
}
.language-switch button.active { background: #fff; color: #111; }
.language-switch > span { width: 1px; height: 12px; background: rgba(255,255,255,.12); }

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-small { min-height: 40px; padding: 0 17px; gap: 13px; border-radius: 100px; background: linear-gradient(135deg, #8c23ff, #e02bda); }
.button-primary {
  min-width: 250px;
  background: linear-gradient(115deg, #8a20ff 0%, #e42edc 100%);
  box-shadow: 0 14px 50px rgba(174,34,242,.26);
}
.button-primary:hover { box-shadow: 0 20px 55px rgba(213,42,224,.4); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 155px max(6vw, 24px) 80px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, #050506 0%, rgba(5,5,6,.9) 40%, rgba(5,5,6,.1) 72%),
    linear-gradient(0deg, #050506 0%, transparent 35%);
}
.hero-aura {
  position: absolute;
  z-index: -3;
  width: 60vw;
  aspect-ratio: 1;
  right: -10vw;
  top: -15vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,41,230,.3), rgba(101,20,222,.09) 40%, transparent 68%);
  filter: blur(30px);
}
.hero-art {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("hero-talentos.png");
  background-position: 68% center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.08) contrast(1.06);
  animation: heroBreath 12s ease-in-out infinite alternate;
}
@keyframes heroBreath { from { transform: scale(1); } to { transform: scale(1.035); } }
.hero-content { position: relative; z-index: 1; width: min(700px, 58vw); }
.eyebrow, .section-number {
  margin: 0 0 25px;
  color: #c3bec7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow > span { width: 34px; height: 1px; background: var(--pink); box-shadow: 0 0 14px var(--pink); }
.hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(58px, 7.4vw, 116px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.075em;
}
.hero h1 em, h2 em { color: var(--pink); font-style: normal; }
.hero-lead {
  max-width: 560px;
  margin: 38px 0 32px;
  color: #c6c1c9;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 26px; }
.text-link { color: #d2cdd4; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.text-link b { margin-left: 8px; color: var(--pink); }
.hero-proof {
  position: absolute;
  right: max(5vw, 22px);
  bottom: 58px;
  display: flex;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(8,7,10,.62);
  backdrop-filter: blur(15px);
}
.hero-proof > div { min-width: 142px; padding: 19px 21px; display: flex; align-items: center; gap: 12px; border-right: 1px solid var(--line); }
.hero-proof > div:last-child { border: 0; }
.hero-proof strong { color: var(--pink); font-size: 25px; font-weight: 500; }
.hero-proof span { color: #bab5bd; font-size: 9px; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }
.scroll-note { position: absolute; left: max(6vw, 24px); bottom: 30px; color: #77727b; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.scroll-note span { margin-left: 7px; color: var(--pink); }

.section { width: min(1260px, calc(100% - 48px)); margin: 0 auto; padding: 130px 0; }
.manifesto-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12vw; align-items: end; }
.manifesto h2, .section-heading h2, .profile h2, .process h2, .workday h2, .faq h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.06em;
}
.manifesto-copy { padding-bottom: 3px; }
.manifesto-copy p { margin: 0 0 22px; color: #aaa5ad; font-size: 16px; line-height: 1.65; }
.manifesto-copy strong { color: #fff; }

.opportunity { width: 100%; padding-left: max(4vw, 24px); padding-right: max(4vw, 24px); background: var(--paper); color: #0b0a0c; }
.opportunity .section-number { color: #736f77; }
.section-heading { max-width: 1260px; margin: 0 auto 70px; display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.section-heading h2 { font-size: clamp(45px, 5vw, 74px); }
.section-heading > p { width: 360px; margin: 0; color: #6c6870; font-size: 15px; line-height: 1.6; }
.opportunity-badges {
  max-width: 1260px;
  margin: -32px auto 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.opportunity-badges span {
  min-height: 38px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(20,17,22,.14);
  border-radius: 100px;
  background: #fff;
  color: #201c22;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(42,20,47,.06);
}
.opportunity-badges span:last-child { background: #141116; color: #fff; border-color: #141116; }
.opportunity-badges svg { width: 15px; fill: none; stroke: #cf2bdc; }
.feature-grid { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.feature-card {
  position: relative;
  min-height: 430px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 14px;
  background: #131116;
  color: #fff;
}
.feature-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,7,10,.24) 0%, rgba(8,7,10,.55) 42%, rgba(8,7,10,.98) 100%);
}
.feature-card::after { content: ""; position: absolute; z-index: 0; inset: auto -20% -35% -20%; height: 65%; background: radial-gradient(circle, rgba(170,29,234,.38), transparent 68%); opacity: .72; }
.feature-image {
  background-color: #131116;
  background-position: center;
  background-size: cover;
  transition: transform .35s ease, box-shadow .35s ease;
}
.feature-image:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(30,12,35,.18); }
.feature-image-1 { background-image: url("op-atendimento.png"); }
.feature-image-2 { background-image: url("op-treinamento.png"); }
.feature-image-3 { background-image: url("op-ganhos.png"); }
.feature-image-4 { background-image: url("op-carreira.png"); }
.card-index { position: relative; z-index: 1; font-size: 11px; color: rgba(255,255,255,.72); }
.feature-card > div { position: relative; z-index: 1; }
.feature-card svg { width: 52px; margin-bottom: 60px; fill: none; stroke: #d62ddb; stroke-width: 1; filter: drop-shadow(0 0 12px #d62ddb); }
.feature-card h3 { margin: 0 0 16px; font-size: 23px; font-weight: 500; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: rgba(255,255,255,.73); font-size: 13px; line-height: 1.65; }

.profile { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10vw; }
.profile-copy { position: sticky; top: 130px; align-self: start; }
.profile h2 { font-size: clamp(48px, 5vw, 76px); }
.profile-intro { max-width: 460px; margin: 32px 0; color: #98939c; font-size: 16px; line-height: 1.6; }
.profile-list { border-top: 1px solid var(--line); }
.profile-list article { min-height: 160px; padding: 30px 8px; display: grid; grid-template-columns: 48px 1fr 30px; gap: 22px; border-bottom: 1px solid var(--line); align-items: start; }
.profile-list article > span { color: var(--pink); font-size: 11px; }
.profile-list h3 { margin: 0 0 10px; font-size: 25px; font-weight: 400; letter-spacing: -.035em; }
.profile-list p { max-width: 480px; margin: 0; color: #8f8a93; font-size: 14px; line-height: 1.55; }
.profile-list i { color: #615d65; font-size: 22px; font-style: normal; transition: color .25s, transform .25s; }
.profile-list article:hover i { color: var(--pink); transform: translate(3px,-3px); }

.process { width: 100%; padding-left: max(6vw, 24px); padding-right: max(6vw, 24px); overflow: hidden; background: linear-gradient(130deg, #7c16bd, #d330db); }
.process-heading { max-width: 1260px; margin: 0 auto 90px; }
.process .section-number { color: rgba(255,255,255,.65); }
.process h2 { font-size: clamp(48px, 5.5vw, 82px); }
.timeline { position: relative; max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 52px; height: 1px; background: rgba(255,255,255,.36); }
.timeline article { position: relative; padding-right: 45px; }
.timeline article > span { font-size: 10px; letter-spacing: .15em; }
.timeline-dot { position: relative; z-index: 1; width: 13px; height: 13px; margin: 35px 0 35px; border: 3px solid #fff; border-radius: 50%; background: #bd28d2; box-shadow: 0 0 0 8px rgba(255,255,255,.13); }
.timeline h3 { margin: 0 0 13px; font-size: 22px; font-weight: 500; }
.timeline p { max-width: 220px; margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.55; }
.process-note { max-width: 1260px; margin: 80px auto 0; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.75); font-size: 12px; }
.process-note svg { width: 18px; fill: none; stroke: #fff; }

.workday { display: grid; grid-template-columns: 1.15fr .85fr; gap: 10px; }
.workday-card, .workday-quote { min-height: 660px; padding: clamp(35px, 5vw, 72px); border-radius: 16px; }
.workday-card { background: var(--paper); color: #111; }
.workday-card .section-number { color: #77717a; }
.workday h2 { font-size: clamp(43px, 4.4vw, 68px); }
.facts { margin-top: 70px; border-top: 1px solid #d2cdd2; }
.facts > div { padding: 18px 0; display: flex; justify-content: space-between; gap: 28px; border-bottom: 1px solid #d2cdd2; }
.facts span { color: #77717a; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.facts strong { font-size: 13px; font-weight: 600; text-align: right; }
.workday-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(7,5,10,.18), rgba(7,5,10,.92)),
    linear-gradient(135deg, rgba(120,19,184,.28), rgba(5,5,6,.4)),
    url("op-treinamento.png") center/cover no-repeat;
}
.workday-quote::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 76% 14%, rgba(226,49,223,.55), transparent 34%);
}
.workday-quote::before { content: ""; position: absolute; width: 310px; height: 310px; right: -90px; top: -70px; border: 1px solid rgba(255,255,255,.25); border-radius: 45% 55% 65% 35%; transform: rotate(25deg); box-shadow: 0 0 80px rgba(226,45,229,.3); }
.workday-quote > span, .workday-quote p, .workday-quote small { position: relative; z-index: 2; }
.workday-quote > span { color: var(--pink); font-family: Georgia, serif; font-size: 110px; line-height: .5; }
.workday-quote p { max-width: 480px; margin: 32px 0; font-size: clamp(27px, 3vw, 43px); line-height: 1.05; letter-spacing: -.04em; text-shadow: 0 3px 30px rgba(0,0,0,.65); }
.workday-quote small { color: #d6d0d8; font-size: 9px; letter-spacing: .2em; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 10vw; }
.faq h2 { font-size: clamp(45px, 5vw, 76px); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { padding: 25px 0; border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding-right: 45px; list-style: none; cursor: pointer; font-size: 17px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary b { position: absolute; right: 5px; color: var(--pink); font-size: 24px; font-weight: 300; transition: transform .25s; }
.faq details[open] summary b { transform: rotate(45deg); }
.faq details p { max-width: 680px; margin: 18px 40px 0 0; color: #918c95; font-size: 14px; line-height: 1.7; }

.final-cta {
  position: relative;
  min-height: 720px;
  padding: 110px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line);
}
.final-cta > div:not(.final-orb) { position: relative; z-index: 2; }
.final-orb {
  position: absolute;
  width: min(740px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 48% 42%, #ef3be8, #7015bf 25%, #12051e 54%, transparent 70%);
  filter: blur(3px);
  opacity: .65;
  animation: orbPulse 7s ease-in-out infinite alternate;
}
@keyframes orbPulse { to { transform: scale(1.08); filter: blur(10px); } }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { font-size: clamp(52px, 7vw, 100px); }
.final-cta > div > p:not(.eyebrow) { max-width: 580px; margin: 32px auto; color: #b4afb7; font-size: 16px; line-height: 1.6; }
.final-cta .button { margin: 0 auto; }
.final-cta small { margin-top: 20px; display: block; color: #8d8790; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

footer { width: min(1260px, calc(100% - 48px)); min-height: 130px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: #77727b; }
footer p { margin: 0; font-size: 10px; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header nav { display: none; }
  .hero-content { width: min(700px, 80vw); }
  .hero-proof { left: max(6vw, 24px); right: auto; bottom: 72px; }
  .scroll-note { display: none; }
  .manifesto-grid, .profile, .faq { grid-template-columns: 1fr; gap: 65px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-copy { position: static; }
  .section-heading { align-items: start; flex-direction: column; }
  .workday { grid-template-columns: 1fr; }
  .workday-card, .workday-quote { min-height: 560px; }
}

@media (max-width: 680px) {
  .site-header { top: 10px; width: calc(100% - 20px); min-height: 56px; padding: 8px 8px 8px 16px; }
  .brand-hut { font-size: 17px; }
  .brand-talentos { font-size: 8px; }
  .site-header .button-small { width: 42px; min-width: 42px; min-height: 42px; padding: 0; font-size: 0; }
  .site-header .button-small svg { width: 16px; }
  .header-actions { gap: 6px; }
  .language-switch { height: 36px; padding: 3px; }
  .language-switch button { width: 29px; height: 28px; font-size: 8px; }
  .hero { min-height: 860px; padding: 132px 22px 240px; align-items: start; }
  .hero::after { background: linear-gradient(0deg, #050506 0%, rgba(5,5,6,.8) 52%, rgba(5,5,6,.15) 100%); }
  .hero-art { inset: 0 0 23% 0; background-position: 64% center; opacity: .68; }
  .hero-content { width: 100%; }
  .hero h1 { font-size: clamp(55px, 18vw, 76px); max-width: 96%; }
  .hero-lead { margin-top: 28px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .hero-actions .button { width: 100%; }
  .text-link { text-align: center; }
  .hero-proof { left: 18px; right: 18px; bottom: 30px; }
  .hero-proof > div { min-width: 0; width: 33.333%; padding: 15px 10px; display: block; text-align: center; }
  .hero-proof strong { display: block; margin-bottom: 6px; font-size: 22px; }
  .hero-proof span { font-size: 7px; }
  .section { width: calc(100% - 36px); padding: 88px 0; }
  .manifesto h2, .section-heading h2, .profile h2, .process h2, .workday h2, .faq h2 { font-size: 44px; }
  .manifesto-grid { gap: 40px; }
  .opportunity, .process { width: 100%; padding-left: 18px; padding-right: 18px; }
  .section-heading { margin-bottom: 45px; gap: 28px; }
  .section-heading > p { width: auto; }
  .opportunity-badges { margin: -18px 0 24px; }
  .opportunity-badges span { width: 100%; justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 330px; }
  .feature-card svg { margin-bottom: 40px; }
  .profile { gap: 60px; }
  .profile-list article { min-height: 145px; grid-template-columns: 34px 1fr 20px; gap: 12px; }
  .profile-list h3 { font-size: 21px; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { left: 11px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .timeline article { min-height: 155px; padding: 0 0 35px 55px; }
  .timeline article > span { position: absolute; left: 0; top: 34px; color: rgba(255,255,255,.6); }
  .timeline-dot { position: absolute; left: 5px; top: 0; margin: 0; }
  .process-note { margin-top: 35px; }
  .workday { width: calc(100% - 20px); }
  .workday-card, .workday-quote { min-height: 540px; padding: 35px 25px; }
  .facts { margin-top: 48px; }
  .facts > div { align-items: flex-start; flex-direction: column; gap: 8px; }
  .facts strong { text-align: left; }
  .faq { gap: 55px; }
  .faq summary { font-size: 15px; line-height: 1.4; }
  .final-cta { min-height: 680px; }
  .final-cta h2 { font-size: 53px; }
  footer { padding: 45px 0; align-items: flex-start; flex-direction: column; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
