:root {
  --teal: #58BFC7;
  --teal-dk: #36AEB8;
  --teal-soft: #E6F6F7;
  --teal-soft-2: #F1FAFB;

  --navy: #12336B;
  --navy-dk: #09213F;
  --navy-soft: #244C8B;

  --text: #112F5C;
  --body: #54697F;
  --muted: #8395A6;

  --bg: #F3F8FB;
  --bg-soft: #FAFCFD;
  --line: #D9E7EE;

  --green: #27AE60;
  --green-soft: #EBF8F0;

  --red: #E74C3C;
  --red-soft: #FEF0EF;

  --amber: #F39C12;
  --amber-soft: #FEF9EC;

  --blue: #2980B9;
  --blue-soft: #EBF5FB;

  --purple: #8E44AD;
  --purple-soft: #F4ECF7;

  --white: #FFFFFF;

  --font: 'Exo', system-ui, sans-serif;

  --wrap: 1100px;
  --wrap-doc: 1180px;
  --pill: 999px;

  --shadow: 0 22px 60px rgba(18, 51, 107, .12);
  --shadow-soft: 0 14px 38px rgba(18, 51, 107, .08);
  --shadow-light: 0 4px 16px rgba(18, 51, 107, .04);
}

/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-family: var(--font);
}

button {
  border: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--teal);
  color: #fff;
}

/* =========================================================
   LAYOUT BASE
========================================================= */

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
}

.wrap-doc {
  width: min(var(--wrap-doc), calc(100% - 48px));
  margin: 0 auto;
}

.main-public {
  min-height: calc(100vh - 170px);
}

.flex-grow {
  flex: 1;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.no-scroll {
  overflow: hidden;
}

/* =========================================================
   BOTÕES
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--pill);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  transition: .22s ease;
  white-space: nowrap;
  height: 44px;
  padding: 0 24px;
}

.btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled,
.btn.disabled {
  background: #B8CBD3 !important;
  color: #fff !important;
  border-color: #B8CBD3 !important;
  box-shadow: none !important;
  cursor: not-allowed;
  transform: none !important;
  opacity: .82;
}

.btn-p {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 24px rgba(88, 191, 199, .24);
}

.btn-p:hover {
  background: var(--teal-dk);
}

.btn-o {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--line);
}

.btn-o:hover {
  border-color: var(--teal);
  color: var(--teal-dk);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover {
  background: var(--navy-dk);
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .18);
}

.btn-danger {
  background: var(--red);
  color: #fff;
}

.btn-danger:hover {
  filter: brightness(.96);
}

.btn-sm {
  height: 38px;
  padding: 0 18px;
  font-size: 11px;
}

.btn-lg {
  height: 52px;
  padding: 0 32px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

/* =========================================================
   HEADER
========================================================= */

.main-header {
  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 4px 20px rgba(18, 51, 107, .06);
}

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  width: 148px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(39, 174, 96, .2);
  border-radius: var(--pill);
  padding: 6px 14px;
  white-space: nowrap;
}

.header-badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* =========================================================
   FOOTER
========================================================= */

.main-footer {
  background: var(--navy-dk);
  padding: 34px 0;
}

.footer-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-in img {
  width: 150px;
  filter: brightness(0) invert(1);
  opacity: .78;
}

.footer-nav {
  display: flex;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .46);
  flex-wrap: wrap;
}

.footer-nav a {
  transition: .18s ease;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, .86);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .34);
}

/* =========================================================
   HERO PÚBLICO REUTILIZÁVEL
========================================================= */

.public-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.public-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.public-hero.center .public-hero-inner,
.public-hero-inner.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.public-hero h1 {
  font-size: clamp(31px, 4vw, 54px);
  line-height: .98;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.055em;
  color: #fff;
  margin-bottom: 16px;
  max-width: 720px;
}

.public-hero.center h1,
.public-hero-inner.center h1 {
  margin-left: auto;
  margin-right: auto;
}

.public-hero h1 strong {
  color: var(--teal);
}

.public-hero p {
  font-size: 15.5px;
  line-height: 1.78;
  color: rgba(255, 255, 255, .68);
  max-width: 650px;
}

.public-hero.center p,
.public-hero-inner.center p {
  margin-left: auto;
  margin-right: auto;
}

.public-hero-meta {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.public-hero.center .public-hero-meta,
.public-hero-inner.center .public-hero-meta {
  justify-content: center;
}

.public-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--pill);
  padding: 8px 14px;
}

