.service-page-hero {
    display:flex;
    align-items:center;

    min-height:620px;


  padding: 70px 0;
  color: #ffffff;

   background:
    linear-gradient(rgba(47,94,58,.78), rgba(47,94,58,.78)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1600&q=80");

  background-position: center;
  background-size: cover;

}

.service-page-hero .section-label {
  color: #ffffff;
  opacity: 0.85;
}

.service-page-hero h1 { 
  margin: 0 0 18px;
 
  margin-bottom:22px;
  font-size:clamp(2.8rem,2vw,4rem);
  line-height:1.05;
  font-weight:700;
}

.service-page-hero p {
  font-size: 1.0rem;
  line-height: 1.7;
  margin-bottom:22px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 8px;
  margin-bottom: 34px;

  font-size: .95rem;
}

.breadcrumb a {
  color: #ffffff;
  opacity: .85;
  transition:.2s;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb span {
  color: #ffffff;
  opacity: .55;
}

.hero-forest{
    background:
      linear-gradient(rgba(25,48,33,.68),rgba(25,48,33,.68)),
      url("/assets/img/hero/solucoes/servicos-florestais.png")
      center center / cover no-repeat;      
}

@media (max-width:768px){

    .hero-forest{
        background-image:
            linear-gradient(rgba(25,48,33,.68), rgba(25,48,33,.68)),
            url("/assets/img/hero/solucoes/mobile/servicos-florestais.png");
    }

}

.hero-rural{
    background:
      linear-gradient(rgba(25,48,33,.68),rgba(25,48,33,.68)),
      url("/assets/img/hero/solucoes/regularizacao-rural.png")
       center center / cover no-repeat;      
}

@media (max-width:768px){

    .hero-rural{
        background-image:
            linear-gradient(rgba(25,48,33,.68), rgba(25,48,33,.68)),
            url("/assets/img/hero/solucoes/mobile/regularizacao-rural.png");
    }

}

.hero-license{
    background:
      linear-gradient(rgba(25,48,33,.68),rgba(25,48,33,.68)),
      url("/assets/img/hero/solucoes/licenciamento-ambiental.png")
        center center / cover no-repeat;      
}

@media (max-width:768px){

    .hero-license{
        background-image:
            linear-gradient(rgba(25,48,33,.68), rgba(25,48,33,.68)),
            url("/assets/img/hero/solucoes/mobile/licenciamento-ambiental.png");
    }

}

.hero-water{
    background:
      linear-gradient(rgba(25,48,33,.68),rgba(25,48,33,.68)),
      url("/assets/img/hero/solucoes/recursos-hidricos.png")
        center center / cover no-repeat;      
}

@media (max-width:768px){

    .hero-water{
        background-image:
            linear-gradient(rgba(25,48,33,.68), rgba(25,48,33,.68)),
            url("/assets/img/hero/solucoes/mobile/recursos-hidricos.png");
    }

}

.hero-topography{
    background:
      linear-gradient(rgba(25,48,33,.68),rgba(25,48,33,.68)),
      url("/assets/img/hero/solucoes/servicos-topograficos.png")
        center center / cover no-repeat;      
}

@media (max-width:768px){

    .hero-topography{
        background-image:
            linear-gradient(rgba(25,48,33,.68), rgba(25,48,33,.68)),
            url("/assets/img/hero/solucoes/mobile/servicos-topograficos.png");
    }

}

.hero-drone{
    background:
      linear-gradient(rgba(25,48,33,.68),rgba(25,48,33,.68)),
      url("/assets/img/hero/solucoes/levantamentos-drone.png")
        center center / cover no-repeat;      
}

@media (max-width:768px){

    .hero-drone{
        background-image:
            linear-gradient(rgba(25,48,33,.68), rgba(25,48,33,.68)),
            url("/assets/img/hero/solucoes/mobile/levantamentos-drone.png");
    }

}

.btn-primary{
  display: inline-block;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: var(--green-light);
  color: white;
  
}

.service-page-content {
  padding: 40px 0;
}

.service-introduction {
  max-width: 800px;
  margin-bottom: 44px;
}

.service-introduction p {
  color: var(--muted);

  font-size: 1rem;
  line-height: 1.75;
}

.service-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-detail-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(47, 94, 58, 0.07);
  scroll-margin-top: 110px;
}

.service-detail-card h2 {
  margin-bottom: 14px;
  font-size: 1.3rem;
  line-height: 1.35;
}

.service-detail-card p {
  margin-bottom: 24px;

  color: var(--muted);

  line-height: 1.7;
}

.service-request-link {
  display: inline-flex;
  align-items: center;

  margin-top: auto;

  color: var(--green);

  font-weight: 700;
}

.service-request-link::after {
  content: "→";

  margin-left: 8px;

  transition: transform 0.2s ease;
}

.service-request-link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 800px) {
  .service-page-hero {
    padding: 55px 0;
  }

  .service-page-content {
    padding: 20px 0;
  }

  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    padding: 24px 20px;
  }
}

