:root {
  --ink: #071728;
  --ink-2: #0f2740;
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --line: #d8e2ec;
  --text: #172536;
  --muted: #5d6f82;
  --cyan: #00a6d6;
  --cyan-2: #006d9b;
  --magenta: #c5277f;
  --green: #159866;
  --warning: #f7b733;
  --shadow: 0 20px 55px rgba(7, 23, 40, 0.12);
  --radius: 8px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(0, 166, 214, 0.45);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 23, 40, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo,
.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong,
.footer-brand strong {
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1rem;
}

.brand small {
  color: rgba(230, 241, 252, 0.72);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(237, 246, 255, 0.82);
  font-size: 0.91rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
}

.nav-cta {
  padding: 0 16px;
  color: #061624 !important;
  background: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 166, 214, 0.18), transparent 30%),
    linear-gradient(210deg, rgba(197, 39, 127, 0.18), transparent 28%),
    linear-gradient(180deg, #061321 0%, #0b2035 100%);
  padding: 56px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 166, 214, 0.26);
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(0, 166, 214, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: 3.75rem;
  line-height: 0.96;
}

h2 {
  font-size: 2.45rem;
  line-height: 1.08;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.22;
}

p {
  line-height: 1.7;
}

.hero-lead {
  margin: 22px 0 0;
  color: #e6f4ff;
  font-size: 1.18rem;
  font-weight: 700;
}

.hero-text {
  margin: 14px 0 0;
  color: rgba(231, 242, 253, 0.78);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  padding: 0 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #041520;
  background: var(--cyan);
  box-shadow: 0 16px 35px rgba(0, 166, 214, 0.26);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.offer-card {
  max-width: 560px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(0, 166, 214, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 166, 214, 0.16), rgba(197, 39, 127, 0.11)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(0, 166, 214, 0.14);
}

.offer-card span {
  display: block;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.offer-card small {
  color: rgba(232, 244, 255, 0.58);
  font-size: 1rem;
  text-decoration: line-through;
}

.offer-card p {
  margin: 10px 0 0;
  color: rgba(232, 244, 255, 0.78);
  font-size: 0.93rem;
}

.trust-row span,
.chip-grid span,
.benefit-grid span,
.fiscal-grid span,
.report-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-weight: 800;
}

.trust-row span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(241, 248, 255, 0.86);
  padding: 9px 11px;
  font-size: 0.86rem;
}

.system-mockup {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.mockup-topbar,
.mockup-kpis,
.mockup-grid {
  position: relative;
}

.mockup-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(5, 17, 30, 0.72);
}

.mockup-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 18px 0 0 var(--warning), 36px 0 0 var(--green);
}

.mockup-topbar strong {
  justify-self: center;
}

.mockup-topbar em {
  color: #9ff1cc;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.mockup-kpis article,
.mockup-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.mockup-kpis article {
  min-height: 112px;
  padding: 14px;
}

.mockup-kpis small,
.panel-title span {
  display: block;
  color: rgba(232, 245, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mockup-kpis strong,
.panel-title strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.mockup-kpis .warning {
  border-color: rgba(247, 183, 51, 0.45);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
  margin-top: 10px;
}

.mockup-mobile-summary {
  display: none;
}

.mockup-panel {
  min-height: 176px;
  padding: 14px;
}

.panel-wide {
  grid-column: 1 / -1;
}

.prescription-line {
  height: 12px;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.12));
}

.prescription-line.short {
  width: 62%;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--magenta), rgba(255, 255, 255, 0.12));
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 92px;
  margin-top: 20px;
}

.bar-chart i {
  flex: 1;
  height: var(--bar);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--cyan-2));
}

.status-list {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.status-list span {
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(21, 152, 102, 0.16);
  color: #bdf6d8;
  font-weight: 800;
}

.resource-strip {
  padding: 28px 0;
  background: #f7fafc;
  border-bottom: 1px solid var(--line);
}

.chip-grid,
.benefit-grid,
.fiscal-grid,
.report-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-grid span,
.benefit-grid span,
.fiscal-grid span,
.report-grid span {
  padding: 10px 12px;
}

.strip-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.strip-highlight {
  width: fit-content;
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(21, 152, 102, 0.26);
  border-radius: var(--radius);
  background: rgba(21, 152, 102, 0.1);
  color: #0c6847;
  font-weight: 900;
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: var(--surface-2);
}

.section-dark {
  color: #fff;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: 38px;
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(340px, 1.04fr) minmax(0, 0.96fr);
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
}

.section-dark .section-heading p,
.section-dark .eyebrow {
  color: rgba(232, 244, 255, 0.76);
}

.section-heading.center {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.problem-list,
.cards-grid,
.steps,
.form-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

.problem-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-list article,
.cards-grid article,
.steps article,
.notice-box,
.info-panel,
.regulatory-panel,
.lead-form,
.final-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.problem-list article {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
}

.mini-icon,
.card-icon,
.panel-badge,
.steps span,
.floating-whatsapp span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 34px;
  padding: 0 8px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink-2);
  font-size: 0.75rem;
  font-weight: 900;
}

.problem-list p {
  margin: 0;
  color: var(--muted);
}

.section-summary,
.disclaimer,
.notice-inline,
.dark-note {
  margin: 26px 0 0;
  border-left: 4px solid var(--cyan);
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #eff8fc;
  color: var(--text);
  font-weight: 700;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cards-grid article,
.steps article {
  padding: 18px;
}

.section-dark .cards-grid article {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.card-icon {
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--cyan-2), var(--magenta));
}

.cards-grid p,
.steps p,
.notice-box p,
.info-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-dark .cards-grid p {
  color: rgba(232, 244, 255, 0.72);
}

