/* Lista de presentes */
.gift-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.gift-item {
  text-align: center;
  max-width: 200px;
}

.gift-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.gift-btn {
  background-color: #A1AFA0;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
  display: inline-block;
  text-decoration: none;
}

.gift-btn:hover {
  background-color: #8f9d8e;
}

/* Popup estilo inline do Magnific Popup */
.white-popup {
  position: relative;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 10px;
  text-align: center;
  color: #555;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.qr-img {
  width: 200px;
  margin: 15px 0;
}

.white-popup textarea {
  width: 100%;
  height: 80px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: none;
  font-family: inherit;
}

.white-popup button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #A1AFA0;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

/* Botão de fechar (X) */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  box-shadow: none;
}

/* Remove fundo, borda e sombra do botão de fechar do Magnific Popup */
.mfp-close {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: #999;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 20px;
  text-decoration: none;
}

.mfp-close:focus,
.mfp-close:hover {
  color: #666;
  background: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.gift-btn {
  background-color: #A1AFA0;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
  display: inline-block;
  text-decoration: none;
}

/* Mantém o texto branco no hover */
.gift-btn:hover,
.gift-btn:focus {
  background-color: #8f9d8e;
  color: #fff;
  text-decoration: none;
  outline: none;
}

/* Remove estilo de link visitado */
.gift-btn:visited {
  color: #fff;
  text-decoration: none;
}

.copy-message {
  margin-top: 10px;
  font-size: 14px;
  color: #4CAF50;
  text-align: center;
  transition: opacity 0.3s ease;
}

.popup-input,
.popup-textarea {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
}