:root {
  --ink: #26180f;
  --muted: #6e5b4c;
  --paper: #fffaf2;
  --cream: #f7ead8;
  --wheat: #d89a45;
  --gold: #f2b84b;
  --caramel: #9b4f1d;
  --green: #24473a;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(57, 32, 14, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 242, 0.82);
  border-bottom: 1px solid rgba(38, 24, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--caramel), var(--gold));
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta,
.button {
  border-radius: 8px;
}

.nav-cta {
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 72px) 48px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 16, 8, 0.78), rgba(28, 16, 8, 0.44), rgba(28, 16, 8, 0.12)),
    url("imagens/tres\ pao.png?auto=format&fit=crop&w=1400&q=85") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(820px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--wheat);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  font-weight: 900;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-facts strong {
  display: block;
  font-size: 20px;
}

.section {
  padding: 92px clamp(20px, 5vw, 72px);
}

.section-heading {
  width: min(1080px, 100%);
  margin: 0 auto 38px;
}

.section-heading.narrow {
  width: min(820px, 100%);
  text-align: center;
}

.intro-grid,
.split,
.benefit-columns,
.opportunity,
.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 64px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
}

.intro-grid p,
.section-heading p,
.opportunity p,
.contact p,
.model-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

blockquote {
  margin: 0;
  padding: 28px;
  border-left: 5px solid var(--gold);
  color: var(--green);
  background: var(--cream);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.15;
}

.behavior {
  background: var(--green);
  color: var(--white);
}

.behavior .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.pill-row span {
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.split {
  align-items: stretch;
}

.solution-panel,
.benefit-columns article,
.process-grid article,
.model-card,
.contact-card {
  border: 1px solid rgba(38, 24, 15, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.solution-panel {
  padding: clamp(28px, 4vw, 44px);
}

.solution-panel h2 {
  color: var(--green);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 5px var(--white);
}

.check-list.warning li::before {
  background: var(--caramel);
}

.products {
  background: #fff5e7;
}

.product-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.product-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.product-card div {
  padding: 24px;
}

.product-card p,
.benefit-columns p {
  color: var(--muted);
  line-height: 1.55;
}

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

.process-grid article {
  padding: clamp(28px, 4vw, 42px);
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--caramel);
  font-weight: 900;
}

.process-grid ol {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  color: var(--muted);
}

.benefits {
  background: var(--green);
  color: var(--white);
}

.benefits .eyebrow {
  color: var(--gold);
}

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

.benefit-columns article {
  padding: 28px;
}

.benefit-columns .check-list li {
  color: var(--muted);
}

.model {
  background: linear-gradient(135deg, #fffaf2 0%, #f5ddbd 100%);
}

.model-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  align-items: center;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps span {
  padding: 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.opportunity {
  align-items: center;
}

.opportunity-media {
  min-height: 370px;
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(38, 24, 15, 0.05), rgba(38, 24, 15, 0.32)),
    url("imagens/tres\ pao.png?auto=format&fit=crop&w=1000&q=85") center / cover;
  box-shadow: var(--shadow);
}

.contact {
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 32px;
}

.contact-card a,
.contact-card span {
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--cream);
  font-weight: 900;
}

.contact-card small {
  color: var(--muted);
  line-height: 1.45;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    display: none;
    width: min(320px, calc(100vw - 40px));
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .intro-grid,
  .split,
  .benefit-columns,
  .opportunity,
  .contact,
  .model-card {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    min-height: 860px;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 14px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 820px;
    padding: 104px 18px 36px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 68px 18px;
  }

  .hero-facts span {
    width: 100%;
  }

  .opportunity-media {
    min-height: 320px;
  }
}
