/* ============================================
   BEGO GONZÁLEZ — PÁGINAS LEGALES
   ============================================ */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}

.legal-back {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--girasol);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--verde); }

.legal-page > h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--verde);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(42,32,24,0.07);
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--verde);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.legal-section h2::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 1.1em;
  background: var(--girasol);
  border-radius: 2px;
  flex-shrink: 0;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--tinta-mid);
  line-height: 1.85;
  margin-bottom: 0.8rem;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  margin: 0.6rem 0 0.8rem 0;
  padding-left: 1.2rem;
}
.legal-section li {
  font-size: 0.95rem;
  color: var(--tinta-mid);
  line-height: 1.8;
  margin-bottom: 0.3rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.legal-section li::before {
  content: '✦';
  position: absolute;
  left: -0.2rem;
  font-size: 0.5rem;
  color: var(--girasol);
  top: 0.55em;
}

.legal-section a {
  color: var(--verde);
  text-decoration: none;
  border-bottom: 1px solid rgba(142,136,163,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.legal-section a:hover {
  color: var(--girasol);
  border-color: var(--girasol);
}

.legal-section strong {
  color: var(--verde);
  font-weight: 500;
}

@media (max-width: 480px) {
  .legal-page { padding: 3rem 1.2rem 5rem; }
}
