:root {
  --bg: #f6f8f2;
  --surface: #ffffff;
  --primary: #1f6f43;
  --primary-2: #2f8f57;
  --accent: #b7d77a;
  --text: #163126;
  --muted: #557062;
  --line: #dbe7da;
  --shadow: 0 18px 40px rgba(22, 49, 38, 0.08);
  --radius: 22px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f7faf5 0%, #eef5eb 100%);
  color: var(--text);
}





section[id] {
  scroll-margin-top: 100px;
}

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

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(246, 248, 242, 0.88);
  border-bottom: 1px solid rgba(219, 231, 218, 0.8);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 16px 0;
  gap: 16px;
}



.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--primary);
}

.brand img {
  height: 56px;
  width: auto;
  display: block;
}

.hero-logo {
  margin-bottom: 22px;
}

.hero-logo img {
  width: min(320px, 70%);
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  font-size: 1rem;
  padding: 0.55rem 0.8rem;
  color: var(--muted);
  border-radius: 12px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-links a:hover {
  background: rgba(31, 111, 67, 0.10);
  color: #1b5e20;
}

.nav-links a:active {
  background: #1f6f43;
  color: #f4fff4;
}

.hero {
  padding: 76px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(183, 215, 122, 0.24);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 62ch;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--shadow);
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--line);
}

.hero-card {
  background: radial-gradient(circle at top right, rgba(183, 215, 122, 0.5), rgba(255,255,255,0.96) 42%), #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 1.15rem;
}

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

.hero-list li {
  background: rgba(246, 248, 242, 0.95);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  line-height: 1.5;
}

.stats {
  padding: 18px 0 34px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
}

.stat p {
  margin: 0;
  line-height: 1.45;
}






.stat strong {
  display: block;
  font-size: 1.55rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.section {
  padding: 34px 0;
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 72ch;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.18rem;
  color: var(--primary);
}

.card p, .card li {
  color: var(--muted);
  line-height: 1.7;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.tag {
  background: rgba(183, 215, 122, 0.22);
  color: var(--primary);
  border: 1px solid rgba(183, 215, 122, 0.45);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.impact-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.impact-item h4 {
  margin: 0 0 10px;
  color: var(--primary);
}

.ods-section {
  padding: 34px 0;
}



.ods-wrap {
  background: transparent;
  border-radius: 20px;
  padding: 0;
  box-shadow: none;
}

.ods-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}

/*========== ODS ==========*/



.c-embed__article__ods .c-ods__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 6rem;
  height: 6.4rem;
}

.c-embed__article__ods .c-ods__item figure {
  width: 6rem;
  min-height: 6rem;
  max-height: 6rem;
  border-radius: 0.35rem;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.c-embed__article__ods .c-ods__item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0.25rem;
}

.c-embed__article__ods .c-ods__item__title {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: max-content;
  max-width: 138px;
  font-size: 0.75rem;
  line-height: 1.1;
  text-align: center;
  padding: 0.25rem;
  border-radius: 0.25rem;
  color: #ffffff;
  background-color: #1e1e1e;
  transition: .2s all;
  pointer-events: none;
}

.c-embed__article__ods .c-ods__item__title::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: calc(50% - 0.5rem);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #1e1e1e;
}

.c-embed__article__ods .c-ods__item:hover .c-ods__item__title {
  visibility: visible;
  opacity: 1;
}

.contact {
  padding: 52px 0 80px;
}

.contact-box {
  background: linear-gradient(135deg, #163c2c 0%, #1f6f43 100%);
  color: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-box p {
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 22px 0 40px;
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .grid-2,
  .stats-grid,
  .impact-grid,
  .ods-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 48px; }
}


.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  padding: 14px 18px;
}

.contact-card img {
  flex: 0 0 auto;
  display: block;
}

.contact-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-card strong {
  font-size: 0.95rem;
  color: #fff;
}

.contact-card span {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
}

.contact-links .contact-card {
  justify-content: flex-start;
  flex: 1 1 260px;
}

@media (max-width: 920px) {
  .contact-links .contact-card {
    width: 100%;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--primary);
  border-radius: 999px;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #e5eee3; /* mais escuro que o fundo da nav */
    border: 1px solid #cfdccc;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .nav-links a:hover {
    background: rgba(31, 111, 67, 0.12);
    color: #14532d;
  }

  .nav-links a:active,
  .nav-links a:focus-visible {
    background: #1f6f43;
    color: #f7fff8;
  }
}

  .brand img {
    height: 44px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(246, 248, 242, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .nav-links a:hover {
    background: rgba(183, 215, 122, 0.18);
    color: var(--primary);
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
  }
}
