/**
 * ============================================
 * POLICY PAGES STYLES - Política de Cookies, Privacidade, Termos
 * ============================================
 * Layout moderno - cores do Sobre (#1dd1a1, #54a0ff)
 * Suporte a tema dark/light
 */

/* Variáveis alinhadas ao Sobre */
:root {
  --policy-bg: #ffffff;
  --policy-text: #0f172a;
  --policy-muted: rgba(15, 23, 42, 0.72);
  --policy-border: rgba(17, 24, 39, 0.12);
  --policy-surface: #f8fafc;
}

[data-theme="dark"] {
  --policy-bg: #050b12;
  --policy-text: rgba(255, 255, 255, 0.92);
  --policy-muted: rgba(255, 255, 255, 0.72);
  --policy-border: rgba(255, 255, 255, 0.12);
  --policy-surface: rgba(9, 14, 22, 0.68);
}

/* Container principal */
.policy-page {
  min-height: 100vh;
  background: var(--policy-bg);
  padding: 140px 0 80px;
  transition: background 0.3s ease;
}

[data-theme="dark"] .policy-page {
  background: var(--policy-bg);
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Badge - cores Sobre */
.policy-badge {
  display: inline-block;
  background: linear-gradient(318deg, rgba(29, 209, 161, 0.2) 25%, rgba(84, 160, 255, 0.2) 100%);
  color: #1dd1a1;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

[data-theme="dark"] .policy-badge {
  background: linear-gradient(318deg, rgba(29, 209, 161, 0.2) 25%, rgba(84, 160, 255, 0.2) 100%);
  color: #54a0ff;
}

/* Título principal - gradiente Sobre */
.policy-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--policy-text);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.policy-title span {
  background: linear-gradient(318deg, #1dd1a1 25%, #54a0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .policy-title {
  color: var(--policy-text);
}

[data-theme="dark"] .policy-title span {
  background: linear-gradient(318deg, #1dd1a1 25%, #54a0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtítulos */
.policy-section-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--policy-text);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.4;
}

[data-theme="dark"] .policy-section-title {
  color: var(--policy-text);
}

/* Parágrafos */
.policy-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--policy-muted);
  margin-bottom: 24px;
}

[data-theme="dark"] .policy-content {
  color: var(--policy-muted);
}

/* Listas */
.policy-list {
  padding-left: 24px;
  margin-bottom: 24px;
}

.policy-list li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--policy-muted);
  margin-bottom: 12px;
}

[data-theme="dark"] .policy-list li {
  color: var(--policy-muted);
}

.policy-list li strong {
  color: var(--policy-text);
  font-weight: 600;
}

[data-theme="dark"] .policy-list li strong {
  color: var(--policy-text);
}

/* Cards de destaque - borda Sobre */
.policy-card {
  background: var(--policy-surface);
  border-left: 4px solid #1dd1a1;
  border-radius: 8px;
  padding: 24px;
  margin: 32px 0;
}

[data-theme="dark"] .policy-card {
  background: var(--policy-surface);
  border-left-color: #54a0ff;
}

.policy-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--policy-text);
  margin-bottom: 12px;
}

[data-theme="dark"] .policy-card-title {
  color: var(--policy-text);
}

/* Links - cores Sobre */
.policy-content a {
  color: #1dd1a1;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.policy-content a:hover {
  color: #54a0ff;
  border-bottom-color: currentColor;
}

[data-theme="dark"] .policy-content a {
  color: #54a0ff;
}

[data-theme="dark"] .policy-content a:hover {
  color: #1dd1a1;
}

/* Animações fade simples */
.policy-fade {
  opacity: 0;
  animation: policy-fade-in 0.6s ease-out forwards;
}

.policy-fade:nth-child(1) {
  animation-delay: 0.1s;
}

.policy-fade:nth-child(2) {
  animation-delay: 0.2s;
}

.policy-fade:nth-child(3) {
  animation-delay: 0.3s;
}

.policy-fade:nth-child(4) {
  animation-delay: 0.4s;
}

.policy-fade:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes policy-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 767px) {
  .policy-page {
    padding: 100px 0 60px;
  }

  .policy-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .policy-section-title {
    font-size: 20px;
    margin-top: 32px;
  }

  .policy-content,
  .policy-list li {
    font-size: 15px;
  }
}