/* SharkSales - Legal Pages (Termos, Privacidade, etc) */

.ss-legal-page {
  background: linear-gradient(180deg, #0a0e1a 0%, #0f1429 50%, #0a0e1a 100%);
}

.ss-legal-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.ss-legal-header {
  background: linear-gradient(135deg, rgba(26, 27, 35, 0.95) 0%, rgba(15, 16, 41, 0.9) 100%);
  border: 1px solid rgba(111, 129, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ss-legal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6f81ff 0%, #5cb8ff 50%, #6f81ff 100%);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ss-legal-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 15px;
  background: linear-gradient(135deg, #fff 0%, #5cb8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ss-legal-updated {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.ss-legal-lgpd {
  color: #6f81ff;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 10px 0 0;
  padding: 8px 16px;
  background: rgba(111, 129, 255, 0.1);
  border-radius: 20px;
  display: inline-block;
}

.ss-legal-body {
  background: rgba(26, 27, 35, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
}

.ss-legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ss-legal-section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ss-legal-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(111, 129, 255, 0.3);
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ss-legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #5cb8ff;
  margin: 25px 0 15px;
}

.ss-legal-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 15px;
}

.ss-legal-section ul,
.ss-legal-section ol {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  padding-left: 25px;
}

.ss-legal-section li {
  margin-bottom: 10px;
  position: relative;
}

.ss-legal-section li::marker {
  color: #6f81ff;
}

.ss-legal-section ul li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #6f81ff 0%, #5cb8ff 100%);
  border-radius: 50%;
}

.ss-legal-section strong {
  color: #fff;
  font-weight: 600;
}

.ss-legal-link {
  color: #6f81ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.ss-legal-link:hover {
  color: #5cb8ff;
  border-bottom-color: #5cb8ff;
}

.ss-legal-footer {
  background: rgba(111, 129, 255, 0.08);
  border: 1px solid rgba(111, 129, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
  text-align: center;
}

.ss-legal-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.ss-legal-footer strong {
  color: #fff;
  font-weight: 700;
}

.ss-legal-footer a {
  color: #6f81ff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(111, 129, 255, 0.3);
  transition: all 0.2s ease;
}

.ss-legal-footer a:hover {
  color: #5cb8ff;
  border-bottom-color: #5cb8ff;
}

/* Responsive */
@media (max-width: 768px) {
  .ss-legal-content {
    margin: 20px auto;
  }

  .ss-legal-header {
    padding: 30px 20px;
  }

  .ss-legal-title {
    font-size: 2rem;
  }

  .ss-legal-body {
    padding: 25px 20px;
  }

  .ss-legal-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .ss-legal-section h2 {
    font-size: 1.5rem;
  }

  .ss-legal-section h3 {
    font-size: 1.125rem;
  }

  .ss-legal-section p,
  .ss-legal-section ul,
  .ss-legal-section ol {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .ss-legal-title {
    font-size: 1.75rem;
  }

  .ss-legal-body {
    padding: 20px 15px;
  }

  .ss-legal-section h2 {
    font-size: 1.375rem;
  }
}

/* Print styles */
@media print {
  .ss-header,
  .ss-footer,
  .ss-cart-icon {
    display: none !important;
  }

  .ss-legal-content {
    max-width: 100%;
  }

  .ss-legal-body {
    background: white;
    color: black;
    border: none;
  }

  .ss-legal-section p,
  .ss-legal-section ul,
  .ss-legal-section ol {
    color: black;
  }
}
