#s8 {
  background: var(--accent);
  position: relative;
}

#s8 .section-inner {
  position: relative;
  z-index: 2;
}

.s8-cols {
  display: flex;
  align-items: center;
  gap: 6vw;
  width: 100%;
}

.s8-col-a {
  flex: 0 0 48%;
}

.s8-col-b {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* =====================
   LABEL E HEADING
   ===================== */
.s8-label {
  color: rgba(8, 8, 8, 0.55) !important;
}

.s8-heading {
  color: #080808;
  font-size: clamp(28px, 4vw, 64px);
  line-height: 0.92;
}

/* =====================
   COLUNA DIREITA
   ===================== */
.s8-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.s8-sub {
  font-size: clamp(14px, 1.1vw, 18px);
  color: rgba(8, 8, 8, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* =====================
   BOTAO CTA
   ===================== */
.s8-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #080808;
  color: var(--fg);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-bottom: 20px;
  display: flex;
}

.s8-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.s8-btn svg {
  width: 16px;
  height: 16px;
  fill: #25d366;
  flex-shrink: 0;
}

/* =====================
   EMAIL LINK
   ===================== */
.s8-email {
  display: block;
  font-size: 13px;
  color: rgba(8, 8, 8, 0.55);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.s8-email:hover {
  color: #080808;
}

@media (max-width: 768px) {
  .s8-cols {
    flex-direction: column;
    gap: 2rem;
  }

  .s8-col-a,
  .s8-col-b {
    width: 100%;
  }

  .s8-heading {
    font-size: clamp(26px, 8vw, 40px);
  }

  .s8-btn {
    width: 100%;
    justify-content: center;
  }
}
