/* Estilos para o modal de QR Code PIX */
.pix-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

.pix-qrcode-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.qrcode-image {
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 15px 0;
}

.qrcode-image img {
  width: 200px;
  height: 200px;
}

.pix-copy-container {
  width: 100%;
  margin: 15px 0;
}

.pix-copy-code {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}

.pix-copy-code textarea {
  width: 100%;
  height: 80px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: none;
  font-family: monospace;
  font-size: 12px;
}

.copy-success {
  color: #28a745;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.pix-info {
  width: 100%;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin: 10px 0;
}

.pix-info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.info-label {
  font-weight: bold;
  color: #555;
}

.info-value {
  color: #333;
}

.pix-instructions {
  width: 100%;
  margin: 15px 0;
}

.pix-instructions h4 {
  margin-bottom: 10px;
  color: #333;
}

.pix-instructions ol {
  padding-left: 20px;
}

.pix-instructions li {
  margin-bottom: 8px;
  color: #555;
}

/* Botões */
.btn {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-primary:hover {
  background-color: #0069d9;
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

/* Responsividade */
@media (min-width: 768px) {
  .pix-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .pix-qrcode-container {
    width: 45%;
  }

  .pix-copy-container {
    width: 45%;
  }

  .pix-info,
  .pix-instructions {
    width: 100%;
  }
}
