*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --text: #1a1a2e;
  --muted: #5c5c7a;
  --border: #e8e4ef;
  --bg: #faf9fc;
  --card: #ffffff;
  --accent: #9d4edd;
  --accent-dark: #7b2cbf;
  --accent-light: #f3e8ff;
  --green: #059669;
  --green-bg: #ecfdf5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Topo ── */
.top {
  background: var(--text);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  border-bottom: 3px solid var(--accent);
}

.top-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c4b5fd;
  margin-bottom: 0.5rem;
}

.top h1 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase;
}

.top-sub {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
}

.badge-ativa {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.15rem 0.65rem;
  border-radius: 100px;
}

/* ── Blocos ── */
.block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  margin: 1.5rem 0;
}

.block h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.block-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.razao-box {
  background: var(--accent-light);
  border: 2px solid #d8b4fe;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  margin-bottom: 0.35rem;
}

.razao-value {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ── Lista de dados ── */
.data-list { display: flex; flex-direction: column; }

.data-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0.5rem 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

.data-row:last-child { border-bottom: none; }

.data-row dt {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-dark);
}

.data-row dd {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
}

.data-row dd a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.data-row dd a:hover { text-decoration: underline; }

.cnae {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
  margin-right: 0.25rem;
}

.tag {
  font-size: 0.6875rem;
  font-weight: 700;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Contato ── */
.block-contact { text-align: center; }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-btn {
  display: block;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s;
}

.contact-btn:hover { border-color: var(--accent); }

.contact-wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.contact-wa:hover { background: #1da851; border-color: #1da851; }

/* ── Rodapé ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 2rem 0 1.5rem;
  margin-top: 1rem;
}

.footer-data { margin-bottom: 1.25rem; }

.footer-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.35rem 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
}

.footer-row:last-child { border-bottom: none; }

.footer-row dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c4b5fd;
}

.footer-row dd { color: #fff; font-weight: 500; }

.footer-razao dd {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.copy {
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.6;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 560px) {
  .data-row,
  .footer-row { grid-template-columns: 1fr; gap: 0.2rem; }
}
