.pix-card {
  background: #dfdfdf;
  border-radius: 20px;
  padding: 20px;
  margin: 15px 0;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.534);
  width: 100%;
}

.pix-card h4 {
  color: #000000;
  margin-bottom: 10px;
  font-size: 25px;
  margin: 6px;
}

.pix-card p {
  color: #585858;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

.pix-key-container {
  background: white;
  border-radius: 20px;
  padding: 15px;
  margin: 10px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.pix-key-label {
  display: block;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
  font-size: 18px;
}

.pix-key-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

#pix-key {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: var(--secundary-color);
  background: white;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid var(--principal-color);
  word-break: break-all;
  width: 100%;
  text-align: center;
  font-weight: 600;
}

.copy-button {
  background: var(--principal-color);
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 650;
  font-family: "Montserrat", sans-serif;
  transition: background-color 0.3s ease;
  text-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.664);
  min-width: 200px;
}

.copy-button:hover {
  background: #9dd5d1;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.copy-button:active {
  background: #8cc8c4;
  transform: translateY(0);
}

.pix-card .receiver-info {
  background: white;
  padding: 10px 15px;
  border-radius: 12px;
  margin: 10px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}