:root {
  --forest: #006400;
  --forest-dark: #004b2d;
  --forest-light: #0b7a4d;
  --gold: #f4b400;
  --gold-dark: #c78f00;
  --slate: #0f172a;
  --muted: #5f6b7a;
  --bg: #f5f7f9;
  font-size: 62.5%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--slate);
  font-size: 1.6rem;
  line-height: 1.6;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem clamp(1.6rem, 4vw, 5rem);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav__brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  color: var(--forest);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.nav__link {
  font-weight: 500;
  color: var(--muted);
}

.nav__link--gold {
  color: var(--gold-dark);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--green {
  background: var(--forest);
  color: #fff;
}

.btn--green:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: #1f1f1f;
}

.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: clamp(2rem, 6vw, 6rem);
  background: linear-gradient(135deg, rgba(0, 100, 0, 0.06), rgba(244, 180, 0, 0.15));
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero__content h1 {
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1.2;
  margin-bottom: 1.6rem;
  color: var(--forest-dark);
}

.hero__content p {
  color: var(--muted);
  font-size: 1.8rem;
}

.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.08);
}

.hero__notification {
  position: absolute;
  right: 1.6rem;
  top: 1.6rem;
  background: var(--forest);
  color: #fff;
  padding: 1rem 1.6rem;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.6rem, 5vw, 6rem);
}

.section__heading {
  margin-bottom: 2rem;
}

.section__heading h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--forest-dark);
}

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

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(15, 23, 42, 0.08);
}

.comparison-table th,
.comparison-table td {
  padding: 1.6rem;
  text-align: left;
}

.comparison-table thead {
  background: rgba(0, 100, 0, 0.08);
}

.comparison-table tbody tr:nth-child(every) {
  background: rgba(0, 0, 0, 0.02);
}

.comparison-table tbody tr:nth-child(odd) {
  background: rgba(15, 23, 42, 0.01);
}

.comparison-table tbody tr td:last-child {
  color: var(--forest);
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid--bento {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 1rem 2.2rem rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.card__icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 12px;
  background: rgba(0, 100, 0, 0.1);
  display: grid;
  place-items: center;
  color: var(--forest);
  font-weight: 700;
}

.band {
  background: #fff;
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
  box-shadow: 0 1.6rem 3.6rem rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.trust-list li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.footer {
  margin-top: auto;
  background: #03150d;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.6rem;
}

.whatsapp-widget {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 9;
  background: var(--gold);
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

@media (max-width: 640px) {
  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

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