/* =========================
   ESTILO PÁGINAS LEGALES
========================= */

.legal-container {
  max-width: 900px;
  margin: 120px auto 80px auto;
  padding: 50px 40px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  color: #1e293b;
}

/* Título principal */
.legal-container h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
  text-align: center;
}

/* Fecha actualización */
.legal-container p strong {
  color: #475569;
  font-weight: 500;
}

/* Subtítulos */
.legal-container h2 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 10px;
  color: #0f172a;
  position: relative;
  padding-left: 15px;
}

/* Línea decorativa lateral */
.legal-container h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 18px;
  width: 4px;
  background: linear-gradient(180deg, #38bdf8, #0ea5e9);
  border-radius: 2px;
}

/* Párrafos */
.legal-container p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #334155;
}

/* Listas */
.legal-container ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.legal-container li {
  margin-bottom: 8px;
}

/* Enlaces */
.legal-container a {
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 500;
}

.legal-container a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-container {
    margin: 100px 20px 60px 20px;
    padding: 30px 20px;
  }

  .legal-container h1 {
    font-size: 28px;
  }

  .legal-container h2 {
    font-size: 18px;
  }
}

/* =========================
   LOGO PÁGINAS LEGALES
========================= */

.legal-logo {
  text-align: center;
  margin-bottom: 30px;
}

.legal-logo img {
  max-width: 500px;
  height: auto;
  transition: transform 0.3s ease;
}

.legal-logo img:hover {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 992px) {
  .legal-logo img {
    max-width: 220px;
  }
}

/* Celular */
@media (max-width: 576px) {
  .legal-logo img {
    max-width: 180px;
  }
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Compensar navbar fixed */
#terminos,
#privacidad {
  scroll-margin-top: 120px; /* Ajusta si tu navbar es más alto */
}