/* =======================
   ESTILOS LEGALES
   ======================= */
body {
  background-color: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

/* =======================
   CONTENIDO GENERAL
   ======================= */
.legales__contenido {
  max-width: 1200px;
  margin: 6.5rem auto;
  padding: 0 2rem;
  display: grid;
  gap: 2rem;
}

.legales__contenido h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.legales__contenido h1::after {
  content: '';
  width: 160px;
  height: 4px;
  background: linear-gradient(to right, #cd212a, #000);
  display: block;
  margin: 0 auto 0;
  border-radius: 2px;
}

.legales__contenido h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.legales__contenido h2::after {
  content: '';
  width: 160px;
  height: 4px;
  background: linear-gradient(to right, #cd212a, #707070);
  display: block;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.legales__contenido p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.8;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.legales__contenido ul {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  max-width: 960px;
}

.legales__contenido li {
  background: #f4f4f4;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #111;
  border-left: 5px solid #cd212a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* =======================
   RESPONSIVE MÓVIL
   ======================= */
@media (max-width: 768px) {
  .legales__contenido {
    padding: 0 1rem;
    gap: 2rem;
  }

  .legales__contenido h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .legales__contenido h1::after {
    width: 120px;
    margin-top: 1.5rem;
  }

  .legales__contenido h2 {
    font-size: 1.6rem;
  }

  .legales__contenido h2::after {
    width: 120px;
    margin-top: 1rem;
  }

  .legales__contenido p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .legales__contenido li {
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
  }
}

.legales__contenido a {
  color: #cd212a;              
  text-decoration: none;         
  font-weight: 500;               
  transition: color 0.3s ease;
}

.legales__contenido a:hover {
  color: #000;                    
  text-decoration: underline;     
}

