:root {
  --color-bg: #FAF6F3;
  --color-text: #1A1512;
  --color-accent: #F0920B;
  --color-accent-text: #A85A00;
  --color-accent-soft: #FDEBD2;
  --color-accent-mid: #F3BE7C;
  --color-border: #ECE4DA;
  --radius-btn: 8px;
  --font-main: "Funnel Sans", sans-serif;
  --container-max: 1280px;
  --gutter: clamp(24px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-padding-top: 104px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
}

a { color: inherit; }

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Type scale (espelhada do site do InHire) */
.h-statement {
  font-size: clamp(32px, 4.8vw, 62px);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.h-section {
  font-size: clamp(28px, 4vw, 51px);
  font-weight: 600;
  line-height: 1.2;
}

.btn {
  display: inline-block;
  padding: 8px 24px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s cubic-bezier(0.22, 1, 0.36, 1), transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary:hover {
  background: #DE8608;
}

.btn-secondary:hover {
  background: #363029;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent-text);
  outline-offset: 2px;
}

.nav-links a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.btn-lg {
  padding: 16px 48px;
  font-size: 18px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
}

.btn-secondary {
  background: var(--color-text);
  color: #FAF6F3;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px var(--gutter);
}

.nav-pill {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 12px 16px 12px 20px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hero */
.hero {
  padding: 72px 0 88px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-text);
}

.hero h1 {
  margin-top: 12px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.1;
}

.hero-subtitle {
  margin-top: 24px;
  max-width: 560px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-link {
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px;
}

/* Mockups do hero: dois celulares sobrepostos */
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 530px;
  margin: 0 auto;
  min-height: 520px;
}

.phone {
  position: absolute;
  width: 268px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(26, 21, 18, 0.28), 0 0 0 1px rgba(26, 21, 18, 0.06);
}

.phone-wa {
  top: 0;
  left: 0;
  background: #FFFDFA;
  transform: rotate(-4deg);
  z-index: 1;
}

.phone-iris {
  top: 56px;
  right: 0;
  background: #07070C;
  transform: rotate(4deg);
  z-index: 2;
  padding: 28px 18px 18px;
  color: #FFFDFA;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #075E54;
  color: #FFFDFA;
  padding: 14px 16px;
}

.wa-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-text);
  font-weight: 700;
  flex-shrink: 0;
}

.wa-title {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
}

.wa-title small {
  font-weight: 400;
  font-size: 12px;
  opacity: 0.85;
}

.wa-chat {
  background: #EFE7DD;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.wa-in {
  background: #FFFDFA;
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.wa-out {
  background: #DCF8C6;
  align-self: flex-end;
  border-top-right-radius: 2px;
}

/* Entrevista com a Iris */
.iris-orb {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #FFD264 0%, #F5A623 58%, #E07E06 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.iris-orb::before {
  content: "";
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.42) 0%, rgba(245, 166, 35, 0) 68%);
}

.iris-wave {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 26px;
}

.iris-wave i {
  width: 3px;
  border-radius: 2px;
  background: #4A2D00;
  height: 40%;
}

.iris-wave i:nth-child(1) { height: 34%; }
.iris-wave i:nth-child(2) { height: 72%; }
.iris-wave i:nth-child(3) { height: 100%; }
.iris-wave i:nth-child(4) { height: 58%; }
.iris-wave i:nth-child(5) { height: 26%; }

@media (prefers-reduced-motion: no-preference) {
  .iris-wave i {
    animation: iris-pulse 1.1s ease-in-out infinite;
  }
  .iris-wave i:nth-child(2) { animation-delay: 0.14s; }
  .iris-wave i:nth-child(3) { animation-delay: 0.28s; }
  .iris-wave i:nth-child(4) { animation-delay: 0.42s; }
  .iris-wave i:nth-child(5) { animation-delay: 0.56s; }
}

@keyframes iris-pulse {
  0%, 100% { transform: scaleY(0.55); }
  50% { transform: scaleY(1); }
}

.iris-speech {
  margin-top: 26px;
  font-size: 13px;
  line-height: 1.5;
  color: #FFFDFA;
}

.iris-speech strong {
  color: #F5A623;
  font-weight: 700;
}

.iris-selfie {
  position: relative;
  margin-top: 20px;
  height: 116px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(165deg, #2C3742 0%, #171E26 100%);
}

/* Silhueta abstrata do candidato: sem foto de pessoa real */
.iris-selfie::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: 26px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 253, 250, 0.2);
}

.iris-selfie::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 62px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 32px 32px 0 0;
  background: rgba(255, 253, 250, 0.2);
}

/* Foto do candidato: cobre a silhueta quando carrega */
.iris-cam {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.iris-name {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(7, 7, 12, 0.62);
  font-size: 10px;
  font-weight: 600;
}

.iris-controls {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 1;
  display: flex;
  gap: 6px;
}

.iris-btn {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(7, 7, 12, 0.62);
}

.iris-btn-mic::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 9px;
  border-radius: 3px;
  background: #FFFDFA;
}

.iris-btn-mic::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 5px;
  border: 1.5px solid #FFFDFA;
  border-top: none;
  border-radius: 0 0 6px 6px;
}

.iris-btn-cam::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 6px;
  width: 9px;
  height: 8px;
  border-radius: 2px;
  background: #FFFDFA;
}

.iris-btn-cam::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 5px;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-right: 5px solid #FFFDFA;
}

/* Faixa de autoridade */
.authority-strip {
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #FFFDFA;
}

.authority-stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  list-style: none;
  flex-wrap: wrap;
  font-size: 16px;
}

.authority-stats strong {
  font-size: 20px;
  font-weight: 700;
}

