:root {
  --als-red: #d61f2a;
  --als-red-hover: #b0151f;
  --als-bg: #ffffff;
  --als-bg-alt: #f8f9fa;
  --als-border: #e5e7eb;
  --als-text-main: #0f0f15;
  --als-text-body: #4b5563;
  --als-text-muted: #9ca3af;
  --als-radius: 6px;
}

.als-privacy-wrapper {
  width: 100%;
  min-height: 100vh;
  padding-bottom: 4rem;
  margin-top: 96px;
  border-bottom: 7px solid var(--als-border);
}

/* Container Centralizado - Foco na Leitura */
.als-container {
  max-width: 800px;
  /* Largura ideal para leitura */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header Simplista */
.als-page-header {
  padding: 4rem 0 2rem 0;
  margin-bottom: 2rem;
  text-align: left;
  border-bottom: 1px solid var(--als-border);
}

.als-page-header h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--als-text-main);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.als-meta-info {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--als-text-muted);
  align-items: center;
}

.als-badge {
  color: var(--als-red);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #fff1f2;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Sumário Simples (Topo) */
.als-toc-simple {
  background-color: var(--als-bg-alt);
  padding: 1.5rem;
  border-radius: var(--als-radius);
  margin-bottom: 3rem;
  border: 1px solid var(--als-border);
}

.als-toc-simple h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--als-text-main);
  margin-bottom: 1rem;
}

.als-toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
}

.als-toc-list a {
  color: var(--als-text-body);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s;
}

.als-toc-list a:hover {
  color: var(--als-red);
  border-bottom-color: var(--als-red);
}

/* Conteúdo */
.als-content h2 {
  font-size: 1.5rem;
  color: var(--als-text-main);
  margin: 3rem 0 1rem 0;
  font-weight: 600;
}

.als-content h3 {
  font-size: 1.15rem;
  color: var(--als-text-main);
  margin: 1.5rem 0 0.75rem 0;
  font-weight: 500;
}

.als-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.als-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.als-content li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

/* Destaques sutis em vez de cards pesados */
.als-highlight-box {
  background-color: var(--als-bg-alt);
  border-left: 4px solid var(--als-red);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--als-radius) var(--als-radius) 0;
}

.als-highlight-box h4 {
  color: var(--als-text-main);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Botões e Links */
.als-link {
  color: var(--als-red);
  text-decoration: none;
  font-weight: 500;
}

.als-link:hover {
  text-decoration: underline;
}

.als-btn {
  background-color: var(--als-red);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--als-radius);
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.als-btn:hover {
  background-color: var(--als-red-hover);
}

/* Contato */
.als-contact-simple {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--als-border);
}

/* Voltar ao topo */
.als-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--als-bg);
  color: var(--als-text-main);
  border: 1px solid var(--als-border);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.2rem;
}

.als-back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.als-back-to-top:hover {
  border-color: var(--als-red);
  color: var(--als-red);
}

@media (max-width: 600px) {
  .als-toc-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .als-page-header {
    padding-top: 2rem;
  }
}

:focus-visible {
  outline: 2px solid var(--als-red);
  outline-offset: 2px;
}
