:root {
  color-scheme: dark;
  --ink: #f6f1e8;
  --muted: #b8afa1;
  --soft: #e3d3b6;
  --bg: #0d1110;
  --bg-2: #111816;
  --green: #123a31;
  --green-2: #1f5a49;
  --brass: #c59b5a;
  --line: rgba(246, 241, 232, 0.14);
  --panel: rgba(246, 241, 232, 0.06);
  --panel-strong: rgba(246, 241, 232, 0.1);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 0%, rgba(197, 155, 90, 0.16), transparent 30rem),
    linear-gradient(180deg, #080b0a 0%, var(--bg) 42%, #101511 100%);
  color: var(--ink);
}

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

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  isolation: isolate;
}

.nav {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(197, 155, 90, 0.8);
  background:
    linear-gradient(135deg, transparent 45%, rgba(197, 155, 90, 0.95) 46% 53%, transparent 54%),
    linear-gradient(45deg, rgba(31, 90, 73, 0.95), rgba(18, 58, 49, 0.65));
  box-shadow: 0 0 0 6px rgba(197, 155, 90, 0.08);
}

.nav-cta,
.primary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 750;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(8, 11, 10, 0.38);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.primary-button {
  padding: 0 22px;
  background: var(--brass);
  color: #17120b;
  box-shadow: 0 14px 40px rgba(197, 155, 90, 0.22);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("./barbearia-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.98) 0%, rgba(8, 12, 10, 0.88) 33%, rgba(8, 12, 10, 0.48) 63%, rgba(8, 12, 10, 0.26) 100%),
    linear-gradient(0deg, rgba(8, 12, 10, 0.96) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  align-self: center;
  padding: 50px 0 120px;
  max-width: 720px;
  justify-self: start;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 12vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--soft);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.1;
  font-weight: 700;
}

.hero-copy,
.intro-grid p,
.panel-copy p,
.workflow p,
.timeline p,
.flow-card p,
.internal-story p,
.pain-grid p,
.implementation-grid p,
.growth-grid p,
.lead,
.center-lead,
.implementation-note p,
.benefit-list p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-copy {
  max-width: 660px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-note {
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.quick-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 13, 12, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.quick-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 750;
  white-space: nowrap;
}

.section-intro {
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.split,
.benefits,
.limits-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.intro-grid h2,
.benefits h2,
.limits h2 {
  max-width: 660px;
}

.lead {
  max-width: 620px;
}

.center-lead {
  max-width: 760px;
  margin: 0 auto;
}

.conversation-card {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(197, 155, 90, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 58, 49, 0.72), rgba(8, 11, 10, 0.92)),
    rgba(246, 241, 232, 0.05);
  box-shadow: var(--shadow);
}

.message {
  width: min(88%, 520px);
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.5;
}

.message.incoming {
  justify-self: start;
  background: rgba(246, 241, 232, 0.08);
}

.message.outgoing {
  justify-self: end;
  background: rgba(197, 155, 90, 0.13);
  border-color: rgba(197, 155, 90, 0.35);
}

.capability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.capability-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.08);
  color: var(--brass);
  font-size: 0.84rem;
  font-weight: 800;
}

.panel-band {
  background:
    linear-gradient(135deg, rgba(18, 58, 49, 0.9), rgba(15, 20, 17, 0.9)),
    radial-gradient(circle at 80% 10%, rgba(197, 155, 90, 0.18), transparent 28rem);
  border-top: 1px solid rgba(197, 155, 90, 0.2);
  border-bottom: 1px solid rgba(197, 155, 90, 0.14);
}

.panel-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.panel-list,
.check-grid {
  display: grid;
  gap: 10px;
}

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

.ops-board article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(246, 241, 232, 0.16);
  border-radius: 8px;
  background: rgba(246, 241, 232, 0.07);
}

.ops-board span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ops-board strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.35;
}

