/**
 * HWS Amazon Seller - Privacy Page Styles
 * 
 * Estilos para página de privacidade e gerenciamento de dados (LGPD)
 */

.privacy-page {
  min-height: 100vh;
  background: #f7fafc;
}

.privacy-main {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  font-size: 2rem;
  color: #1a202c;
  margin-bottom: 2rem;
  text-align: center;
}

/* Cards */
.card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

/* Consent Card */
.consent-card {
  border-left: 4px solid #667eea;
}

.consent-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f7fafc;
  border-radius: 8px;
}

.consent-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #667eea;
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.consent-content h4 {
  margin: 0 0 0.5rem 0;
  color: #2d3748;
  font-size: 1.1rem;
}

.consent-content p {
  margin: 0;
  color: #718096;
  font-size: 0.95rem;
}

.consent-date {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  color: #718096;
  font-size: 0.9rem;
}

/* Rights Card */
.rights-card {
  border-left: 4px solid #48bb78;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.right-item {
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.right-item:hover {
  border-color: #667eea;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.right-item.danger {
  background: #fff5f5;
  border-color: #fc8181;
}

.right-item.danger:hover {
  border-color: #f56565;
  box-shadow: 0 4px 12px rgba(245, 101, 101, 0.2);
}

.right-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.right-item h3 {
  font-size: 1.2rem;
  color: #2d3748;
  margin-bottom: 0.75rem;
}

.right-item p {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Policy Card */
.policy-card {
  border-left: 4px solid #ed8936;
}

.policy-card p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-secondary {
  background: #667eea;
  color: white;
}

.btn-secondary:hover {
  background: #5a67d8;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.btn-danger {
  background: #f56565;
  color: white;
}

.btn-danger:hover {
  background: #e53e3e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(245, 101, 101, 0.3);
}

.btn:active {
  transform: translateY(0);
}

/* Actions */
.privacy-actions {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-main {
    padding: 1rem;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }

  .right-icon {
    font-size: 2.5rem;
  }
}

/* Loading State */
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #718096;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

