/* Privacy Modal Styles */
.privacy-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.privacy-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.privacy-modal-content {
  position: relative;
  background: #000;
  border-radius: 12px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

/* Custom scrollbar for privacy modal */
.privacy-modal-content::-webkit-scrollbar {
  width: 8px;
}

.privacy-modal-content::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 4px;
}

.privacy-modal-content::-webkit-scrollbar-thumb {
  background: #feb434;
  border-radius: 4px;
}

.privacy-modal-content::-webkit-scrollbar-thumb:hover {
  background: #ffc966;
}

.privacy-modal-overlay.active .privacy-modal-content {
  transform: scale(1);
}

.privacy-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}

.privacy-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #feb434;
}

.privacy-modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #feb434;
  margin: 0 0 20px 0;
  padding-right: 40px;
}

.privacy-modal-text {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  white-space: pre-line;
}

/* Reduzir espaçamento entre parágrafos */
.privacy-modal-text br + br {
  display: none;
}

.privacy-modal-text br {
  line-height: 1.2;
}

.privacy-modal-text p {
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.privacy-modal-text p:last-child {
  margin-bottom: 0;
}

.privacy-modal-text strong {
  color: #feb434;
  font-weight: 600;
}

/* Footer Privacy Link */
.footer-privacy-link {
  display: inline-block;
  margin-top: 4px;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.footer-privacy-link:hover {
  opacity: 0.8;
}

/* Mobile */
@media (max-width: 768px) {
  .privacy-modal-content {
    width: calc(100% - 10px);
    margin: 5px;
    padding: 20px;
    max-height: calc(100vh - 10px);
    border-radius: 8px;
  }

  .privacy-modal-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .privacy-modal-text {
    font-size: 14px;
  }

  .privacy-close-btn {
    top: 10px;
    right: 10px;
    font-size: 28px;
    width: 36px;
    height: 36px;
  }
}

