/* Voraz — sitio legal estático (Firebase Hosting) */
:root {
  --bg: #0e1014;
  --surface: #1a1722;
  --text: #e8e6ef;
  --muted: #a8a4b8;
  --mint: #9af5cc;
  --mint-dim: #5cb894;
  --rojo: #e10600;
  --border: rgba(255, 255, 255, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 1.05rem;
}

a {
  color: var(--mint);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #c5ffe8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(14, 16, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand span {
  color: var(--rojo);
}

.nav {
  display: flex;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
}

.nav a {
  font-weight: 600;
  font-size: 0.92rem;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

h1 {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.65rem;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.5rem;
  margin-bottom: 1.25rem;
}

.card h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
  color: var(--mint);
}

.card p {
  margin: 0 0 0.75rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}

.card ul:last-child {
  margin-bottom: 0;
}

.card li {
  margin-bottom: 0.35rem;
}

.card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin: 1rem 0 0.5rem;
  color: var(--text);
}

.note {
  border-left: 3px solid var(--mint-dim);
  padding-left: 1rem;
  margin: 1.25rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid var(--mint-dim);
  background: rgba(154, 245, 204, 0.12);
  color: var(--mint);
  cursor: pointer;
}

.btn:hover {
  background: rgba(154, 245, 204, 0.22);
  text-decoration: none;
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--border);
}
