/* =====================================================
   SECÇÃO CTA — BANCO SOL (COMPACTA)
===================================================== */

.sol-cta {
  background: #f4b400;
  padding: 40px 20px;
}

.sol-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

.sol-cta-text {
  max-width: 600px;
}

.sol-cta-text h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.sol-cta-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  max-width: 520px;
}

/* BOTÕES */
.sol-cta-buttons {
  display: flex;
  gap: 15px;
  margin-left: auto;
  justify-content: flex-end;
  flex-shrink: 0;
}

.btn-sol-primary {
  background: #000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-sol-outline {
  border: 2px solid #000;
  color: #000;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-sol-primary:hover,
.btn-sol-outline:hover {
  transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .sol-cta {
    padding: 35px 20px;
  }

  .sol-cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .sol-cta-text {
    max-width: 100%;
  }

  .sol-cta-text p {
    max-width: 100%;
  }

  .sol-cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .sol-cta-text h2 {
    font-size: 22px;
  }

  .sol-cta-text p {
    font-size: 13px;
  }

  .sol-cta-buttons {
    width: 100%;
  }

  .btn-sol-primary,
  .btn-sol-outline {
    width: 100%;
    text-align: center;
  }
}