/* === SECCIÓN DE POLÍTICA DE PRIVACIDAD === */
.privacy-policy {
  background-color: #000;
  color: #f2f2f2;
  padding: 4rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.privacy-policy .card {
  background: linear-gradient(145deg, #0a0a0a, #111);
  border: 1px solid #1c1c1c;
  border-radius: 16px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 12px rgba(0, 188, 212, 0.08);
  animation: fadeSlide 0.6s ease-out both;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.privacy-policy h1 {
  font-size: 2.4rem;
  color: #00bcd4;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.privacy-policy .updated {
  text-align: center;
  font-size: 0.95rem;
  color: #999;
  margin-bottom: 2.5rem;
}

.privacy-policy h2 {
  font-size: 1.5rem;
  color: #00bcd4;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 4px solid #00bcd4;
}

.privacy-policy p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.privacy-policy ul {
  list-style: none;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.privacy-policy ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.privacy-policy ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #00bcd4;
  font-weight: bold;
  font-size: 1rem;
  transform: translateY(2px);
}

.privacy-policy a {
  color: #00bcd4;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-policy a:hover {
  color: #1de9b6;
}

.privacy-policy hr {
  border: none;
  height: 1px;
  background: #222;
  margin: 3rem 0;
}

.privacy-policy .closing {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ccc;
  margin-top: 3rem;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .privacy-policy .card {
    padding: 2rem;
  }

  .privacy-policy h1 {
    font-size: 2rem;
  }

  .privacy-policy h2 {
    font-size: 1.3rem;
  }

  .privacy-policy p,
  .privacy-policy ul li {
    font-size: 1rem;
  }
}