.panel-list span,
.check-grid span,
.benefit-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 241, 232, 0.07);
  padding: 16px 18px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.workflow-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(197, 155, 90, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 58, 49, 0.54), rgba(8, 11, 10, 0.94)),
    rgba(246, 241, 232, 0.035);
  box-shadow: var(--shadow);
}

.workflow-copy h2 {
  max-width: 640px;
}

.workflow-copy p {
  max-width: 560px;
  margin-bottom: 0;
}

.workflow-line {
  display: grid;
  gap: 12px;
  text-align: left;
}

.workflow-line article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(246, 241, 232, 0.055);
}

.workflow-line span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(197, 155, 90, 0.74);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
}

.workflow strong,
.timeline strong {
  display: block;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.3;
}

.workflow p,
.timeline p,
.internal-story p,
.pain-grid p,
.implementation-grid p,
.growth-grid p,
.benefit-list p {
  margin: 16px 0 0;
  font-size: 0.98rem;
}

.workflow-line p {
  grid-column: 2;
  margin-top: 10px;
}

.growth-section {
  border-top: 1px solid var(--line);
}

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

.growth-grid article {
  min-height: 318px;
  border: 1px solid rgba(197, 155, 90, 0.22);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(18, 58, 49, 0.52), rgba(8, 11, 10, 0.92)),
    rgba(246, 241, 232, 0.05);
  box-shadow: var(--shadow);
}

.growth-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.growth-grid h3 {
  margin: 0;
  color: var(--soft);
  font-size: clamp(1.22rem, 2vw, 1.58rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.flow-section {
  border-top: 1px solid var(--line);
}

.flow-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.flow-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.08), rgba(246, 241, 232, 0.035)),
    rgba(11, 16, 14, 0.72);
  box-shadow: var(--shadow);
}

.flow-card-strong {
  background:
    linear-gradient(145deg, rgba(18, 58, 49, 0.86), rgba(12, 18, 16, 0.96)),
    rgba(18, 58, 49, 0.8);
  border-color: rgba(197, 155, 90, 0.3);
}

.flow-label {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-card h3 {
  margin: 0 0 20px;
  color: var(--soft);
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.flow-card p {
  margin-bottom: 18px;
}

.flow-card p:last-child {
  margin-bottom: 0;
}

.internal-band {
  background:
    linear-gradient(180deg, rgba(197, 155, 90, 0.08), rgba(197, 155, 90, 0.02)),
    #0a0e0d;
  border-top: 1px solid rgba(197, 155, 90, 0.16);
  border-bottom: 1px solid var(--line);
}

.internal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(520px, 1fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
}

.internal-story {
  display: grid;
  gap: 12px;
}

.internal-story article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(246, 241, 232, 0.055);
}

.internal-story span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(197, 155, 90, 0.74);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  font-weight: 850;
}

.internal-story strong {
  display: block;
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.3;
}

.internal-story p {
  grid-column: 2;
}

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

.benefit-list article {
  min-height: 178px;
  border: 1px solid rgba(197, 155, 90, 0.22);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.08), rgba(246, 241, 232, 0.035)),
    rgba(11, 16, 14, 0.74);
}

.benefit-list strong {
  color: var(--soft);
  font-size: 1.08rem;
}

.pain-section {
  border-top: 1px solid var(--line);
}

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

.implementation-note {
  max-width: 820px;
  margin: -10px 0 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--brass);
  background: rgba(197, 155, 90, 0.08);
}

.implementation-note p {
  margin: 0;
}

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

.pain-grid article,
.implementation-grid article {
  min-height: 248px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.08), rgba(246, 241, 232, 0.035)),
    rgba(11, 16, 14, 0.74);
}

.pain-grid strong,
.implementation-grid strong {
  display: block;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.3;
}

.implementation-grid span {
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border-radius: 50%;
  border: 1px solid rgba(197, 155, 90, 0.74);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  font-weight: 850;
}

.implementation-grid small,
.timeline small {
  display: inline-flex;
  width: fit-content;
  margin: 14px 0 2px;
  padding: 7px 10px;
  border: 1px solid rgba(197, 155, 90, 0.34);
  border-radius: 999px;
  background: rgba(197, 155, 90, 0.09);
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
}

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

