/* =========================================================
   VEM PRO ENEM — CSS das páginas jurídicas (privacidade.html e termos.html)
   Independente do resto do site: usa cores fixas, mas segue o mesmo
   "modelo" visual das outras páginas (topo com gradiente, cartão
   branco central, rodapé escuro).
   ========================================================= */

/* ---------- TOPO ---------- */
.planos-topo {
   background: linear-gradient(to bottom, #1a1919 0%, #888282 50%, #ffffff 100%);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.planos-voltar {
  /* Alinhamento e tipografia */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;

  /* Estilização padrão do novo modelo */
  padding: 5px 30px;
  border-radius: 15px;
  cursor: pointer;
  background: #2c3e50; 
  color: white;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.planos-voltar:hover {
  background: #0d38afe0;
  border-color: #1ac963;
}


.planos-topo .logo-site {
  height: auto;
  width: 180px;
  margin: 0 auto;
}

/* ---------- CONTEÚDO ---------- */
.planos-pagina {
  max-width: 820px;
  margin: 0 auto;
  padding: 10px 20px 60px;
  width: 100%;
  margin-top: -9px; 
}

.planos-conteudo.juridico-conteudo {
  background: #ffffff;
  color: #1e1e1e;
  border-radius: 15px;
  padding: 36px 32px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.juridico-titulo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
  text-align: center;
}

.juridico-intro {
  text-align: center;
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0 0 28px;
  padding-bottom: 22px;
  border-bottom: 1px dashed #d1d5db;
}

.juridico-conteudo h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1279e7;
  margin: 26px 0 10px;
}

.juridico-conteudo h2:first-of-type {
  margin-top: 0;
}

.juridico-conteudo p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 12px;
  text-align: justify;
}

.juridico-conteudo ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.juridico-conteudo ul li {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 10px;
  text-align: justify;
}

.juridico-conteudo strong {
  color: #0f172a;
}

/* ---------- RODAPÉ ---------- */
.rodape.rodape-links 
.rodape.rodape-links .frase-final {
  font-size: 0.85rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 14px;
  line-height: 1.5;
  font-style: italic;
}

.rodape-links-juridicos {
  font-size: 0.85rem;
  margin: 0;
}

.rodape-links-juridicos a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  text-decoration: none;
}

.rodape-links-juridicos a:hover {
  text-decoration: underline;
}

.rodape-separador {
  margin: 0 10px;
  color: #64748b;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 768px) {
  .planos-topo {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .planos-voltar {
    order: 1;
  }

  .planos-topo .logo-site {
    order: 2;
    width: 150px;
  }
}

@media (max-width: 560px) {
  .planos-conteudo.juridico-conteudo {
    padding: 28px 20px 32px;
  }

  .juridico-titulo {
    font-size: 1.4rem;
  }
}
