/* ==========================================================================
   PÁGINAS LEGAIS (Política de Privacidade / Termos)
   Segue o design system Asset: fundo preto + acento vermelho neon
   ========================================================================== */

.legal-section {
  background-color: #000000;
  color: #ffffff;
  padding: 160px 0 90px;
}

@media (min-width: 992px) {
  .legal-section {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        #000000 40%), url("../images/home/bg-hero.png") top center / cover no-repeat;
  }
}

.legal-header {
  text-align: center;
  margin-bottom: 55px;
}

.legal-header .legal-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.legal-header .legal-meta {
  font-size: 0.9rem;
  color: #999999;
  font-weight: 300;
}

.legal-header .legal-meta strong {
  color: #ffffff;
  font-weight: 600;
}

/* Cartão com os dados da empresa */
.legal-company-box {
  background: linear-gradient(135deg,
      rgba(35, 7, 10, 0.4) 0%,
      rgba(15, 3, 4, 0.5) 100%);
  border: 1px solid rgba(255, 0, 51, 0.15);
  border-radius: 10px;
  padding: 26px 30px;
  margin-bottom: 45px;
  box-shadow: inset 0 0 25px rgba(255, 0, 51, 0.03);
}

.legal-company-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

.legal-company-box li {
  font-size: 0.92rem;
  color: #cccccc;
  font-weight: 300;
}

.legal-company-box li strong {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .legal-company-box ul {
    grid-template-columns: 1fr;
  }
}

/* Corpo do texto */
.legal-content {
  font-size: 1rem;
  color: #d9d9d9;
  font-weight: 300;
  line-height: 1.85;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 45px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 0, 51, 0.2);
}

.legal-content h2 .num {
  color: var(--color-primary);
  margin-right: 8px;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 26px 0 12px;
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content strong {
  color: #ffffff;
  font-weight: 700;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.legal-content ul {
  list-style: none;
  padding-left: 5px;
  margin: 0 0 22px;
}

.legal-content ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.legal-content ul li::before {
  content: "\f00c";
  font-family: var(--fontawesome, "Font Awesome 5 Pro");
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-primary);
  font-size: 0.8rem;
}

/* Destaque (blockquote) */
.legal-content blockquote {
  border-left: 3px solid var(--color-primary);
  background: rgba(255, 0, 51, 0.05);
  padding: 18px 24px;
  margin: 26px 0;
  border-radius: 0 8px 8px 0;
  color: #ffffff;
  font-weight: 300;
}

.legal-content blockquote strong {
  color: var(--color-primary);
}

@media (max-width: 767.98px) {
  .legal-section {
    padding: 80px 0 0 0;
  }
  .legal-header .legal-title {
    font-size: 1.7rem;
  }
  .legal-content h2 {
    font-size: 1.2rem;
  }
}
