/* ===== FONDO GENERAL ===== */
.privacy-page {
  background: radial-gradient(circle at top, #0f0f0f 0%, #000000 60%);
  min-height: 100vh;
  padding: 100px 20px;
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #d4ffd4;
}

/* ===== CONTENEDOR ===== */
.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 20, 0, 0.4);
  padding: 60px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(0, 255, 100, 0.15);
}

/* ===== TÍTULO PRINCIPAL ===== */
.privacy-page h1 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: #00ff88;
  text-shadow: 0 0 15px rgba(0, 255, 120, 0.6);
  letter-spacing: 1px;
}

/* ===== SUBTÍTULOS ===== */
.privacy-page h2 {
  font-size: 20px;
  margin-top: 50px;
  margin-bottom: 15px;
  color: #00ff88;
  position: relative;
}

.privacy-page h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #00ff88;
  margin-top: 8px;
  box-shadow: 0 0 10px #00ff88;
}

/* ===== TEXTO ===== */
.privacy-page p {
  font-size: 15px;
  color: #b6ffcc;
  margin-bottom: 15px;
}

/* ===== LISTAS ===== */
.privacy-page ul {
  margin: 15px 0 20px 20px;
}

.privacy-page li {
  margin-bottom: 8px;
  color: #a0ffbf;
}

/* ===== LINKS ===== */
.privacy-page a {
  color: #00ff88;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,255,136,0.4);
  transition: all 0.3s ease;
}

.privacy-page a:hover {
  color: #ffffff;
  border-bottom: 1px solid #00ff88;
  text-shadow: 0 0 8px #00ff88;
}

/* ===== FOOTER ===== */
.privacy-page footer {
  margin-top: 70px;
  text-align: center;
  font-size: 14px;
  color: #66ff99;
  border-top: 1px solid rgba(0,255,136,0.2);
  padding-top: 20px;
}