.public-meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* =========================================================
   CABEÇALHO DE SEÇÃO
========================================================= */

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head.left {
  text-align: left;
}

.ov {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.ov::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--teal);
  margin: 12px auto 0;
  border-radius: var(--pill);
}

.section-head.left .ov::after {
  margin-left: 0;
}

.ttl {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.055em;
  text-transform: uppercase;
  color: var(--text);
}

.ttl strong {
  color: var(--teal-dk);
}

.section-head p:not(.ov) {
  margin: 14px auto 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
}

.section-head.left p:not(.ov) {
  margin-left: 0;
}

/* =========================================================
   DOCUMENTOS E PÁGINAS LEGAIS
========================================================= */

.doc-content {
  padding: 64px 0;
}

.doc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: start;
  max-width: var(--wrap-doc);
}

.doc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 46px 52px;
  box-shadow: var(--shadow);
}

.side-card {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.side-card h3 {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 10px;
  color: var(--text);
}

.side-card p {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--body);
  margin-bottom: 16px;
}

.side-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.side-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--body);
  line-height: 1.5;
}

.side-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.side-list a {
  font-size: 12px;
  font-weight: 800;
  color: var(--body);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  transition: .18s ease;
}

.side-list a:hover,
.side-list a.active {
  border-color: var(--teal);
  color: var(--teal-dk);
  background: var(--teal-soft);
}

.side-actions {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.side-actions .btn {
  width: 100%;
  height: 40px;
}

.doc-sec {
  margin-bottom: 42px;
  scroll-margin-top: 150px;
}

.doc-sec:last-child {
  margin-bottom: 0;
}

.doc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-soft);
  border: 1px solid rgba(88, 191, 199, .3);
  border-radius: var(--pill);
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal-dk);
  margin-bottom: 14px;
}

.doc-tag svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.doc-sec h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}

.doc-sec h3 {
  font-size: 16px;
  font-weight: 850;
  color: var(--text);
  margin: 24px 0 8px;
  letter-spacing: -.02em;
}

.doc-sec p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 14px;
}

.doc-sec p:last-child {
  margin-bottom: 0;
}

.doc-sec ul,
.doc-sec ol {
  padding-left: 20px;
  margin: 14px 0 0;
}

.doc-sec li {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 5px;
}

.doc-sec strong {
  color: var(--text);
  font-weight: 800;
}

.doc-sec a {
  color: var(--teal-dk);
  font-weight: 800;
}

.doc-sec a:hover {
  color: var(--navy);
}

/* =========================================================
   AVISOS
========================================================= */

.notice {
  border-radius: 15px;
  padding: 18px 20px;
  margin: 22px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.notice svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

.notice p {
  font-size: 13.5px;
  line-height: 1.75;
  margin: 0;
}

.notice-green {
  background: var(--green-soft);
  border: 1px solid rgba(39, 174, 96, .25);
  color: var(--green);
}

.notice-green p {
  color: #1E6B3A;
}

.notice-amber {
  background: var(--amber-soft);
  border: 1px solid rgba(243, 156, 18, .32);
  color: var(--amber);
}

.notice-amber p {
  color: #7D5C00;
}

.notice-teal {
  background: var(--teal-soft);
  border: 1px solid rgba(88, 191, 199, .3);
  color: var(--teal-dk);
}

.notice-teal p {
  color: #0A6872;
}

.notice-red {
  background: var(--red-soft);
  border: 1px solid rgba(231, 76, 60, .25);
  color: var(--red);
}

.notice-red p {
  color: #8E2B22;
}

.notice-blue {
  background: var(--blue-soft);
  border: 1px solid rgba(41, 128, 185, .24);
  color: var(--blue);
}

.notice-blue p {
  color: #1A5276;
}

/* =========================================================
   TABELAS
========================================================= */

.doc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin: 18px 0 6px;
  font-size: 13px;
}

.doc-table th {
  width: 30%;
  background: var(--navy-dk);
  color: #fff;
  font-weight: 900;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 13px 16px;
  text-align: left;
  vertical-align: top;
}

.doc-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--body);
  vertical-align: top;
  line-height: 1.65;
  font-weight: 600;
}

.doc-table tr:last-child td,
.doc-table tr:last-child th {
  border-bottom: none;
}

.doc-table thead th {
  width: auto;
}

.doc-table thead th + th {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.doc-table tbody tr:nth-child(even) td {
  background: var(--bg);
}

/* =========================================================
   FORMULÁRIOS
========================================================= */

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px 46px;
  box-shadow: var(--shadow);
}

