:root {
  --verde: #9ebf26;
  --oliva: #99a637;
  --oliva-profundo: #736d1f;
  --rose: #a67a76;
  --claro: #f2f2f2;
  --texto: #181714;
  --muted: #57534d;
  --linha: rgba(115, 109, 31, 0.18);
  --sombra: 0 18px 42px rgba(54, 44, 40, 0.16);
  --sombra-suave: 0 10px 28px rgba(54, 44, 40, 0.1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

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

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1450px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
  transition: padding 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(166, 122, 118, 0.92);
  box-shadow: var(--sombra-suave);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 216px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #ffffff;
  font-weight: 700;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 10px 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--verde);
  transition: transform 160ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 184px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--sombra-suave);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown.is-open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--texto);
  font-weight: 700;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(158, 191, 38, 0.16);
  color: var(--oliva-profundo);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  border: 0;
  padding: 0 26px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.btn-primary {
  color: #ffffff;
  background: var(--verde);
  box-shadow: 0 10px 20px rgba(78, 88, 17, 0.24);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  gap: 12px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn svg {
  width: 21px;
  height: 21px;
  margin-left: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.play-icon {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  border-left: 7px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 630px;
  padding: 122px 0 62px;
  background:
    radial-gradient(circle at 0 50%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(98deg, rgba(166, 122, 118, 0.96) 0%, rgba(166, 122, 118, 0.92) 42%, rgba(166, 122, 118, 0.78) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(520px, 1fr);
  gap: 56px;
  align-items: center;
  width: min(1450px, calc(100% - 48px));
  margin: 0 auto;
}

.hero__copy {
  padding-left: 64px;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.35rem, 4.2vw, 4.05rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--verde);
  text-shadow: 0 4px 8px rgba(78, 88, 17, 0.22);
}

.hero p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(24, 23, 20, 0.78);
  font-size: 1.08rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero__visual {
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--sombra);
}

.hero__visual img {
  width: 100%;
  height: clamp(330px, 34vw, 420px);
  object-fit: cover;
}

.quick-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  width: min(1420px, calc(100% - 48px));
  margin: -8px auto 0;
  padding: 16px 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--sombra-suave);
}

.quick-panel article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 106px;
  padding: 16px 18px;
  border: 1px solid rgba(166, 122, 118, 0.13);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(54, 44, 40, 0.08);
}

.quick-panel svg {
  width: 66px;
  height: 66px;
  fill: none;
  stroke: var(--verde);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.quick-panel h2,
.quick-panel p {
  margin: 0;
}

.quick-panel h2 {
  font-size: 1.18rem;
}

.quick-panel p {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.section h2 span,
.section__copy h2 span {
  color: var(--verde);
}

.section p {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) 1.45fr minmax(240px, 320px);
  gap: 44px;
  align-items: center;
}

.section__copy {
  padding-right: 44px;
  border-right: 1px solid rgba(166, 122, 118, 0.32);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.metrics article {
  min-height: 118px;
  padding: 6px 30px;
  border-right: 1px solid rgba(166, 122, 118, 0.28);
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  color: var(--texto);
  font-size: 1.7rem;
}

.metrics span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.highlight-card {
  min-height: 140px;
  padding: 24px;
  border: 1px solid var(--rose);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, var(--claro));
}

.highlight-card span {
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.highlight-card strong {
  display: block;
  margin-top: 8px;
}

.highlight-card p {
  margin: 8px 0 12px;
}

.highlight-card a {
  color: var(--verde);
  font-weight: 900;
}

.process,
.resources,
.contact {
  width: 100%;
  padding-left: max(24px, calc((100% - 1420px) / 2));
  padding-right: max(24px, calc((100% - 1420px) / 2));
}

.process {
  background: var(--claro);
}

.section__heading {
  max-width: 730px;
  margin-bottom: 32px;
}

.process-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-grid article,
.resource-grid article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(153, 166, 55, 0.2);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--sombra-suave);
}

.process-grid span {
  color: var(--verde);
  font-weight: 900;
}

.process-grid h3,
.resource-grid h3 {
  margin: 14px 0 10px;
  font-size: 1.3rem;
}

.resource-grid {
  grid-template-columns: repeat(4, 1fr);
}

.audience,
.market,
.contact {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 56px;
  align-items: center;
}

.audience {
  border-top: 1px solid var(--linha);
  border-bottom: 1px solid var(--linha);
}

.audience .btn {
  justify-self: end;
}

.market {
  grid-template-columns: minmax(360px, 560px) 1fr;
}

.market-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  min-height: 240px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(115, 109, 31, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 109, 31, 0.08) 1px, transparent 1px),
    #ffffff;
  background-size: 28px 28px;
  box-shadow: var(--sombra-suave);
}

.market-board article {
  align-self: center;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(166, 122, 118, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.market-board span,
.market-board small {
  display: block;
  color: var(--muted);
}

.market-board strong {
  display: block;
  margin: 8px 0;
  color: var(--verde);
  font-size: 1.65rem;
}

.contact {
  background: linear-gradient(135deg, rgba(166, 122, 118, 0.12), rgba(158, 191, 38, 0.1));
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--sombra-suave);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--texto);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(166, 122, 118, 0.36);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--texto);
  background: var(--claro);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 44px;
  padding: 34px max(24px, calc((100% - 1420px) / 2));
  color: #ffffff;
  background: var(--rose);
}

.footer__brand img {
  width: 220px;
  border-radius: 8px;
}

.footer__brand p {
  max-width: 420px;
  margin: 14px 0 0;
  line-height: 1.55;
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 10px;
  align-content: start;
  font-style: normal;
}

.site-footer a:hover {
  color: var(--verde);
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 23, 20, 0.58);
}

.demo-modal__panel {
  position: relative;
  width: min(760px, 100%);
  padding: 34px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.demo-modal__panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.12;
}

.demo-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--rose);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

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

.demo-steps article {
  padding: 18px;
  border: 1px solid var(--linha);
  border-radius: 8px;
  background: var(--claro);
}

.demo-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
  }

  .brand img {
    width: 184px;
  }

  .hero__inner,
  .split,
  .audience,
  .market,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding-left: 0;
  }

  .hero__visual {
    border-radius: 8px;
  }

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

  .section__copy {
    border-right: 0;
    padding-right: 0;
  }

  .audience .btn {
    justify-self: start;
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 178px auto;
    width: min(100% - 28px, 720px);
  }

  .site-header.is-scrolled {
    top: 8px;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 46px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 8px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
  }

  .menu-toggle span {
    height: 2px;
    background: #ffffff;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 8px;
    background: rgba(166, 122, 118, 0.98);
    box-shadow: var(--sombra-suave);
  }

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

  .nav-link {
    width: 100%;
    padding: 12px 4px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin: 0 0 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .hero__inner,
  .quick-panel,
  .section {
    width: min(100% - 28px, 720px);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero__visual img {
    height: 300px;
  }

  .quick-panel,
  .process-grid,
  .resource-grid,
  .metrics,
  .market-board,
  .demo-steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    margin-top: -18px;
    padding: 14px;
    gap: 14px;
  }

  .metrics article {
    border-right: 0;
    border-bottom: 1px solid rgba(166, 122, 118, 0.28);
    padding: 18px 0;
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .quick-panel article {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .quick-panel svg {
    width: 52px;
    height: 52px;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section h2 {
    font-size: 2rem;
  }
}
