/* Modal de Política de Privacidade */
.privacy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.privacy-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.privacy-modal-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.privacy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  border-bottom: 1px solid #e0e0e0;
}

.privacy-modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.privacy-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  line-height: 1;
}

.privacy-modal-close:hover {
  color: #000;
}

.privacy-modal-close span {
  line-height: 1;
}

.privacy-modal-body {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}

.privacy-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

.privacy-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.privacy-section {
  margin-bottom: 30px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  margin-top: 0;
}

.privacy-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.privacy-modal-footer {
  padding: 20px 30px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: flex-end;
}

.privacy-modal-button {
  background-color: #333;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.privacy-modal-button:hover {
  background-color: #000;
}

/* Responsividade */
@media (max-width: 768px) {
  .privacy-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .privacy-modal-header {
    padding: 20px;
  }

  .privacy-modal-header h2 {
    font-size: 20px;
  }

  .privacy-modal-body {
    padding: 20px;
  }

  .privacy-modal-footer {
    padding: 15px 20px;
  }

  .privacy-section h3 {
    font-size: 16px;
  }

  .privacy-section p {
    font-size: 14px;
  }
}