.info-panel,
.notice-box,
.regulatory-panel,
.lead-form {
  padding: 24px;
}

.panel-badge {
  width: fit-content;
  margin-bottom: 16px;
  background: var(--magenta);
}

.check-list,
.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.6;
  color: var(--muted);
}

.check-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.disclaimer {
  border-left-color: var(--magenta);
  background: #fff3fa;
}

.regulatory-panel {
  background: #fff;
}

.notice-inline {
  border-left-color: var(--warning);
  background: #fff8e7;
}

.report-grid span {
  min-width: 104px;
  text-align: center;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.1rem;
}

.fiscal-grid span,
.section-dark .dark-note {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.fiscal-grid .fiscal-highlight {
  border-color: rgba(0, 166, 214, 0.48);
  background: rgba(0, 166, 214, 0.16);
  color: #dff8ff;
}

.dark-note {
  grid-column: 1 / -1;
  border-left-color: var(--cyan);
}

.benefit-grid {
  justify-content: center;
}

.benefit-grid span {
  min-height: 46px;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps span {
  width: 38px;
  min-width: 38px;
  margin-bottom: 14px;
  background: var(--cyan-2);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(0, 166, 214, 0.08), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8fbfe 100%);
}

.lead-form {
  box-shadow: var(--shadow);
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-grid span {
  color: var(--text);
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 12px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 166, 214, 0.14);
}

.form-grid [aria-invalid="true"] {
  border-color: #c62828;
}

.form-status {
  min-height: 26px;
  margin: 12px 0 14px;
  color: #9d1b1b;
  font-weight: 800;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 23, 40, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta {
  color: #fff;
  background: var(--ink);
}

.final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(0, 166, 214, 0.14), rgba(197, 39, 127, 0.1)),
    #0b2035;
}

.final-panel p {
  color: rgba(232, 244, 255, 0.78);
}

.site-footer {
  color: rgba(231, 242, 253, 0.74);
  background: #050f1a;
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
  gap: 26px;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

.footer-grid p,
.footer-grid address {
  margin: 0;
  font-style: normal;
}

.footer-grid a {
  display: block;
  margin-top: 9px;
  color: rgba(231, 242, 253, 0.76);
}

.footer-grid .footer-brand {
  display: inline-flex;
  margin-top: 0;
}

.info-panel .brand strong {
  color: var(--ink);
}

.info-panel .brand small {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 14px 8px 10px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 34px rgba(21, 152, 102, 0.28);
}

.floating-whatsapp span {
  min-width: 34px;
  background: rgba(255, 255, 255, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .cards-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: #071728;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
    border-radius: var(--radius);
  }

  .nav-cta {
    margin-top: 6px;
  }

  h1 {
    max-width: 13ch;
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .problem-list,
  .cards-grid,
  .cards-grid.five,
  .steps,
  .form-grid,
  .final-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .full {
    grid-column: auto;
  }

  .final-panel {
    justify-items: start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mockup-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mockup-grid {
    display: none;
  }

  .mockup-kpis article,
  .mockup-panel {
    min-height: 112px;
    padding: 10px;
  }

  .mockup-kpis small,
  .panel-title span {
    font-size: 0.66rem;
  }

  .mockup-kpis strong,
  .panel-title strong {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .bar-chart {
    height: 64px;
    gap: 6px;
    margin-top: 14px;
  }

  .mockup-mobile-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
  }

  .mockup-mobile-summary span {
    padding: 8px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(232, 244, 255, 0.84);
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 40px 0 34px;
  }

  .hero-grid {
    gap: 18px;
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: 2.32rem;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .hero-text {
    margin-top: 8px;
    font-size: 0.92rem;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .offer-card {
    margin-top: 12px;
    padding: 12px;
  }

  .offer-card strong {
    font-size: 1.55rem;
  }

  .offer-card p {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .hero-actions,
  .hero-actions .button,
  .center-action .button,
  .lead-form .button,
  .final-panel .button {
    width: 100%;
  }

  .system-mockup {
    padding: 12px;
  }

  .mockup-topbar {
    gap: 8px;
    padding: 9px;
    font-size: 0.8rem;
  }

  .mockup-topbar span {
    width: 9px;
    height: 9px;
    box-shadow: 14px 0 0 var(--warning), 28px 0 0 var(--green);
  }

  .mockup-topbar em {
    font-size: 0.68rem;
  }

  .mockup-kpis {
    gap: 6px;
  }

  .mockup-grid {
    display: none;
  }

  .mockup-kpis article,
  .mockup-panel {
    min-height: 76px;
    padding: 8px;
  }

  .mockup-kpis small,
  .panel-title span {
    font-size: 0.58rem;
  }

  .mockup-kpis strong,
  .panel-title strong {
    margin-top: 5px;
    font-size: 0.7rem;
  }

  .prescription-line {
    height: 8px;
    margin-top: 14px;
  }

  .prescription-line.short {
    margin-top: 8px;
  }

  .bar-chart {
    height: 46px;
    margin-top: 10px;
  }

  .status-list {
    gap: 5px;
    margin-top: 10px;
  }

  .status-list span {
    padding: 5px;
    font-size: 0.64rem;
  }

  .trust-row {
    display: none;
  }

  .mockup-mobile-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 6px;
  }

  .mockup-mobile-summary span {
    padding: 7px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(232, 244, 255, 0.84);
    font-size: 0.68rem;
    font-weight: 800;
    text-align: center;
  }

  .floating-whatsapp {
    right: 10px;
    left: 10px;
    justify-content: center;
  }
}
