/* ============================================
   LEGAL.CSS - Bilbao Consultores
   Estilos para páginas legales (Aviso Legal, Privacidad, Cookies)
   ============================================ */

/* ===== LEGAL PAGE ===== */
.legal-page {
  padding: 80px 0;
  background: var(--color-bg-white);
}

.legal-page h1 {
  font-size: 42px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-dark);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  text-align: center;
}

.legal-content {
  background: var(--color-bg-white);
}

.legal-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 26px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.legal-section h3 {
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  margin: 30px 0 16px;
}

.legal-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 20px;
}

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

.legal-section strong {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-semibold);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.legal-list li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.legal-list li::before {
  content: "•";
  color: var(--color-primary);
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  left: 8px;
  top: -2px;
}

.legal-list li strong {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-semibold);
}

.legal-section a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.legal-section a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.legal-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid var(--color-border);
  text-align: center;
}

.legal-footer p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Cookie Table Specific Styles */
.cookie-table {
  margin: 30px 0;
}

.cookie-table h3 {
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  margin: 25px 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
}

.cookie-table .legal-list li {
  background: var(--color-bg-light);
  padding: 20px 20px 20px 28px;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.cookie-table .legal-list li::before {
  display: none;
}

.cookie-table .legal-list li strong {
  display: block;
  font-size: 17px;
  margin-bottom: 10px;
}

.cookie-table .legal-list li em {
  font-weight: var(--font-weight-semibold);
  font-style: normal;
  color: var(--color-text-dark);
}

.cookie-table .legal-list li br {
  display: block;
  content: "";
  margin: 6px 0;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 767px) {
  .legal-page {
    padding: 50px 0;
  }

  .legal-page h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .legal-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .legal-section h3 {
    font-size: 18px;
    margin: 24px 0 14px;
  }

  .legal-section p,
  .legal-list li {
    font-size: 15px;
    line-height: 1.7;
  }

  .legal-list li {
    padding-left: 24px;
    margin-bottom: 10px;
  }

  .cookie-table .legal-list li {
    padding: 16px 16px 16px 24px;
  }

  .cookie-table h3 {
    font-size: 17px;
    margin: 20px 0 12px;
  }

  .legal-footer {
    margin-top: 40px;
    padding-top: 25px;
  }

  .legal-footer p {
    font-size: 14px;
  }
}

/* ===== RESPONSIVE TABLET ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  .legal-page {
    padding: 60px 0;
  }

  .legal-page h1 {
    font-size: 36px;
  }

  .legal-section h2 {
    font-size: 24px;
  }
}

/* ===== RESPONSIVE LARGE DESKTOP ===== */
@media (min-width: 1400px) {
  .legal-page {
    padding: 100px 0;
  }

  .legal-page h1 {
    font-size: 48px;
    margin-bottom: 50px;
  }

  .legal-section h2 {
    font-size: 28px;
  }
}