.logo-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4.5vw, 56px);
  list-style: none;
  flex-wrap: wrap;
}

.logo-row li {
  display: flex;
  align-items: center;
}

/* Alturas por logo: equalização óptica, não geométrica */
.logo-img { width: auto; opacity: 0.85; }
.logo-magalu { height: 30px; }
.logo-renner { height: 21px; }
.logo-boticario { height: 15px; }
.logo-cielo { height: 27px; }
.logo-riachuelo { height: 17px; }
.logo-localiza { height: 19px; }

/* A dor */
.pain-section {
  padding: 96px 0 80px;
}

.pain-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.pain-lead {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.5;
  color: #363029;
}

.pain-list {
  margin: 40px auto 0;
  max-width: 560px;
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-list li {
  position: relative;
  padding-left: 36px;
  font-size: 18px;
  font-weight: 600;
}

.pain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* A solução */
.solution-section {
  padding: 80px 0;
}

.solution-head {
  max-width: 720px;
}

.solution-head p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #363029;
}

.solution-supervision {
  font-size: 19px;
}

.solution-supervision strong {
  color: var(--color-accent-text);
}

.solution-pill {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  border: 1px solid var(--color-accent);
  font-weight: 600;
  font-size: 14px;
}

.solution-claim {
  margin-top: 56px;
  max-width: 820px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.3;
}

.solution-claim strong {
  font-weight: 700;
}

.solution-cards {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solution-card {
  background: #FFFDFA;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
}

.solution-tag {
  display: block;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-text);
}

.solution-card h3 {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 700;
}

.solution-card p {
  margin-top: 12px;
  font-size: 16px;
  color: #363029;
}

.solution-foot {
  display: block;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #736A61;
}

/* Como funciona — 5 etapas */
.steps-section {
  padding: 96px 0;
}

.steps-sub {
  margin: 16px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 18px;
  color: #574F48;
}

.steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 32px;
}

.lane-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-text);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 10px;
}

.lane-ia {
  grid-row: 1;
  grid-column: 1 / 5;
}

.lane-note {
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: #574F48;
}

.lane-you {
  grid-row: 1;
  grid-column: 5 / 6;
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

.step {
  grid-row: 2;
}

.step-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent-text);
}

.step-final .step-number {
  color: var(--color-text);
}

.step h3 {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
}

.step p {
  margin-top: 8px;
  font-size: 14px;
  color: #363029;
}

/* Pra quem é */
.audience-section {
  padding: 80px 0;
  background: #FFFDFA;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.audience-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.audience-inner p {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.5;
  color: #363029;
}

.audience-highlight {
  font-weight: 700;
  color: var(--color-text) !important;
}

/* Case */
.case-section {
  padding: 96px 0;
}

.case-funnel {
  margin: 56px auto 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.funnel-row {
  display: grid;
  grid-template-columns: 190px 1fr 64px;
  align-items: center;
  gap: 16px;
}

.funnel-label {
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  color: #574F48;
}

.funnel-track {
  height: 40px;
}

.funnel-fill {
  height: 100%;
  width: var(--v);
  min-width: 8px;
  background: var(--color-accent-mid);
  border-radius: 0 8px 8px 0;
}

.funnel-value {
  font-size: 26px;
  font-weight: 700;
}

.funnel-row-hired .funnel-fill {
  background: var(--color-accent);
}

.case-stats {
  margin: 48px auto 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-stat {
  background: #FFFDFA;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.case-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-accent-text);
}

.case-stat span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #363029;
}

.case-quote {
  margin: 48px auto 0;
  max-width: 720px;
  text-align: center;
}

.case-quote p {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400;
  line-height: 1.4;
}

.case-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 14px;
  color: #736A61;
}

/* Autoridade completa */
.trust-section {
  padding: 80px 0;
  background: #FFFDFA;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-inner {
  text-align: center;
}

.trust-inner .h-section {
  max-width: 800px;
  margin: 0 auto;
}

.trust-inner > p {
  margin: 20px auto 0;
  max-width: 760px;
  font-size: 18px;
  color: #363029;
}

.logo-wall {
  margin: 48px auto 0;
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  list-style: none;
  font-weight: 700;
  font-size: 17px;
  color: #736A61;
}

/* CTA final */
.final-cta {
  padding: 96px 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.final-cta-inner .h-section {
  max-width: 560px;
}

.final-cta-sub {
  margin-top: 16px;
  max-width: 520px;
  font-size: 18px;
  color: #363029;
}

.final-cta-form {
  flex: 1;
  min-width: 320px;
  max-width: 520px;
  background: #FFFDFA;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
}

.hs-form-frame {
  min-height: 420px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 40px 0 0;
  font-size: 13px;
  color: #574F48;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 16px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a { text-decoration: none; color: #574F48; }

.footer-brand p {
  margin-top: 4px;
  color: #736A61;
}

.footer-copyright {
  width: 100%;
  margin-top: 16px;
  line-height: 1.6;
}

.footer-watermark {
  margin-top: 24px;
  text-align: center;
  font-size: clamp(60px, 14vw, 180px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #ECE4DA 0%, var(--color-bg) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

/* Menu mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-text);
}

@media (max-width: 1024px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .lane-ia,
  .lane-you,
  .step {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: var(--gutter);
    right: var(--gutter);
    background: #FFFDFA;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-mockup {
    min-height: 600px;
    margin-top: 8px;
  }

  .phone {
    width: 205px;
  }

  .phone-iris {
    top: 185px;
  }

  .solution-cards {
    grid-template-columns: 1fr;
  }

  .funnel-row {
    grid-template-columns: 1fr 56px;
  }

  .funnel-label {
    grid-column: 1 / -1;
    text-align: left;
  }

  .case-stats {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