.form-title {
  margin-bottom: 26px;
}

.form-title h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  letter-spacing: -.045em;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 10px;
}

.form-title p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #7A8FA0;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 14px;
  color: var(--text);
  outline: 0;
  transition: .15s ease;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.65;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(88, 191, 199, .13);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, .1);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #718396 50%),
    linear-gradient(135deg, #718396 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 10px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}

.form-help {
  display: block;
  font-size: 11px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 600;
}

.form-error {
  display: none;
  font-size: 11px;
  color: var(--red);
  font-weight: 800;
  margin-top: 6px;
}

.form-error.show {
  display: block;
}

.char-counter {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  text-align: right;
  transition: .2s ease;
  font-weight: 700;
}

.char-counter.ok {
  color: var(--green);
}

.char-counter.warn {
  color: var(--red);
}

/* =========================================================
   UPLOAD
========================================================= */

.upload-zone {
  border: 2px dashed var(--line);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
  position: relative;
  background: #fff;
}

.upload-zone:hover,
.upload-zone.drag {
  border-color: var(--teal);
  background: var(--teal-soft-2);
}

.upload-zone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-zone svg {
  width: 28px;
  height: 28px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.7;
  margin: 0 auto 10px;
}

.upload-zone p {
  font-size: 13px;
  color: var(--body);
  font-weight: 800;
}

.upload-zone span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

.file-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.file-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.file-remove {
  margin-left: auto;
  cursor: pointer;
  color: var(--muted);
  font-size: 17px;
  line-height: 1;
  transition: .15s ease;
}

.file-remove:hover {
  color: var(--red);
}

/* =========================================================
   BADGES E STATUS
========================================================= */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: var(--pill);
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.badge svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.badge-green {
  background: var(--green-soft);
  color: var(--green);
}

.badge-teal {
  background: var(--teal-soft);
  color: var(--teal-dk);
}

.badge-red {
  background: var(--red-soft);
  color: var(--red);
}

.badge-amber {
  background: var(--amber-soft);
  color: var(--amber);
}

.badge-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.badge-purple {
  background: var(--purple-soft);
  color: var(--purple);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--pill);
  font-size: 12px;
  font-weight: 800;
}

.status-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-analise {
  background: var(--amber-soft);
  color: #7D5C00;
}

.status-analise::before {
  background: var(--amber);
}

.status-investigacao {
  background: var(--blue-soft);
  color: #1A5276;
}

.status-investigacao::before {
  background: var(--blue);
}

.status-aguardando {
  background: var(--purple-soft);
  color: #6C3483;
}

.status-aguardando::before {
  background: var(--purple);
}

.status-concluido {
  background: var(--green-soft);
  color: #1E8449;
}

.status-concluido::before {
  background: var(--green);
}

/* =========================================================
   BOXES
========================================================= */

.info-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-light);
}

.version-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  display: grid;
  gap: 5px;
  margin-top: 18px;
}

.version-box strong {
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
}

.version-box span {
  font-size: 12px;
  font-weight: 700;
  color: var(--body);
}

/* =========================================================
   ANIMAÇÃO DE ENTRADA
========================================================= */

.rv {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1000px) {
  .doc-layout {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
    order: -1;
  }

  .doc-card,
  .form-card {
    padding: 38px 34px;
  }

  .form-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .wrap,
  .wrap-doc {
    width: min(100% - 30px, var(--wrap));
  }

  .main-header {
    padding: 15px 0;
  }

  .header-in {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-logo img {
    width: 138px;
  }

  .header-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .public-hero {
    padding: 44px 0 52px;
  }

  .public-hero h1 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .public-hero-meta {
    gap: 8px;
  }

  .public-meta-item {
    font-size: 11px;
    padding: 7px 12px;
  }

  .doc-content {
    padding: 42px 0;
  }

  .doc-card,
  .form-card {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .doc-sec {
    margin-bottom: 34px;
  }

  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .doc-table,
  .doc-table tbody,
  .doc-table tr,
  .doc-table th,
  .doc-table td {
    display: block;
    width: 100%;
  }

  .doc-table th {
    border-bottom: 0;
  }

  .doc-table td {
    border-bottom: 1px solid var(--line);
  }

  .footer-in {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions .btn,
  .header-badge {
    width: 100%;
    justify-content: center;
  }

  .public-hero h1 {
    letter-spacing: -.045em;
  }

  .notice {
    padding: 16px;
  }
}