#content.servicos-page {
  justify-content: flex-start;
  align-items: stretch;
  gap: 48px;
  padding: 48px 6vw 72px;
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 0.04), rgba(25, 25, 25, 0)),
    linear-gradient(135deg, rgba(234, 175, 49, 0.12), rgba(255, 255, 255, 0) 45%);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: stretch;
}

.service-hero-copy,
.service-hero-card,
.service-section,
.service-cta {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.service-hero-copy {
  padding: 42px;
}

.service-kicker,
.service-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: rgba(234, 175, 49, 0.16);
  color: #734d00;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-inline-media {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.12);
}

.service-inline-media img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.service-hero-copy h1 {
  margin-top: 20px;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.02;
  color: #111111;
  max-width: 11ch;
}

.service-lead {
  margin-top: 20px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #444444;
  max-width: 62ch;
}

.service-actions,
.service-note {
  margin-top: 28px;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  color: #111111;
  text-decoration: none;
  font-weight: 600;
}

.service-note {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-note span {
  color: #555555;
  font-weight: 600;
}

.service-hero-card {
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(234, 175, 49, 0.25), rgba(234, 175, 49, 0) 40%),
    linear-gradient(160deg, #1a1a1a, #2d2d2d);
  color: #ffffff;
}

.service-hero-card h2 {
  font-size: 1.55rem;
  line-height: 1.2;
}

.service-hero-card p {
  margin-top: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.service-metrics {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.service-metrics li {
  padding: 16px 18px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.08);
}

.service-metrics strong {
  display: block;
  font-size: 1.35rem;
  color: #ffcf67;
}

.service-metrics span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
}

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

.service-section {
  padding: 32px;
}

.service-section h2 {
  margin-top: 16px;
  font-size: 1.9rem;
  color: #161616;
}

.service-section-intro {
  margin-top: 14px;
  color: #555555;
  line-height: 1.7;
  max-width: 70ch;
}

.service-card {
  padding: 28px;
  border-radius: 20px;
  background-color: #faf7f0;
  border: 1px solid rgba(234, 175, 49, 0.18);
}

.service-card i {
  font-size: 1.5rem;
  color: rgb(234, 175, 49);
}

.service-card h3 {
  margin-top: 16px;
  font-size: 1.2rem;
  color: #161616;
}

.service-card p {
  margin-top: 10px;
  color: #555555;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.service-list li {
  padding: 18px 20px;
  border-radius: 18px;
  background-color: #f7f7f7;
  color: #333333;
  font-weight: 600;
}

.service-list li i {
  margin-right: 10px;
  color: rgb(234, 175, 49);
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
}

.service-cta h2 {
  font-size: 1.8rem;
  color: #161616;
}

.service-cta p {
  margin-top: 10px;
  color: #555555;
  line-height: 1.7;
  max-width: 60ch;
}

@media screen and (max-width: 992px) {
  .service-hero,
  .service-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .service-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 600px) {
  #content.servicos-page {
    gap: 28px;
    padding: 28px 16px 48px;
  }

  .service-hero-copy,
  .service-hero-card,
  .service-section,
  .service-cta {
    padding: 24px;
    border-radius: 18px;
  }

  .service-hero-copy h1 {
    max-width: none;
  }

  .service-inline-media img {
    max-height: 260px;
  }

  .service-actions {
    flex-direction: column;
  }

  .service-button-secondary,
  .service-actions .btn-default {
    width: 100%;
  }
}
