
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
}

h1.title {
  font-family: 'Kaushan Script', cursive;
  font-size: clamp(52px, 9vw, 110px);
  margin-bottom: 16px;
  margin-top: 0px;
  line-height: 1;
}

section {
  padding: 60px 10%;
}

p {
  line-height: 1.6;
}

.hero {
  background: linear-gradient(to bottom, #7a3b1f, #3a1a10);
  background-image: url('assets/imagem-pai.png');
  background-size: 108%;
  background-position: center -530px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 8%;
  box-sizing: border-box;
}

.overlay {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 20px 16px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hero .title,
.hero .sub,
.intro-text h2,
.intro-text p,
.image-caption {
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

.hero .sub {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  max-width: 950px;
}

.intro {
  display: flex;
  gap: 40px;
  margin-top: 0;
  align-items: center;
  justify-content: center;
}

.desc {
  font-size: 20px;
}

.intro-media {
  max-width: 240px;
}

.intro img {
  width: 100%;
  border-radius: 15px;
}

.image-caption {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.32);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.intro-text {
  max-width: 620px;
  text-align: left;
  padding: 18px 22px;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 16px;
}

.intro-text h2 {
  margin: 0 0 12px;
}

@media (max-width: 1024px) {
  .hero {
    background-position: center;
    background-size: cover;
  }

  .intro {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 16px 5%;
    background-attachment: scroll;
  }

  .overlay {
    gap: 16px;
    padding: 14px;
  }

  .hero .sub {
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .intro {
    flex-direction: column;
  }

  .intro-media,
  .intro-text {
    max-width: 100%;
  }

  .intro-text {
    text-align: center;
    padding: 14px;
  }
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #25D366;
  border-radius: 25px;
  color: white;
  background: #25D366;
  text-decoration: none;
  margin-top: 15px;
  font-weight: 600;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-whatsapp i {
  margin-right: 8px;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.agro {
  background-color: #b9d532;
  background-image: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)), url('assets/agro.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: white;
}

.agro h2, .unidade h2, .geo h2 {
  background: white;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 30px;
  color: #1f3d12;
}

.agro .desc,
.agro p {
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

.cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 200px;
  height: 150px;
  background: white;
  border-radius: 15px;
}

.geo {
  background: #2e6fa3;
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('assets/mundo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
}

.geo-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.geo-content > div {
  flex: 1;
}

.geo img {
  width: 250px;
  border-radius: 20px;
}

.btn-white {
  background: white;
  color: #2e6fa3;
  padding: 10px 25px;
  border: 2px solid white;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-white:hover {
  background: #2e6fa3;
  color: white;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.light {
  background: #eaeaea;
}

.unidade {
  background: #f58a1f;
  color: black;
  text-align: center;
}

.cards-2 {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.big {
  width: 300px;
  height: 200px;
  background: white;
  border-radius: 20px;
}

.cta {
  background: #eee;
  text-align: center;
}

.btn-green {
  background: #25D366;
  color: white;
  padding: 10px 25px;
  border: 2px solid #25D366;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-green:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

@media (max-width: 992px) {
  section {
    padding: 50px 6%;
  }

  .geo-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .geo img {
    width: min(100%, 320px);
  }

  .card {
    width: min(100%, 320px);
    height: 160px;
  }

  .big {
    width: min(100%, 420px);
    height: 220px;
  }
}

@media (max-width: 768px) {
  h1.title {
    font-size: clamp(44px, 13vw, 72px);
  }

  .desc {
    font-size: 17px;
  }

  .agro h2,
  .unidade h2,
  .geo h2 {
    padding: 10px 20px;
    border-radius: 18px;
    font-size: 20px;
  }

  .cards,
  .cards-2 {
    gap: 16px;
  }

  .cta {
    padding: 40px 6%;
  }
}

@media (max-width: 480px) {
  section {
    padding: 38px 5%;
  }

  .hero .sub {
    font-size: 13px;
  }

  .intro-text h2 {
    font-size: 22px;
  }

  .intro-text p,
  .image-caption,
  .geo p,
  .agro p,
  .unidade p,
  .cta p {
    font-size: 15px;
  }

  .btn,
  .btn-green,
  .btn-white {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .card,
  .big {
    width: 100%;
  }

  footer {
    font-size: 13px;
  }
}
