:root {
  color-scheme: light;

  /* Brand */
  --green-900: #063a22;
  --green-800: #0a4a2b;
  --green-700: #0c5b35;
  --green-600: #128046;
  --green-500: #1c9c57;
  --gold-700: #9a7427;
  --gold-600: #b88a2e;
  --gold-500: #c8a24b;
  --gold-400: #e6c878;

  /* UI */
  --text: #1d2421;
  --muted: #5b665f;
  --border: #e4e7e4;
  --surface: #ffffff;
  --background: #f6f4ee;
  --link: var(--green-700);

  --shadow-sm: 0 1px 2px rgba(6, 58, 34, .06), 0 4px 12px rgba(6, 58, 34, .06);
  --shadow-md: 0 10px 30px rgba(6, 58, 34, .12);
  --radius: 16px;

  --font-display: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--link);
  text-decoration: none;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 244, 238, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: .95rem;
  font-weight: 500;
}

.nav a {
  color: var(--text);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--green-700);
  text-decoration: none;
}

.nav .btn {
  color: #fff;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff;
  box-shadow: 0 8px 22px rgba(18, 140, 74, .35);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #3a2b06;
  box-shadow: 0 8px 22px rgba(184, 138, 46, .35);
}

.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border: 2px solid rgba(12, 91, 53, .25);
}

.btn-ghost:hover {
  border-color: var(--green-700);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(10, 74, 43, .92) 0%, rgba(6, 58, 34, .96) 100%),
    url("assets/estoque-corredor.jpg") center / cover no-repeat;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 500px at 80% -10%, rgba(28, 156, 87, .3), transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: var(--background);
  clip-path: ellipse(75% 100% at 50% 100%);
}

.hero .wrap {
  position: relative;
  padding: 96px 0 110px;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid rgba(230, 200, 120, .4);
  border-radius: 999px;
  padding: 7px 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 18px 0 16px;
  letter-spacing: -.01em;
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .85);
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.hero-stats .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--gold-400);
  line-height: 1;
}

.hero-stats .lbl {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
}

/* ---------- Sections ---------- */
.section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 46px;
}

.kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.12;
  margin: 10px 0 12px;
  color: var(--green-800);
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Benefits ---------- */
.benefits {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1.5px solid var(--gold-500);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  box-shadow: 0 6px 16px rgba(12, 91, 53, .3);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--green-800);
  margin: 2px 0 6px;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

.benefit-card strong {
  color: var(--text);
}

.benefits-tagline {
  text-align: center;
  margin: 46px auto 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  line-height: 1.3;
  color: var(--green-700);
}

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

/* ---------- About ---------- */
.about .wrap:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid #fff;
  outline: 1px solid var(--border);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.about-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  color: var(--green-800);
  margin: 10px 0 16px;
  line-height: 1.14;
}

.about-text p {
  color: var(--muted);
  margin: 0 0 14px;
  max-width: 560px;
}

.segments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.segment {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold-500);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-800);
  box-shadow: var(--shadow-sm);
}

.segment svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.coverage {
  margin-top: 22px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: #fff;
  border-radius: var(--radius);
}

.coverage .kicker {
  color: var(--gold-400);
}

.coverage p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .9);
}

/* ---------- Contact / CTA ---------- */
.cta {
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(28, 156, 87, .3), transparent 60%),
    linear-gradient(160deg, var(--green-800), var(--green-900));
  color: #fff;
}

.cta .wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  line-height: 1.14;
  margin: 10px 0 14px;
}

.cta h2 .gold {
  color: var(--gold-400);
}

.cta p {
  color: rgba(255, 255, 255, .85);
  margin: 0 0 26px;
  max-width: 480px;
}

.contact-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(6px);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.contact-item + .contact-item {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.contact-item .ci-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
}

.contact-item .ci-icon svg {
  width: 20px;
  height: 20px;
  stroke: #3a2b06;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item .lbl {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .6);
}

.contact-item a,
.contact-item .val {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}

.contact-item a:hover {
  color: var(--gold-400);
  text-decoration: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
}

.site-footer .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  padding: 12px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 14px;
}

.site-footer p {
  margin: 0 0 8px;
  line-height: 1.5;
}

.site-footer a {
  color: rgba(255, 255, 255, .8);
}

.site-footer a:hover {
  color: var(--gold-400);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

/* ---------- Policy page ---------- */
.policy {
  width: min(840px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 40px;
}

.policy-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 40px clamp(20px, 5vw, 52px);
}

.policy-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--green-800);
  margin: 4px 0 6px;
  line-height: 1.15;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green-700);
  margin: 34px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.policy-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  margin: 20px 0 6px;
}

.policy-content p,
.policy-content li {
  color: #38423c;
  overflow-wrap: anywhere;
}

.policy-content p {
  max-width: 70ch;
  margin: 0 0 12px;
}

.policy-content ul {
  max-width: 70ch;
  padding-left: 22px;
  margin: 0 0 12px;
}

.policy-content li + li {
  margin-top: 6px;
}

.updated-date {
  color: var(--muted);
  font-size: .92rem;
}

.policy-company {
  display: inline-block;
  color: var(--gold-700);
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero .wrap {
    padding: 64px 0 88px;
  }

  .hero-stats {
    gap: 32px;
  }

  .about .wrap:first-child,
  .cta .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-photo {
    order: -1;
  }

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

  .site-footer .wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .nav {
    gap: 14px;
  }

  .nav .hide-sm {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .site-footer .wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
