:root {
  --ink: #101010;
  --muted: #66615a;
  --paper: #f6f2ec;
  --panel: #fffaf3;
  --line: #ded4c6;
  --gold: #b98b52;
  --green: #1e4d42;
  --green-dark: #12332d;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 16, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(246, 242, 236, 0.94);
  box-shadow: 0 12px 36px rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.header-cta {
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 94px clamp(20px, 6vw, 88px) 44px;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.76) 43%, rgba(8, 8, 8, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.6) 0%, rgba(8, 8, 8, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #15110b;
  background: var(--gold);
  box-shadow: 0 18px 40px rgba(185, 139, 82, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  margin-top: 28px;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-stats span {
  display: grid;
  gap: 4px;
  min-width: 112px;
  font-size: 13px;
}

.hero-stats strong {
  color: var(--white);
  font-size: 22px;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 88px);
}

.intro {
  padding-bottom: 48px;
}

.intro-grid,
.proof,
.consultoria,
.about,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.intro h2,
.section-heading h2,
.proof h2,
.consultoria h2,
.about h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.03;
}

.intro p,
.proof-copy p,
.consultoria-copy p,
.about-copy p,
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.audience-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.audience-split article {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.audience-split span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-split h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.audience-split p {
  color: var(--muted);
  line-height: 1.7;
}

.audience-split a {
  color: var(--gold);
  font-weight: 900;
}

.client-pains {
  background: var(--paper);
}

.client-pains .section-heading > p:not(.section-kicker) {
  color: var(--muted);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pain-grid article {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(16, 16, 16, 0.06);
}

.pain-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pain-grid h3 {
  margin: 18px 0 12px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
}

.pain-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
}

.benefits article {
  padding: 34px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.benefits span {
  color: var(--gold);
  font-weight: 900;
}

.benefits h3,
.service-card h3,
.timeline h3 {
  margin: 16px 0 10px;
  font-size: 22px;
}

.benefits p,
.service-card p,
.timeline p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}

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

.section-heading > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.consultoria {
  background: var(--panel);
}

.consultoria-copy {
  max-width: 760px;
}

.consultoria-copy .button {
  margin-top: 10px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.check-grid span,
.about-points span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #2b2925;
  background: var(--white);
  font-weight: 800;
}

.portrait-card,
.results figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(16, 16, 16, 0.1);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portrait-card figcaption,
.results figcaption {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.services,
.faq {
  background: var(--green-dark);
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.service-card.featured {
  background: var(--panel);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.service-tag {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #1f160d;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.service-card p,
.service-card li {
  color: inherit;
  opacity: 0.72;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
  padding-left: 18px;
}

.service-card a {
  margin-top: auto;
  color: var(--gold);
  font-weight: 900;
}

.method {
  background: var(--panel);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.timeline div {
  padding: 32px;
  border-left: 2px solid var(--gold);
  background: var(--white);
}

.timeline span {
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
}

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

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

.results .section-heading > p:not(.section-kicker) {
  color: var(--muted);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.results img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about {
  background: var(--panel);
}

.about-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.testimonial {
  padding: clamp(30px, 5vw, 48px);
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.testimonial p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

.testimonial span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.faq details {
  max-width: 900px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.faq p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  margin: 14px 0 0;
}

.contact {
  align-items: start;
  background: var(--panel);
}

.diagnostic-assistant {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(16, 16, 16, 0.08);
}

.diagnostic-top {
  display: grid;
  gap: 10px;
}

.diagnostic-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #3d3831;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.diagnostic-time {
  color: var(--gold);
  white-space: nowrap;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #ebe3d9;
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width 320ms ease;
}

.diagnostic-step {
  display: grid;
  gap: 18px;
  animation: diagnosticFade 260ms ease both;
}

.diagnostic-step h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.08;
}

.diagnostic-helper {
  margin: -8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.diagnostic-options {
  display: grid;
  gap: 10px;
}

.diagnostic-option {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #d9d0c4;
  border-radius: 6px;
  color: #2f2a24;
  background: #fbf8f3;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.diagnostic-option:hover,
.diagnostic-option.is-selected {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: #fff5e7;
  box-shadow: 0 14px 30px rgba(185, 139, 82, 0.14);
}

.diagnostic-field {
  display: grid;
  gap: 8px;
  color: #3d3831;
  font-size: 14px;
  font-weight: 900;
}

.diagnostic-field input {
  width: 100%;
  border: 1px solid #d9d0c4;
  border-radius: 6px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbf8f3;
  font: inherit;
}

.diagnostic-error {
  min-height: 20px;
  margin: 0;
  color: #8d352a;
  font-size: 13px;
  font-weight: 800;
}

.diagnostic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.diagnostic-actions .button {
  border: 0;
  cursor: pointer;
}

.diagnostic-actions .button.primary {
  flex: 1 1 220px;
}

.diagnostic-back {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #d9d0c4;
  border-radius: 999px;
  color: var(--green);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.diagnostic-result {
  display: grid;
  gap: 16px;
  text-align: left;
  animation: diagnosticFade 300ms ease both;
}

.diagnostic-check {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.diagnostic-result h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3vw, 40px);
}

.diagnostic-result p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.diagnostic-result .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.diagnostic-loading {
  display: grid;
  place-items: center;
  min-height: 260px;
  gap: 16px;
  color: var(--green);
  font-weight: 900;
  text-align: center;
}

.diagnostic-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid #eadfce;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: diagnosticSpin 800ms linear infinite;
}

@keyframes diagnosticFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes diagnosticSpin {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.74);
  background: #101010;
}

.footer p {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.mobile-diagnostic-cta {
  display: none;
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .intro-grid,
  .proof,
  .consultoria,
  .about,
  .contact,
  .audience-split,
  .benefits,
  .pain-grid,
  .service-grid,
  .service-grid.two-columns,
  .results-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 88vh;
    padding: 96px 18px 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.7) 66%, rgba(8, 8, 8, 0.34) 100%),
      linear-gradient(0deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0) 46%);
  }

  h1 {
    font-size: 39px;
    line-height: 1;
  }

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

  .diagnostic-meta,
  .diagnostic-actions {
    display: grid;
  }

  .diagnostic-time {
    white-space: normal;
  }

  .diagnostic-option {
    min-height: 58px;
  }

  .mobile-diagnostic-cta {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    color: #15110b;
    background: var(--gold);
    box-shadow: 0 18px 44px rgba(16, 16, 16, 0.24);
    font-weight: 900;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

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

  .hero-stats strong {
    font-size: 19px;
  }

  .section {
    padding: 64px 18px;
  }

  .benefits {
    padding-top: 0;
  }

  .benefits article,
  .service-card,
  .audience-split article,
  .timeline div {
    padding: 26px;
  }

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

  .footer {
    display: grid;
  }
}
