:root {
  --ink: #0d0e0c;
  --ink-soft: #171916;
  --paper: #f4f5ef;
  --muted: #b9beb5;
  --line: rgba(244, 245, 239, 0.16);
  --green: #2d806d;
  --gold: #c9a86a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -56px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 5px;
  transition: top .2s;
}

.skip-link:focus {
  top: 16px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}


.display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button--solid {
  background: var(--paper);
  color: var(--ink);
}

.button--solid:hover {
  background: #fff;
}

.button--ghost {
  background: transparent;
  border-color: rgba(244, 245, 239, .48);
  color: var(--paper);
}

.button--ghost:hover {
  background: rgba(244, 245, 239, 0.08);
  border-color: var(--paper);
}

.button--gold {
  background: var(--gold);
  color: #17130d;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s;
}

.site-header.is-scrolled {
  background: rgba(13, 14, 12, .92);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  text-decoration: none;
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.brand span {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  margin: 0 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: #c5cac0;
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--paper);
}

.nav-links a.button {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 5px;
}

.nav-links a.button--solid {
  background: var(--gold);
  color: #17130d;
}

.nav-links a.button--solid:hover {
  background: #fff;
  color: #17130d;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.hero {
  min-height: min(860px, 100svh);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #0c0d0b;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-veil {
  position: absolute;
  z-index: -1;
  inset: 0;
  --mx: 50%;
  --my: 50%;
  background: radial-gradient(
    circle 550px at var(--mx) var(--my),
    rgba(7, 8, 7, 0.05) 0%,
    rgba(7, 8, 7, 0.3) 30%,
    rgba(12, 13, 11, 0.72) 65%,
    rgba(12, 13, 11, 0.86) 100%
  );
  pointer-events: none;
}

.hero-content {
  padding: 168px 0 80px;
  max-width: 580px;
  width: 100%;
}

.hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(46px, 6.2vw, 82px);
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-lead {
  max-width: 560px;
  margin: 0;
  color: #d5d8d1;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 400;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
  color: #d0d4cc;
  font-size: 12px;
  font-weight: 700;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(45, 128, 109, .18);
}

.scroll-cue {
  position: absolute;
  right: 24px;
  bottom: 28px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  background: linear-gradient(
    to bottom,
    #b9beb5 0%,
    #b9beb5 35%,
    #ffffff 50%,
    #b9beb5 65%,
    #b9beb5 100%
  );
  background-size: 100% 300%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: scroll-shimmer 3s infinite linear;
}

@keyframes scroll-shimmer {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 150%;
  }
}

.intro {
  padding: 112px 0;
  background: var(--paper);
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: start;
  overflow: hidden;
}

