/* ============================================================
   EXTRAS — adições visuais sem alterar o styles.css original.
   Reutiliza os tokens já definidos em :root.
   ============================================================ */

/* ---------- CTA antes do rodapé ---------- */
.footer-cta {
  background: var(--gradient-hero);
  color: hsl(var(--primary-foreground));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 20% 0%, hsl(47 100% 55% / .25), transparent 60%),
              radial-gradient(500px 200px at 80% 100%, hsl(215 90% 55% / .35), transparent 60%);
  pointer-events: none;
}
.footer-cta-inner {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.footer-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.15;
}
.footer-cta p { margin-top: .5rem; opacity: .85; max-width: 50ch; }

/* ---------- SHELL das páginas de staff ---------- */
.staff-body {
  background: var(--gradient-soft);
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  color: hsl(var(--foreground));
}
.staff-top {
  position: sticky; top: 0; z-index: 30;
  background: hsl(var(--card) / .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid hsl(var(--border));
}
.staff-top .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 0; gap: 1rem; flex-wrap: wrap;
}
.staff-top .brand { display: flex; align-items: center; gap: .75rem; color: hsl(var(--primary)); }
.staff-top .brand-badge {
  width: 2.5rem; height: 2.5rem; border-radius: .9rem; background: #fff;
  box-shadow: var(--shadow-glow); display: flex; align-items: center; justify-content: center;
}
.staff-top .brand-badge img { width: 30px; height: 30px; }
.staff-top .brand-name { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1rem; line-height: 1; }
.staff-top .brand-sub { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: hsl(var(--muted-foreground)); }

.staff-nav { display: flex; gap: .25rem; flex-wrap: wrap; }
.staff-nav a {
  padding: .55rem .9rem; border-radius: .65rem; font-size: .875rem; font-weight: 500;
  color: hsl(var(--foreground)); transition: background .2s, color .2s;
}
.staff-nav a:hover { background: hsl(var(--muted)); }
.staff-nav a.active { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

.staff-user { display: flex; align-items: center; gap: .75rem; font-size: .875rem; }
.staff-user .avatar {
  width: 36px; height: 36px; border-radius: 999px; background: var(--gradient-sun);
  color: hsl(var(--primary-deep)); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: 'Plus Jakarta Sans';
}
.staff-user button {
  padding: .45rem .8rem; border-radius: .55rem; background: hsl(var(--muted));
  font-size: .8rem; font-weight: 600; color: hsl(var(--foreground));
}
.staff-user button:hover { background: hsl(var(--border)); }

.staff-main { padding: 2.5rem 0 4rem; }
.staff-title {
  display: flex; align-items: end; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.staff-title h1 {
  font-family: 'Plus Jakarta Sans'; font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem); color: hsl(var(--primary-deep));
  letter-spacing: -.02em;
}
.staff-title p { color: hsl(var(--muted-foreground)); margin-top: .25rem; }

/* ---------- Cards e painéis ---------- */
.panel {
  background: hsl(var(--card)); border-radius: 1.25rem; padding: 1.75rem;
  box-shadow: var(--shadow-card); border: 1px solid hsl(var(--border) / .6);
}
.panel + .panel { margin-top: 1.5rem; }
.panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 1.25rem;
}
.panel-head h2 {
  font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 1.25rem;
  color: hsl(var(--primary-deep));
}
.panel-head .sub { font-size: .85rem; color: hsl(var(--muted-foreground)); margin-top: .15rem; }

