/* Section label — badge pill */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: #0d2918;
  border: 1px solid #22c55e33;
  border-radius: 100px;
  padding: 5px 12px;
  margin: 0 auto 16px;
  width: fit-content;
}

/* Section title */
.section-title {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.35;
  margin: 0 0 28px;
  letter-spacing: -0.3px;
}

/* Logos de empresas */
.clients-block {
  margin-top: 40px;
  text-align: center;
  background: #f2f2f2;
  border-radius: 16px;
  padding: 24px 20px;
  margin-left: -16px;
  margin-right: -16px;
}

.clients-label {
  font-size: 10px;
  font-weight: 600;
  color: #888888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 20px;
  white-space: nowrap;
}

.clients-logos {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
}

/* CTA arredondado */
.cta-button {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 20px auto 0;
  padding: 13px 32px;
  font-size: 13px;
  letter-spacing: 1.2px;
  border-radius: 100px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.25);
}

.cta-button:hover {
  animation: cta-pulse 0.9s ease-out infinite;
  filter: brightness(1.08);
  transform: translateY(-1px);
}