.check-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.phases {
  padding-top: 54px;
}

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

.timeline article {
  position: relative;
  min-height: 292px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(246, 241, 232, 0.09), rgba(246, 241, 232, 0.035));
}

.timeline span {
  width: 38px;
  height: 38px;
  margin-bottom: 48px;
  border-radius: 50%;
  border: 1px solid rgba(197, 155, 90, 0.74);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  font-weight: 850;
}

.timeline small {
  margin: 18px 0 2px;
}

.timeline-note {
  max-width: 780px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.limits {
  background: #090d0c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.limits-list {
  display: grid;
  gap: 14px;
}

.limits-list p {
  margin: 0;
  padding: 20px;
  border-left: 3px solid var(--brass);
  background: rgba(197, 155, 90, 0.08);
  color: var(--soft);
  line-height: 1.55;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #090d0c;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 40px 0;
}

.footer-inner p {
  flex: 1 1 320px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.nav-cta,
.primary-button,
.quick-nav a,
.conversation-card,
.workflow-shell,
.ops-board article,
.flow-card,
.growth-grid article,
.pain-grid article,
.implementation-grid article,
.workflow-line article,
.internal-story article,
.benefit-list article {
  transition:
    transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(197, 155, 90, 0.32);
}

.nav-cta:hover,
.quick-nav a:hover {
  border-color: rgba(197, 155, 90, 0.7);
  background: rgba(197, 155, 90, 0.1);
}

.conversation-card:hover,
.workflow-shell:hover,
.ops-board article:hover,
.flow-card:hover,
.growth-grid article:hover,
.pain-grid article:hover,
.implementation-grid article:hover,
.workflow-line article:hover,
.internal-story article:hover,
.benefit-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 155, 90, 0.34);
}

a:focus-visible,
.nav-cta:focus-visible,
.primary-button:focus-visible,
.quick-nav a:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: rgba(197, 155, 90, 0.3);
  color: var(--ink);
}

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

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

@media (max-width: 920px) {
  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 8, 7, 0.92) 0%, rgba(8, 12, 10, 0.7) 42%, rgba(8, 12, 10, 0.95) 100%),
      linear-gradient(90deg, rgba(5, 8, 7, 0.92), rgba(5, 8, 7, 0.18));
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-content {
    align-self: end;
    padding-bottom: 72px;
  }

  .intro-grid,
  .split,
  .benefits,
  .limits-inner,
  .panel-section,
  .flow-columns,
  .internal-section,
  .workflow-shell {
    grid-template-columns: 1fr;
  }

  .growth-grid,
  .timeline,
  .check-grid,
  .internal-story,
  .pain-grid,
  .implementation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 28px, 1160px);
    padding-top: 18px;
  }

  .brand span:last-child {
    font-size: 0.95rem;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content,
  .section {
    width: min(100% - 28px, 1160px);
  }

  .hero-content {
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.6rem);
  }

  h2 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1.34rem;
  }

  .hero-copy,
  .intro-grid p,
  .panel-copy p {
    font-size: 1rem;
  }

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

  .primary-button {
    width: 100%;
  }

  .quick-nav {
    position: sticky;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding: 10px 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 46px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 46px), transparent 100%);
  }

  .quick-nav::-webkit-scrollbar {
    display: none;
  }

  .quick-nav a {
    font-size: 0.86rem;
  }

  .section {
    padding: 66px 0;
  }

  .workflow-shell {
    padding: 24px 18px;
  }

  .ops-board,
  .growth-grid,
  .timeline,
  .check-grid,
  .benefit-list,
  .internal-story,
  .pain-grid,
  .implementation-grid {
    grid-template-columns: 1fr;
  }

  .workflow-line article,
  .growth-grid article,
  .timeline article,
  .internal-story article,
  .pain-grid article,
  .implementation-grid article {
    min-height: auto;
  }

  .timeline span {
    margin-bottom: 30px;
  }

}