.grid-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1rem; margin-bottom: 1.5rem;
}
.kpi {
  background: hsl(var(--card)); border-radius: 1rem; padding: 1.25rem 1.4rem;
  border: 1px solid hsl(var(--border) / .7); box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.kpi .lbl { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: hsl(var(--muted-foreground)); font-weight: 600; }
.kpi .val { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 2rem; color: hsl(var(--primary-deep)); margin-top: .4rem; line-height: 1; }
.kpi .delta { font-size: .8rem; color: hsl(var(--muted-foreground)); margin-top: .35rem; }
.kpi::after {
  content: ""; position: absolute; right: -20px; top: -20px; width: 90px; height: 90px;
  border-radius: 999px; background: var(--gradient-sun); opacity: .15;
}

/* ---------- Tabela ---------- */
.tbl-wrap { overflow-x: auto; border-radius: 1rem; border: 1px solid hsl(var(--border)); }
table.tbl { width: 100%; border-collapse: collapse; background: hsl(var(--card)); min-width: 720px; }
table.tbl th, table.tbl td { padding: .85rem 1rem; text-align: left; font-size: .875rem; }
table.tbl thead th {
  background: hsl(var(--muted)); color: hsl(var(--primary-deep)); font-weight: 700;
  text-transform: uppercase; font-size: .7rem; letter-spacing: .1em;
}
table.tbl tbody tr { border-top: 1px solid hsl(var(--border)); transition: background .15s; }
table.tbl tbody tr:hover { background: hsl(var(--muted) / .5); }
table.tbl .row-actions { display: flex; gap: .35rem; }

.badge {
  display: inline-flex; align-items: center; gap: .35rem; padding: .25rem .6rem;
  border-radius: 999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.badge.ok    { background: hsl(140 60% 92%); color: hsl(140 60% 25%); }
.badge.warn  { background: hsl(47 100% 90%);  color: hsl(35 90% 30%); }
.badge.err   { background: hsl(0 80% 94%);    color: hsl(0 70% 38%); }
.badge.info  { background: hsl(215 60% 92%);  color: hsl(220 85% 28%); }

.role-pill {
  display: inline-block; padding: .2rem .6rem; border-radius: 999px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  background: hsl(var(--muted)); color: hsl(var(--primary-deep));
}
.role-recepcionista { background: hsl(215 60% 92%); color: hsl(220 85% 28%); }
.role-coordenador   { background: hsl(47 100% 88%);  color: hsl(35 90% 30%); }
.role-funcionario   { background: hsl(140 60% 92%);  color: hsl(140 60% 25%); }
.role-admin         { background: hsl(var(--primary-deep)); color: hsl(var(--primary-foreground)); }

/* ---------- Botões utilitários ---------- */
.btn-mini {
  padding: .4rem .75rem; border-radius: .55rem; font-size: .78rem; font-weight: 600;
  background: hsl(var(--muted)); color: hsl(var(--foreground)); transition: background .2s, transform .15s;
}
.btn-mini:hover { background: hsl(var(--border)); }
.btn-mini.primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn-mini.primary:hover { background: hsl(var(--primary-deep)); }
.btn-mini.ok { background: hsl(140 60% 35%); color: #fff; }
.btn-mini.ok:hover { background: hsl(140 60% 28%); }
.btn-mini.danger { background: hsl(0 70% 50%); color: #fff; }
.btn-mini.danger:hover { background: hsl(0 70% 42%); }
.btn-mini.sun { background: var(--gradient-sun); color: hsl(var(--primary-deep)); }
.btn-mini:disabled { opacity: .45; cursor: not-allowed; }
.btn-mini:disabled:hover { background: hsl(var(--muted)); }

/* ---------- Paginação ---------- */
.pager {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  padding: 1rem; margin-top: .5rem; border-top: 1px solid hsl(var(--border));
}
.pager-info { font-size: .82rem; font-weight: 600; color: hsl(var(--muted-foreground)); text-align: center; }

/* ---------- Filtros / barra de ações ---------- */
.toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.toolbar .left, .toolbar .right { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.toolbar input[type="text"], .toolbar select {
  padding: .55rem .8rem; border-radius: .6rem; border: 1px solid hsl(var(--border));
  background: hsl(var(--card)); font-size: .875rem; min-width: 220px;
}

/* ---------- Auth: login / cadastro ---------- */
.auth-shell {
  min-height: 100vh; display: grid; grid-template-columns: 1fr; align-items: stretch;
  background: var(--gradient-hero); color: hsl(var(--primary-foreground));
}
@media (min-width: 900px) { .auth-shell { grid-template-columns: 1.1fr 1fr; } }
.auth-hero {
  display: none; padding: 4rem 3rem; position: relative; overflow: hidden;
  flex-direction: column; justify-content: space-between;
}
@media (min-width: 900px) { .auth-hero { display: flex; } }
.auth-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 350px at 20% 30%, hsl(47 100% 55% / .35), transparent 60%),
              radial-gradient(500px 300px at 80% 80%, hsl(215 90% 55% / .35), transparent 60%);
}
.auth-hero > * { position: relative; z-index: 1; }
.auth-hero .brand { display: flex; align-items: center; gap: .75rem; }
.auth-hero .brand img { width: 44px; height: 44px; }
.auth-hero h1 {
  font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05; margin-top: 2rem;
}
.auth-hero .lead { margin-top: 1rem; opacity: .85; max-width: 38ch; }
.auth-hero ul { list-style: none; margin-top: 2rem; display: grid; gap: .75rem; }
.auth-hero ul li {
  display: flex; align-items: center; gap: .75rem; font-size: .95rem;
  background: hsl(0 0% 100% / .08); padding: .8rem 1rem; border-radius: .8rem;
  border: 1px solid hsl(0 0% 100% / .1); backdrop-filter: blur(8px);
}
.auth-hero ul svg { width: 18px; height: 18px; color: hsl(47 100% 65%); }
.auth-hero .foot { opacity: .65; font-size: .8rem; }

.auth-card-wrap {
  display: flex; align-items: center; justify-content: center; padding: 2.5rem 1.25rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}
.auth-card {
  width: 100%; max-width: 460px; background: hsl(var(--card));
  border-radius: 1.5rem; padding: 2.25rem; box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border) / .6);
}
.auth-card h2 {
  font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1.75rem;
  color: hsl(var(--primary-deep));
}
.auth-card .sub { color: hsl(var(--muted-foreground)); margin-top: .4rem; }
.auth-card form { margin-top: 1.5rem; display: grid; gap: 1rem; }
.auth-card label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: hsl(var(--muted-foreground)); margin-bottom: .35rem; display: block; }
.auth-card input, .auth-card select {
  width: 100%; padding: .85rem 1rem; border-radius: .75rem;
  border: 1px solid hsl(var(--border)); background: hsl(var(--background));
  font-size: .95rem; transition: border-color .2s, box-shadow .2s;
}
.auth-card input:focus, .auth-card select:focus {
  outline: none; border-color: hsl(var(--primary));
  box-shadow: 0 0 0 4px hsl(var(--primary) / .15);
}
.auth-card .submit {
  width: 100%; padding: .95rem; border-radius: .75rem;
  background: var(--gradient-hero); color: #fff;
  font-weight: 700; font-size: .95rem; transition: transform .15s, box-shadow .2s;
}
.auth-card .submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.auth-card .switch { text-align: center; font-size: .875rem; color: hsl(var(--muted-foreground)); margin-top: 1.25rem; }
.auth-card .switch a { color: hsl(var(--primary)); font-weight: 600; }
.auth-card .alert {
  padding: .8rem 1rem; border-radius: .65rem; font-size: .85rem;
  background: hsl(0 80% 96%); color: hsl(0 70% 38%); border: 1px solid hsl(0 80% 88%);
}
.auth-card .alert.ok { background: hsl(140 60% 95%); color: hsl(140 60% 25%); border-color: hsl(140 60% 85%); }
.auth-card .back-home {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .8rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem;
}
.auth-card .back-home:hover { color: hsl(var(--primary)); }