.intro-grid > div:first-child {
  transform: translateX(-150px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.intro-grid > .intro-copy {
  transform: translateX(150px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.intro.is-visible .intro-grid > div:first-child,
.intro.is-visible .intro-grid > .intro-copy {
  transform: translateX(0);
  opacity: 1;
}

.intro h2,
.section-heading h2,
.method-copy h2,
.closing h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  margin: 16px 0 0;
}

.intro p {
  color: #4a4e48;
  font-size: 18px;
  margin: 0;
  max-width: 660px;
}

.intro-copy {
  display: grid;
  gap: 22px;
}

.intro-callout {
  border-top: 1px solid #b6bbb1;
  padding-top: 18px;
  color: #2e332d !important;
  font-size: 15px !important;
  font-weight: 800;
}

.catalog {
  padding: 112px 0;
  background: #121411;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.portal-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: end;
  isolation: isolate;
}

.portal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform .5s ease, opacity .4s ease;
}

.portal-card:hover::before {
  transform: scale(1.04);
}

.portal-card--health::before {
  background: #c8e1d7;
}

.portal-card--architecture::before {
  background: #252522;
}

.portal-card--law::before {
  background: #172022;
}

.portal-card--realty::before {
  background: #1b2921;
}

.portal-card--gastro::before {
  background: #151515;
}

.portal-card--beauty::before {
  background: #fdfaf6;
}

.portal-card--health {
  color: #17362f;
}

.portal-card--beauty {
  color: #17362f;
}

.portal-card--architecture,
.portal-card--law,
.portal-card--realty,
.portal-card--gastro {
  color: #f4f5ef;
}

.card-art {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 145px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.card-art svg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.portal-card:hover .card-art svg {
  transform: scale(1.1) rotate(2deg);
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.45));
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: auto;
}

.card-status {
  align-self: flex-start;
  padding: 5px 9px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card-tag {
  padding: 5px 9px;
  background: rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portal-card--health .card-tag,
.portal-card--beauty .card-tag {
  background: rgba(255, 255, 255, 0.45);
}

.portal-card h3 {
  margin: 24px 0 8px;
  max-width: 360px;
  font: 400 clamp(28px, 3vw, 42px)/1.05 'DM Serif Display', Georgia, serif;
}

.portal-card p {
  max-width: 390px;
  margin: 0 0 16px;
  font-size: 14px;
  opacity: .85;
}

.card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.card-highlights span {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.portal-card--health .card-highlights span,
.portal-card--beauty .card-highlights span {
  background: rgba(0, 0, 0, 0.08);
}

.card-link {
  margin-top: 18px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-weight: 900;
  font-size: 13px;
}

.card-link::after {
  content: '→';
  font-size: 18px;
  transition: transform .2s ease;
}

.portal-card:hover .card-link::after {
  transform: translateX(4px);
}

.method {
  padding: 112px 0;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.method-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
}

.method-copy {
  transform: translateX(-60px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.method-copy p {
  color: #50554e;
  font-size: 17px;
}

.steps {
  border-top: 1px solid #b6bbb1;
}

.step {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #b6bbb1;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease, border-color 0.3s ease, padding-left 0.3s ease;
}

.step:nth-child(1) { transition-delay: 0.1s; }
.step:nth-child(2) { transition-delay: 0.25s; }
.step:nth-child(3) { transition-delay: 0.4s; }
.step:nth-child(4) { transition-delay: 0.55s; }

.method.is-visible .method-copy {
  transform: translateX(0);
  opacity: 1;
}

.method.is-visible .step {
  transform: translateY(0);
  opacity: 1;
}

.step:hover {
  border-bottom-color: var(--gold);
  padding-left: 12px;
}

.step-number {
  color: var(--green);
  font: 400 32px/1 'DM Serif Display', Georgia, serif;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.step:hover .step-number {
  color: var(--gold);
  transform: scale(1.1);
}

.step h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: #50554e;
  font-size: 14px;
}

.diagnosis {
  padding: 112px 0;
  background: #10120f;
}

.diagnosis-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.diagnosis-copy h2 {
  margin: 16px 0;
  font-size: clamp(36px, 4.5vw, 58px);
}

.diagnosis-copy p {
  color: var(--muted);
  max-width: 500px;
}

.diagnosis-form {
  padding: 34px;
  border: 1px solid rgba(244, 245, 239, 0.08);
  background: rgba(23, 25, 22, 0.65);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 106, 0.03);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.diagnosis-form fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}

.diagnosis-form legend {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--paper);
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.step-indicator {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.step-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.step-actions .button {
  flex: 1;
}

.summary-box {
  background: rgba(244, 245, 239, 0.04);
  border: 1px solid rgba(244, 245, 239, 0.06);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.summary-box h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  color: var(--gold);
  margin: 0 0 10px 0;
  font-weight: 400;
  line-height: 1.2;
}

.summary-box p {
  font-size: 13px;
  color: #b9beb5;
  margin: 0 0 16px 0;
}

.summary-details {
  border-top: 1px solid rgba(244, 245, 239, 0.08);
  padding-top: 14px;
  display: grid;
  gap: 8px;
}

.summary-details p {
  margin: 0;
  font-size: 13px;
  color: var(--paper);
}

.summary-details strong {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: inline-block;
  width: 90px;
}

.input-group {
  margin-bottom: 24px;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.input-group input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 245, 239, 0.12);
  border-radius: 6px;
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.25s, background-color 0.25s;
}

.input-group input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.choice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: block;
  padding: 12px 16px;
  border: 1px solid rgba(244, 245, 239, 0.12);
  background: rgba(244, 245, 239, 0.02);
  border-radius: 6px;
  color: #cbd0c7;
  font-size: 13px;
  cursor: pointer;
  transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
}

.choice span:hover {
  border-color: rgba(201, 168, 106, 0.4);
  background: rgba(244, 245, 239, 0.04);
}

.choice input:checked+span {
  color: #17130d;
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.02);
  box-shadow: 0 8px 20px -6px rgba(201, 168, 106, 0.3);
  font-weight: 600;
}

.diagnosis-form .button {
  cursor: pointer;
}

.diagnosis-form .button.button--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244, 245, 239, 0.3);
}

.diagnosis-form .button.button--ghost:hover {
  background: rgba(244, 245, 239, 0.08);
  border-color: var(--paper);
}

.form-note {
  margin: 16px 0 0;
  color: #9ca399;
  font-size: 11px;
  text-align: center;
  line-height: 1.4;
}

.closing {
  padding: 130px 0;
  text-align: center;
  background: linear-gradient(135deg, #2d806d 0%, #153c33 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 106, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.closing h2 {
  max-width: 760px;
  margin: 18px auto 23px;
}

.closing p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, .85);
}

