.legal-content {
    padding: 80px 0;
    background: #ffffff;
}

.legal-content .container {
    max-width: 1000px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2b2b2b;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #444;
}

.legal-content hr {
    margin: 50px 0;
    border-top: 1px solid #e5e5e5;
}

/* ==========================================================
   HERO LEGAL - Centro de Políticas y Documentación
========================================================== */

.legal-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, #1a0019, #531351);
  color: #ffffff;
  text-align: center;
  position: relative;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.legal-hero .container {
  position: relative;
  z-index: 2;
}

.legal-breadcrumb {
  font-size: 14px;
  margin-bottom: 18px;
  opacity: 0.85;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.legal-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.legal-breadcrumb a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.legal-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}

.legal-hero p {
  font-size: 17px;
  font-weight: 400;
  opacity: 0.92;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 992px) {
  .legal-hero {
    padding: 120px 0 60px;
  }

  .legal-hero h1 {
    font-size: 34px;
  }

  .legal-hero p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 110px 0 50px;
  }

  .legal-breadcrumb {
    font-size: 13px;
  }

  .legal-hero h1 {
    font-size: 28px;
  }

  .legal-hero p {
    font-size: 15px;
  }
}

/* ==========================
   GRID CARDS
========================== */

/* hace que las columnas se comporten igual */
.legal-grid .col-lg-6 {
  display: flex;
}

/* card uniforme */
.legal-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;

  width: 100%;
  min-height: 360px;

  display: flex;
  flex-direction: column;
}

.legal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.legal-card i {
  font-size: 28px;
  color: #520450;
  margin-bottom: 20px;
  display: inline-block;
}

.legal-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.legal-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

/* empuja el botón siempre abajo */
.legal-link {
  margin-top: auto;
  display: inline-block;
  font-weight: 700;
  color: rgb(99, 3, 102);
  text-decoration: none;
  transition: 0.3s;
}

.legal-link:hover {
  color: #520450;
  text-decoration: none;
}