/* privacy_style.css - Sistema de diseño premium para la Política de Privacidad de AREM-POS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #090d16;
  --bg-surface: rgba(18, 26, 47, 0.7);
  --bg-surface-solid: #121a2f;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: #3b82f6;
  
  --primary: #2563eb;
  --primary-glow: rgba(37, 99, 235, 0.4);
  --accent: #8b5cf6;
  --accent-glow: rgba(139, 92, 246, 0.4);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --success: #10b981;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  
  --font-sans: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  background-image: linear-gradient(180deg, #090d16 0%, #05070c 100%);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 100px; /* Separación de la navbar */
}

/* Efectos de fondo */
.bg-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  top: 5%;
  left: -100px;
  z-index: -1;
  pointer-events: none;
}

.bg-glow-2 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 50%;
  right: -100px;
  z-index: -1;
  pointer-events: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(9, 13, 22, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
}

.logo {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo i {
  color: #3b82f6;
  -webkit-text-fill-color: initial;
}

.btn-back {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(-2px);
}

/* Contenido Principal */
.privacy-container {
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.privacy-header {
  text-align: center;
  margin-bottom: 40px;
}

.privacy-header h1 {
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-header p {
  color: var(--text-secondary);
  font-size: 15px;
}

.privacy-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 45px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-premium);
}

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

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

.privacy-section h2 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.privacy-section h2 i {
  color: #3b82f6;
  font-size: 18px;
}

.privacy-section p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
}

.privacy-section ul {
  list-style: none;
  padding-left: 5px;
  margin-bottom: 15px;
}

.privacy-section li {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.privacy-section li i {
  color: var(--success);
  margin-top: 3px;
  font-size: 14px;
}

.last-update {
  margin-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

/* Footer */
footer {
  background: #05070c;
  border-top: 1px solid var(--border-color);
  padding: 40px 20px;
  text-align: center;
}

footer p {
  color: var(--text-muted);
  font-size: 13px;
}

/* Responsividad */
@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
  
  .navbar {
    padding: 16px 20px;
  }

  .privacy-header h1 {
    font-size: 28px;
  }

  .privacy-card {
    padding: 25px;
  }
}
