:root {
  --ink: #17201d;
  --muted: #5f6965;
  --surface: #fffaf2;
  --paper: #ffffff;
  --brand: #17483f;
  --brand-2: #23685c;
  --accent: #f0b429;
  --sky: #d8e8ee;
  --line: #e2ded4;
  --shadow: 0 18px 45px rgba(23, 32, 29, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(226, 222, 212, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #17311f;
  background: var(--accent);
  border: 2px solid rgba(23, 72, 63, 0.2);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-name {
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a,
.site-footer a {
  text-decoration: none;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--brand);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #17311f;
  background: var(--accent);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(820px, calc(100svh - 72px));
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("https://alugai.clubedapata.com/assets/hero-mesas-cadeiras.png");
  background-position: center;
  background-size: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 22, 18, 0.82) 0%, rgba(9, 22, 18, 0.64) 42%, rgba(9, 22, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 22, 18, 0.24), rgba(9, 22, 18, 0.08));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0;
}

.hero-content {
  color: #fff;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 21px);
}

.final-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: #17311f;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(240, 180, 41, 0.24);
}

.button-primary:hover {
  background: #ffd367;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-hero-action {
  display: none;
  margin-bottom: 16px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 28px 0 0;
}

.trust-strip div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip dt {
  font-weight: 800;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-proof-item {
  padding: 22px clamp(18px, 4vw, 48px);
  background: var(--paper);
}

.quick-proof-item strong,
.quick-proof-item span {
  display: block;
}

.quick-proof-item span {
  margin-top: 4px;
  color: var(--muted);
}

.hero-quote {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow);
}

.quote-copy {
  max-width: 100%;
  margin-bottom: 18px;
}

.hero-quote .eyebrow {
  color: var(--brand);
}

.hero-quote h2 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3vw, 34px);
}

.quote-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #d7d0c3;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.field input:focus {
  outline: 3px solid rgba(240, 180, 41, 0.32);
  border-color: var(--accent);
}

.quote-submit {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 54px;
  cursor: pointer;
  font-size: 16px;
}

.quote-secondary {
  grid-column: 1 / -1;
  justify-self: center;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.quote-secondary:hover {
  text-decoration: underline;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

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

.section-heading p:not(.eyebrow),
.split p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
}

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

.product-card,
.testimonial-grid figure,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(23, 32, 29, 0.06);
}

.product-card {
  min-height: 248px;
  padding: 24px;
}

.product-card p {
  color: var(--muted);
}

.product-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.product-card-cta p {
  color: rgba(255, 255, 255, 0.84);
}

.product-icon {
  display: block;
  width: 48px;
  height: 34px;
  margin-bottom: 22px;
  border: 4px solid var(--brand-2);
  border-top-width: 8px;
  border-radius: 5px;
  position: relative;
}

.product-icon::before,
.product-icon::after {
  content: "";
  position: absolute;
  bottom: -18px;
  width: 4px;
  height: 16px;
  background: var(--brand-2);
}

.product-icon::before {
  left: 8px;
}

.product-icon::after {
  right: 8px;
}

.product-icon-chair {
  width: 34px;
  height: 42px;
  border-top-width: 4px;
}

.product-icon-wood {
  border-color: #8b5d33;
}

.product-icon-wood::before,
.product-icon-wood::after {
  background: #8b5d33;
}

.product-icon-round {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border-top-width: 4px;
}

.product-icon-cloth {
  border-color: #4a6f89;
  border-style: dashed;
}

.product-icon-cloth::before,
.product-icon-cloth::after {
  background: #4a6f89;
}

.text-link {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background: var(--sky);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 88px;
  padding: 20px 20px 20px 78px;
  border: 1px solid rgba(23, 32, 29, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 6px;
  font-weight: 800;
}

.steps span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

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

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 700;
}

.testimonials {
  background: #f4f7f0;
}

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

.testimonial-grid figure {
  margin: 0;
  padding: 24px;
}

.testimonial-grid blockquote {
  margin: 0 0 18px;
  font-size: 19px;
  font-weight: 700;
}

.testimonial-grid figcaption {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 7vw, 96px);
  color: #fff;
  background: var(--brand);
}

.final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #111917;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

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

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 42px 0;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(9, 22, 18, 0.82), rgba(9, 22, 18, 0.44));
  }

  .quick-proof,
  .product-grid,
  .split,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  .mobile-hero-action {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
  }

  .eyebrow {
    max-width: 250px;
  }

  .final-cta .button {
    width: 100%;
  }

  .quick-proof-item {
    padding: 18px;
  }

  .section {
    padding: 56px 18px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

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

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