:root {
  color-scheme: light;
  --ink: #1f211e;
  --muted: #676a60;
  --line: #d7d8cf;
  --paper: #f3f4ee;
  --panel: #fbfbf6;
  --accent: #6f7b55;
  --clay: #b46f4d;
  --deep: #2b3027;
  --sage: #e0e5d6;
  --chalk: #fffef9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

main {
  overflow: hidden;
}

section {
  padding: clamp(46px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.hero {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(111, 123, 85, 0.18), rgba(180, 111, 77, 0.09) 58%, rgba(251, 251, 246, 0.88)),
    var(--panel);
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--deep);
  font-size: 14px;
}

nav span {
  color: var(--muted);
  text-align: right;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(32px, 7vw, 86px);
  max-width: 1190px;
  width: 100%;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--clay);
}

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

h1 {
  max-width: 820px;
  font-family: "Avenir Next", Avenir, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 24px;
}

h2 {
  max-width: 780px;
  font-family: "Avenir Next", Avenir, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.intro,
.panel p,
article p,
.lead p {
  color: var(--muted);
  line-height: 1.65;
}

.intro {
  max-width: 680px;
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--deep);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.primary {
  background: var(--deep);
  color: white;
}

.primary:hover,
.primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.secondary {
  color: var(--deep);
  background: rgba(255, 254, 249, 0.72);
}

.secondary:hover,
.secondary:focus-visible {
  border-color: var(--clay);
  color: var(--clay);
}

.phone-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--deep);
  border-radius: 28px;
  background: var(--deep);
  box-shadow: 0 24px 80px rgba(43, 48, 39, 0.22);
}

.phone-top {
  display: flex;
  gap: 6px;
  margin: 4px 0 20px;
}

.phone-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddded4;
  opacity: 0.9;
}

.lead {
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 17px;
  background: var(--chalk);
  animation: rise 720ms ease both;
}

.lead:nth-child(3) {
  animation-delay: 120ms;
}

.lead:nth-child(4) {
  animation-delay: 240ms;
}

.lead small {
  color: var(--clay);
  font-weight: 800;
  text-transform: uppercase;
}

.lead strong {
  display: block;
  margin: 8px 0;
  color: var(--deep);
}

.brand-strip {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand-strip p {
  margin: 0;
  color: var(--muted);
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chips span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.72);
  color: var(--deep);
  font-size: 13px;
}

.capture {
  background: var(--chalk);
}

.capture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

article {
  background: var(--chalk);
  padding: clamp(22px, 3vw, 34px);
}

article span {
  display: block;
  margin-bottom: 34px;
  color: var(--clay);
  font-weight: 900;
}

.whatsapp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(26px, 6vw, 76px);
  align-items: center;
  background: var(--sage);
}

.panel {
  max-width: 680px;
}

.crm-card {
  border-radius: 24px;
  background: var(--deep);
  color: white;
  padding: 20px;
  box-shadow: 0 24px 70px rgba(43, 48, 39, 0.18);
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.row:last-child {
  border-bottom: 0;
}

.row span {
  color: #d5dacd;
}

.row strong {
  text-align: right;
}

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

.questions {
  max-width: 860px;
  display: grid;
  gap: 10px;
}

.questions button {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--chalk);
  color: var(--deep);
  padding: 18px 20px;
  border-radius: 8px;
  text-align: left;
  font: inherit;
  font-weight: 800;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  nav,
  .brand-strip,
  .whatsapp {
    align-items: flex-start;
  }

  .hero-grid,
  .whatsapp,
  .capture-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 48px;
  }

  .brand-strip {
    flex-direction: column;
  }

  .chips {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }
}

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