/* ---------- Equipe (cards de pessoas) ---------- */
.team-group { margin-top: 1.5rem; }
.team-group h3 {
  font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 1.1rem;
  color: hsl(var(--primary-deep)); margin-bottom: .75rem;
  display: flex; align-items: center; gap: .5rem;
}
.team-group h3 .count {
  font-size: .7rem; padding: .15rem .55rem; border-radius: 999px;
  background: hsl(var(--muted)); color: hsl(var(--muted-foreground)); font-weight: 700;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1rem; }
.person-card {
  background: hsl(var(--card)); border-radius: 1rem; padding: 1.25rem;
  border: 1px solid hsl(var(--border) / .7); display: flex; gap: .9rem; align-items: center;
  transition: transform .2s, box-shadow .2s;
}
.person-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.person-card .av {
  width: 48px; height: 48px; border-radius: 999px; flex-shrink: 0;
  background: var(--gradient-hero); color: #fff;
  font-family: 'Plus Jakarta Sans'; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.person-card .info { min-width: 0; flex: 1; }
.person-card .nm { font-weight: 700; color: hsl(var(--primary-deep)); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.person-card .em { font-size: .8rem; color: hsl(var(--muted-foreground)); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Configuração de horários ---------- */
.hours-grid { display: grid; gap: .75rem; }
.hour-row {
  display: grid; grid-template-columns: 50px 1fr auto auto; gap: .75rem; align-items: center;
  background: hsl(var(--muted) / .5); padding: .8rem 1rem; border-radius: .75rem;
}
.hour-row.off { opacity: .55; }
.hour-row .dia { font-weight: 700; color: hsl(var(--primary-deep)); font-size: .9rem; }
.hour-row input[type="time"] {
  padding: .45rem .6rem; border: 1px solid hsl(var(--border)); border-radius: .5rem;
  background: hsl(var(--card)); font-size: .85rem;
}
.hour-row .sw {
  position: relative; width: 42px; height: 24px; border-radius: 999px; background: hsl(var(--border));
  transition: background .25s; flex-shrink: 0;
}
.hour-row .sw input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.hour-row .sw::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  border-radius: 999px; background: #fff; transition: transform .25s;
}
.hour-row input:checked ~ .sw, .hour-row .sw:has(input:checked) { background: hsl(var(--primary)); }
.hour-row .sw:has(input:checked)::after { transform: translateX(18px); }

.block-dates { display: grid; gap: .75rem; margin-top: 1rem; }
.block-add {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.block-add input {
  padding: .55rem .75rem; border: 1px solid hsl(var(--border)); border-radius: .55rem;
  background: hsl(var(--card)); font-size: .9rem;
}
.block-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.block-chip {
  display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .75rem;
  border-radius: 999px; background: hsl(0 80% 94%); color: hsl(0 70% 38%); font-size: .85rem; font-weight: 600;
}
.block-chip button { color: hsl(0 70% 38%); font-weight: 800; }

/* ---------- Gráfico ---------- */
.chart-wrap {
  position: relative; height: 320px; padding-top: .5rem;
}

/* ---------- Empty state ---------- */
.empty {
  text-align: center; padding: 3rem 1rem; color: hsl(var(--muted-foreground)); font-size: .9rem;
}
.empty strong { display: block; color: hsl(var(--primary-deep)); font-family: 'Plus Jakarta Sans'; font-size: 1rem; margin-bottom: .35rem; }

/* ---------- Modal genérico ---------- */
.modal-backdrop {
  position: fixed; inset: 0; background: hsl(222 90% 12% / .6); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: hsl(var(--card)); border-radius: 1.25rem; padding: 1.75rem;
  width: 100%; max-width: 480px; box-shadow: 0 30px 70px -20px hsl(222 90% 12% / .5);
}
.modal h3 { font-family: 'Plus Jakarta Sans'; font-weight: 700; color: hsl(var(--primary-deep)); margin-bottom: .5rem; }
.modal .row { display: flex; justify-content: flex-end; gap: .5rem; margin-top: 1.5rem; }

/* ---------- Toast (reusa do script.js, garantindo estilos caso página não tenha) ---------- */
.toast-notification {
  position: fixed; bottom: 20px; right: 20px; padding: 1rem 1.25rem;
  border-radius: .75rem; background: hsl(140 60% 35%); color: #fff;
  box-shadow: 0 20px 40px -10px hsl(140 60% 30% / .4);
  opacity: 0; transform: translateY(20px); transition: opacity .3s, transform .3s;
  z-index: 200; font-weight: 600; font-size: .9rem; max-width: 360px;
}
.toast-notification.show { opacity: 1; transform: translateY(0); }
.toast-notification.error { background: hsl(0 70% 50%); box-shadow: 0 20px 40px -10px hsl(0 70% 45% / .4); }

@media (max-width: 720px) {
  .hour-row { grid-template-columns: 50px 1fr; }
  .hour-row .times { grid-column: 1 / -1; display: flex; gap: .5rem; }
}

/* ---------- Select/input no formulário público (mesmo visual azul dos outros campos) ---------- */
.contact-form select,
.contact-form input[type="text"]#dataVisita {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: .75rem 1rem;
  border: 1px solid hsl(var(--primary-foreground) / .2);
  border-radius: .75rem;
  background: hsl(var(--primary-foreground) / .1);
  color: hsl(var(--primary-foreground));
  transition: all .3s;
  cursor: pointer;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form input[type="text"]#dataVisita {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}
.contact-form input[type="text"]#dataVisita::placeholder { color: hsl(var(--primary-foreground) / .5); }
.contact-form select:focus,
.contact-form input[type="text"]#dataVisita:focus {
  outline: none;
  border-color: hsl(var(--secondary));
  background-color: hsl(var(--primary-foreground) / .15);
}
/* Opções do dropdown — fundo azul-escuro com texto claro, no mesmo tom do site. */
.contact-form select option,
.contact-form select optgroup {
  background: hsl(220 85% 22%);
  color: hsl(0 0% 100%);
}
.contact-form select option:disabled {
  color: hsl(0 0% 100% / .35);
}
.contact-form select optgroup { font-weight: 700; color: hsl(47 100% 75%); }


/* Flatpickr — combinar com o tema azul do site */
.flatpickr-calendar { border-radius: 1rem !important; box-shadow: 0 20px 50px -10px hsl(220 85% 28% / .25) !important; font-family: 'Inter', sans-serif !important; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange { background: hsl(220 85% 28%) !important; border-color: hsl(220 85% 28%) !important; }
.flatpickr-day:hover { background: hsl(47 100% 92%) !important; }
.flatpickr-months .flatpickr-month, .flatpickr-current-month { color: hsl(220 85% 28%) !important; }

/* Botão "Área da Equipe" (rodapé) */
.nav-staff-cta {
  padding: .55rem 1rem;
  border-radius: .65rem;
  font-size: .875rem;
  font-weight: 700;
}

/* Reforço de responsividade para o formulário e área da equipe */
@media (max-width: 480px) {
  .contact-form { padding: 1.25rem; border-radius: 1.25rem; }
  .contact-form select,
  .contact-form input[type="text"]#dataVisita,
  .field input { font-size: 16px; }
  .auth-card { padding: 1.5rem; border-radius: 1.25rem; }
  .staff-top .row { padding: .65rem 0; }
  .staff-nav a { padding: .45rem .7rem; font-size: .82rem; }
  .staff-user .avatar { width: 32px; height: 32px; }
  .panel { padding: 1.1rem; border-radius: 1rem; }
  .footer-cta { padding: 2.5rem 0; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}


/* ===== Página de Política de Privacidade ===== */
.legal-section{padding:140px 0 80px}
.legal-wrap{max-width:760px;margin:0 auto}
.legal-back{display:inline-block;margin-bottom:1.5rem;color:hsl(var(--primary));font-weight:600;text-decoration:none}
.legal-back:hover{text-decoration:underline}
.legal-wrap h1{font-size:clamp(2rem,5vw,2.8rem);line-height:1.1;margin:0 0 .5rem}
.legal-updated{color:hsl(var(--muted-foreground));font-size:.9rem;margin-bottom:2rem}
.legal-wrap h2{font-size:1.25rem;margin:2rem 0 .6rem}
.legal-wrap p{line-height:1.7;color:hsl(var(--foreground));margin-bottom:1rem}
.legal-wrap ul{margin:0 0 1rem;padding-left:1.25rem;display:grid;gap:.4rem}
.legal-wrap li{line-height:1.7;color:hsl(var(--foreground))}
.legal-wrap a{color:hsl(var(--primary));font-weight:600;text-decoration:none;word-break:break-word}
.legal-wrap a:hover{text-decoration:underline}
.legal-wrap .btn{margin-top:2rem}
@media (max-width:480px){.legal-section{padding:110px 0 60px}.legal-wrap h2{font-size:1.1rem}}
