@import url("https://fonts.googleapis.com/css2?family=Kepler+Display:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  background: #d1ebd4;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  background: #d1ebd4;
  padding: 20px 0;
  position: relative;
  z-index: 30;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.nav a {
  color: #1b5e20;
  margin-left: 20px;
  text-decoration: none;
  white-space: nowrap;
}

/* ================= HERO / PARALLAX ================= */
.parallax-section {
  position: relative;
  height: 100vh;
  background: #d1ebd4;
  overflow: hidden;
  z-index: 1;
}

.hero-text {
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-logo {
  width: 600px;
  max-width: 80vw;
  height: auto;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 32px;
  background: #1b5e20;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

/* ================= FLORESTA ================= */
.forest {
  position: relative;
  height: 100vh;
  z-index: 5;
}

.forest img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
}

/* ================= SECTIONS ================= */
.section {
  padding: 100px 0;
}

/* ================= SOBRE ================= */
.about {
  position: relative;
  z-index: 20;
  background: #ffffff;
}

.about-content {
  max-width: 720px;
  margin: auto;
}

.about h2 {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  color: #1b5e20;
  margin-bottom: 32px;
}

.about p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 24px;
  text-align: justify;
}

/* ================= CARROSSEL ================= */
.about-slider {
  margin-top: 64px;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scroll-carousel 40s linear infinite;
}

.carousel img {
  width: 420px;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  flex-shrink: 0;
}

/* animação contínua */
@keyframes scroll-carousel {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.services {
  position: relative;
  z-index: 20;
  background: #ffffff;
  padding: 120px 0;
  font-family: "Inter", sans-serif;
}

.services-title {
  font-size: 42px;
  color: #1b5e20;
  margin-bottom: 16px;
  text-align: center;
}

.services-intro {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 18px;
  color: #555;
}

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

.service-group {
  background: #f6f9f6;
  padding: 40px;
  border-radius: 20px;
  text-align: left;
}

.service-group h3 {
  color: #1b5e20;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.service-group ul {
  list-style: none;
  padding-left: 0;
  max-width: 720px;
}

.service-group li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;

  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
  text-align: left;   /* 👈 IGUAL AO SOBRE */
}


.service-group li::before {
  content: "•";
  color: #1b5e20;
  position: absolute;
  left: 0;
}

/* ================= FOOTER ================= */
.footer {
  background: #1b5e20;
  color: white;
  text-align: center;
  padding: 24px 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .logo-img {
    height: 25px;
  }
  
  .hero-text {
    top: 25%;
  }

  .parallax-section {
    height: 85vh;
  }

  .forest img {
    bottom: 15vh;
  }

  .carousel img {
    width: 260px;
    height: 180px;
  }

  .services-groups {
    grid-template-columns: 1fr;
  }
}
