/* Container principal */
.payment-solutions-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  margin-top: 105px;
}

/* Colunas */
.buttons-column,
.text-column {
  flex: 1;
  padding: 10px;
}

/* Botões de serviço */
.service-button {
  background-color: #241e42;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 15px 20px;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: pre-wrap;
  /* Permite quebra de linha */
}

.service-button:hover {
  background-color: #241e42;
}

.service-button .arrow-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 12px;
}

/* Texto da coluna direita */
.text-column h2 {
  font-size: 24px;
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
  white-space: pre-wrap;
  /* Permite quebra de linha */
}

.text-column p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 20px;
}

/* Botão de call-to-action */
.cta-button {
  background-color: #241e42;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button:hover {
  background-color: #241e42;
}

.cta-button .arrow-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 12px;
}

/* Responsividade */
@media (max-width: 768px) {
  .payment-solutions-container {
    flex-direction: column;
    gap: 10px;
  }

  .buttons-column,
  .text-column {
    width: 100%;
  }
}