/* Animações de Entrada da Seção Closing */
.closing .eyebrow,
.closing h2,
.closing p,
.closing .button {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.closing.is-visible .eyebrow,
.closing.is-visible h2,
.closing.is-visible p,
.closing.is-visible .button {
  opacity: 1;
  transform: translateY(0);
}

.closing.is-visible .eyebrow { transition-delay: 0.1s; }
.closing.is-visible h2 { transition-delay: 0.22s; }
.closing.is-visible p { transition-delay: 0.34s; }
.closing.is-visible .button { transition-delay: 0.46s; }

.closing .eyebrow {
  color: #e4c68f;
}

.closing .button--solid {
  background: #fff;
}

.site-footer {
  padding: 34px 0;
  background: #0d0e0c;
  color: #9ca399;
  font-size: 12px;
}

.footer-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-line a {
  color: #d1d5cd;
}

@media (max-width: 760px) {
  .shell {
    width: calc(100vw - 32px);
    max-width: none;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    padding: 16px;
    background: #171916;
    border: 1px solid var(--line);
    border-radius: 6px;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-links .button {
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 760px;
  }

  .hero-fallback {
    object-position: 62% center;
    opacity: .55;
  }

  .hero-veil {
    background: rgba(7, 8, 7, .58) !important;
  }

  .hero-content {
    padding: 138px 0 72px;
    max-width: none;
    width: 100%;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 46px;
  }

  .hero-lead {
    width: 100%;
    max-width: 330px;
    overflow-wrap: anywhere;
  }

  .hero-canvas {
    display: none;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 8px;
    font-size: 10px;
  }

  .hero-proof span {
    min-width: 0;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .scroll-cue {
    display: none;
  }

  .intro,
  .catalog,
  .method,
  .diagnosis {
    padding: 76px 0;
  }

  .intro-grid,
  .method-grid,
  .diagnosis-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-grid > div:first-child,
  .intro-grid > .intro-copy,
  .method-copy,
  .step {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
    padding-left: 0 !important;
    border-bottom-color: #b6bbb1 !important;
  }

  .step-number {
    color: var(--green) !important;
    transform: none !important;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 16px;
  }

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

  .portal-card {
    min-height: 300px;
  }

  .diagnosis-form {
    padding: 22px;
  }

  .closing {
    padding: 92px 0;
  }

  .closing .eyebrow,
  .closing h2,
  .closing p,
  .closing .button {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .footer-line {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
