:root {
  --primary: #2563eb;
  --primary-dark: #16459e;
  --ink: #08111f;
  --text: #132033;
  --body: #526174;
  --muted: #7a8798;
  --line: #dbe5ee;
  --soft: #f5f8fb;
  --white: #ffffff;
  --green: #159957;
  --teal: #0f766e;
  --aqua: #0ea5a4;
  --pink: #ff5a82;
  --shadow: 0 24px 70px rgba(22, 38, 62, 0.14);
  --shadow-soft: 0 12px 34px rgba(22, 38, 62, 0.09);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1160px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(15, 118, 110, 0.16);
}

h1,
h2,
h3,
p,
figure,
ul {
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
}

a {
  color: inherit;
}

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

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

.section {
  padding: 88px 0;
}

.section-white {
  background: var(--white);
}

.section-light {
  background: linear-gradient(180deg, #f7fafb 0%, var(--soft) 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 229, 238, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.28s ease, background 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(22, 38, 62, 0.08);
}

.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.mobile-menu a {
  position: relative;
  text-decoration: none;
  color: #526174;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  opacity: 0;
  transform: scaleX(0.36);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--teal);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(15, 118, 110, 0.24);
  box-shadow: 0 10px 24px rgba(22, 38, 62, 0.08);
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 20px 16px;
  background: rgba(255, 255, 255, 0.96);
}

.mobile-menu.show {
  display: flex;
  animation: menu-drop 0.24s var(--ease-soft) both;
}

.mobile-menu a {
  padding: 11px 12px;
  border-radius: 10px;
}

.mobile-menu a:hover {
  background: #f1f6f8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.22s var(--ease-soft), box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--primary));
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.3);
}

.btn-ghost,
.btn-nav {
  color: var(--primary-dark);
  background: #eff6ff;
  border: 1px solid #dbeafe;
}

.btn-ghost:hover,
.btn-ghost:focus-visible,
.btn-nav:hover,
.btn-nav:focus-visible {
  background: #e0f2fe;
  border-color: #bae6fd;
}

.btn-white {
  color: var(--primary-dark);
  background: var(--white);
}

.btn-outline-white {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-light {
  color: #0b6f69;
  background: #e9f8f4;
  border: 1px solid #bfe8df;
}

.tag-primary {
  color: #0b6f69;
  background: rgba(15, 118, 110, 0.09);
  border: 1px solid rgba(15, 118, 110, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 76px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(219, 229, 238, 0.55) 1px, transparent 1px),
    linear-gradient(180deg, rgba(219, 229, 238, 0.55) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbfc 0%, #ffffff 54%, #eef8f5 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.js .hero {
  animation: hero-grid-drift 18s ease-in-out infinite alternate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background: linear-gradient(90deg, #f8fbfc 0%, rgba(248, 251, 252, 0.6) 34%, rgba(255, 255, 255, 0.2) 100%);
}

.hero::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 {
  margin-top: 20px;
  font-size: 5.9rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-subtitle {
  margin-top: 20px;
  max-width: 610px;
  color: #16243a;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.18;
}

.hero-desc {
  margin-top: 20px;
  max-width: 560px;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 520px);
  margin-top: 26px;
}

.hero-pills span {
  position: relative;
  min-height: 46px;
  padding: 12px 14px 12px 34px;
  border: 1px solid rgba(219, 229, 238, 0.95);
  border-radius: 14px;
  color: #34465c;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(22, 38, 62, 0.06);
  transition: transform 0.24s var(--ease-soft), border-color 0.24s ease, box-shadow 0.24s ease;
}

.hero-pills span:hover {
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 16px 32px rgba(22, 38, 62, 0.09);
  transform: translateY(-2px);
}

.hero-pills span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.1);
  transform: translateY(-50%);
}

.hero-showcase {
  position: relative;
  min-width: 0;
}

.hero-showcase::before {
  content: "Painel operacional";
  position: absolute;
  left: 24px;
  top: -20px;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid rgba(219, 229, 238, 0.9);
  border-radius: 14px;
  color: #334155;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-browser {
  position: relative;
  overflow: hidden;
  border: 1px solid #d7e2ed;
  border-radius: 22px;
  background: #eef3f6;
  box-shadow: 0 28px 80px rgba(22, 38, 62, 0.18);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}

.hero-browser::after {
  content: "";
  position: absolute;
  inset: 42px 0 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-55%);
}

.hero-showcase.visible .hero-browser::after {
  animation: screen-sheen 1.25s ease 0.45s both;
}

.hero-showcase:hover .hero-browser {
  box-shadow: 0 34px 90px rgba(22, 38, 62, 0.22);
  transform: translateY(-4px);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid #d7e2ed;
  background: #ffffff;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.browser-bar p {
  margin-left: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #64748b;
  background: #f1f5f9;
  font-size: 0.78rem;
}

.floating-card {
  position: absolute;
  z-index: 2;
  will-change: transform;
}

.coded-dashboard {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-rows: 62px 1fr;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #eef7f5 100%);
}

.coded-appbar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) minmax(210px, 1.05fr) minmax(132px, 0.72fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 10px 14px;
  color: var(--white);
  background: linear-gradient(135deg, #5e7cff 0%, #3158f2 100%);
  box-shadow: 0 10px 28px rgba(49, 88, 242, 0.2);
}

.coded-app-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.coded-app-brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.coded-app-brand strong,
.coded-user-actions strong {
  display: block;
  font-size: 1rem;
  line-height: 1;
}

.coded-app-brand span,
.coded-user-actions span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 800;
}

.coded-unit-select {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 9px;
  width: min(100%, 300px);
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.coded-unit-select span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  color: #3158f2;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 900;
}

.coded-unit-select strong {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coded-unit-select i {
  width: 0;
  height: 0;
  border-top: 5px solid rgba(255, 255, 255, 0.86);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.coded-user-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.coded-user-actions > div {
  max-width: 88px;
  padding: 8px 11px;
  border-radius: 12px;
  text-align: right;
  background: rgba(255, 255, 255, 0.16);
}

.coded-user-actions button {
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.coded-sidebar {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-right: 1px solid #d7e2ed;
  background: rgba(255, 255, 255, 0.68);
}

.coded-logo-img {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 11px;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(22, 38, 62, 0.1);
}

.coded-sidebar span {
  width: 32px;
  height: 8px;
  border-radius: 999px;
  background: #dbe5ee;
}

.coded-sidebar span.is-active {
  height: 32px;
  background: rgba(15, 118, 110, 0.14);
  box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.22);
}

.coded-main {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  padding: 24px;
}

.coded-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.coded-toolbar > div:first-child {
  display: grid;
  gap: 5px;
}

.coded-eyebrow {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coded-toolbar strong {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.1;
}

.coded-search {
  display: flex;
  align-items: center;
  gap: 9px;
  width: min(42%, 280px);
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #dbe5ee;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(22, 38, 62, 0.05);
}

.coded-search span {
  width: 10px;
  height: 10px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  box-shadow: 5px 5px 0 -3px var(--teal);
}

.coded-search p {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.coded-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(22, 38, 62, 0.08);
}

.coded-tabs span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 42px;
  color: #667085;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.coded-tabs span.is-active {
  color: #3145c4;
  background: rgba(49, 88, 242, 0.09);
}

.coded-tabs span.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #3145c4;
}

.coded-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.coded-filter-row span {
  padding: 8px 11px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  color: #355064;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
}

.coded-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.coded-kpi-grid article {
  position: relative;
  overflow: hidden;
  min-height: 90px;
  padding: 15px;
  border: 1px solid rgba(219, 229, 238, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(22, 38, 62, 0.07);
}

.coded-kpi-grid article::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 14px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--primary));
  transform-origin: left center;
  animation: coded-meter 3.4s ease-in-out infinite;
}

.coded-kpi-grid article:nth-child(2)::after {
  width: 62%;
  background: #ca8a04;
  animation-delay: -1s;
}

.coded-kpi-grid article:nth-child(3)::after {
  width: 44%;
  background: #dc2626;
  animation-delay: -1.8s;
}

.coded-kpi-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.coded-kpi-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
}

.coded-table {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(219, 229, 238, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 32px rgba(22, 38, 62, 0.08);
}

.coded-table-head,
.coded-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.78fr;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 16px;
}

.coded-table-head {
  color: #64748b;
  background: rgba(241, 245, 249, 0.86);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coded-row {
  position: relative;
  color: #34465c;
  border-top: 1px solid rgba(219, 229, 238, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  animation: coded-row-breathe 4.2s ease-in-out infinite;
}

.coded-row:nth-child(3) {
  animation-delay: -0.7s;
}

.coded-row:nth-child(4) {
  animation-delay: -1.4s;
}

.coded-row:nth-child(5) {
  animation-delay: -2.1s;
}

.coded-row.is-priority {
  background: rgba(220, 38, 38, 0.045);
}

.coded-row span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.coded-row i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #ccfbf1);
}

.coded-status {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #eff6ff;
  font-size: 0.66rem;
}

.coded-status--regular,
.coded-row.is-priority .coded-status {
  color: #b91c1c;
  background: #fee2e2;
}

.coded-status--suficiente {
  color: #92400e;
  background: #fef3c7;
}

.coded-status--bom {
  color: #1d4ed8;
  background: #dbeafe;
}

.coded-status--otimo {
  color: #047857;
  background: #d1fae5;
}

.floating-card-one {
  right: -24px;
  top: -22px;
}

.floating-card-two {
  left: -34px;
  top: 44%;
  bottom: auto;
}

.floating-card-three {
  left: -28px;
  top: auto;
  bottom: 28px;
}

.floating-card-four {
  right: -28px;
  top: 48%;
  bottom: auto;
}

.animate-float {
  animation: float-soft 5.6s ease-in-out infinite;
}

.animate-float.float-a {
  animation-name: float-soft-a;
}

.animate-float.float-b {
  animation-name: float-soft-b;
  animation-delay: -1.9s;
}

.animate-float.float-c {
  animation-name: float-soft-c;
  animation-delay: -3.1s;
}

.animate-float.float-d {
  animation-name: float-soft-d;
  animation-delay: -2.5s;
}

.status-card {
  --status-accent: var(--teal);
  --status-soft: rgba(15, 118, 110, 0.12);
  --status-line: rgba(15, 118, 110, 0.2);
  position: relative;
  isolation: isolate;
  width: 128px;
  overflow: hidden;
  padding: 11px;
  border: 1px solid var(--status-line);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 252, 0.88)),
    radial-gradient(circle at 100% 0%, var(--status-soft), transparent 58%);
  box-shadow: 0 14px 34px rgba(22, 38, 62, 0.1);
  backdrop-filter: blur(18px);
  transition: transform 0.28s var(--ease-soft), border-color 0.28s ease, box-shadow 0.28s ease;
}

.floating-card.status-card {
  position: absolute;
}

.status-card::before,
.status-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.status-card::before {
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 88% 14%, var(--status-soft), transparent 46%);
  opacity: 0.85;
}

.status-card::after {
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.68) 46%, transparent 62%);
  opacity: 0;
  transform: translateX(-72%);
}

.status-card:hover {
  border-color: var(--status-accent);
  box-shadow: 0 20px 44px rgba(22, 38, 62, 0.14);
  transform: translateY(-3px);
}

.visible .status-card::after,
.hero-showcase.visible .floating-card::after {
  animation: status-sheen 1.2s ease 0.25s both;
}

.status-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.status-label {
  color: var(--status-accent);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-accent);
  box-shadow: 0 0 0 6px var(--status-soft);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.status-card-body {
  display: grid;
  gap: 2px;
  margin-top: 9px;
}

.status-card-body strong {
  color: var(--ink);
  font-size: 1.62rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.status-card-body span {
  color: var(--body);
  font-size: 0.68rem;
  font-weight: 800;
}

.status-meter {
  height: 6px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(219, 229, 238, 0.82);
}

.status-meter span {
  display: block;
  width: var(--status-value);
  height: 100%;
  border-radius: inherit;
  background: var(--status-accent);
  box-shadow: 0 0 18px var(--status-soft);
  transform-origin: left center;
}

.js .status-meter span {
  transform: scaleX(0);
}

.js .visible .status-meter span,
.js .hero-showcase.visible .floating-card .status-meter span {
  animation: status-fill 0.9s var(--ease-out) 0.18s both;
}

.status-card--mini {
  width: 96px;
  padding: 8px 9px;
  border-radius: 13px;
  box-shadow: 0 10px 26px rgba(22, 38, 62, 0.12);
}

.status-card--mini .status-card-body {
  margin-top: 7px;
}

.status-card--mini .status-card-body strong {
  font-size: 1.12rem;
}

.status-card--mini .status-card-body span {
  font-size: 0.54rem;
}

.status-card--mini .status-label {
  font-size: 0.5rem;
}

.status-card--mini .status-dot {
  width: 7px;
  height: 7px;
}

.status-card--mini .status-meter {
  height: 5px;
  margin-top: 7px;
}

.status-card--regular {
  --status-accent: #dc2626;
  --status-soft: rgba(220, 38, 38, 0.13);
  --status-line: rgba(220, 38, 38, 0.24);
}

.status-card--suficiente {
  --status-accent: #ca8a04;
  --status-soft: rgba(202, 138, 4, 0.14);
  --status-line: rgba(202, 138, 4, 0.24);
}

.status-card--bom {
  --status-accent: #2563eb;
  --status-soft: rgba(37, 99, 235, 0.12);
  --status-line: rgba(37, 99, 235, 0.2);
}

.status-card--otimo {
  --status-accent: #159957;
  --status-soft: rgba(21, 153, 87, 0.14);
  --status-line: rgba(21, 153, 87, 0.24);
}

.section-heading {
  max-width: 720px;
}

.section-heading.center {
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  margin-top: 16px;
  color: var(--body);
  font-size: 1rem;
  line-height: 1.75;
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 44px;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s var(--ease-soft), border-color 0.28s ease, box-shadow 0.28s ease;
}

.proof-card:hover {
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 18px 42px rgba(22, 38, 62, 0.11);
  transform: translateY(-3px);
}

.proof-card > span {
  color: var(--body);
  font-weight: 700;
  line-height: 1.55;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.analytics-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-soft), border-color 0.3s ease, box-shadow 0.3s ease;
}

.analytics-card:hover {
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 18px 46px rgba(22, 38, 62, 0.12);
  transform: translateY(-4px);
}

.analytics-card-large {
  grid-row: span 2;
}

.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analytics-card h3 {
  max-width: 420px;
  font-size: 1.28rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.analytics-card img {
  width: 100%;
  margin-top: 22px;
  border-radius: 18px;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out);
}

.analytics-card:hover img {
  transform: translateY(-2px) scale(1.015);
}

.module-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.62fr);
  align-items: center;
  gap: 56px;
}

.module-copy h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.module-copy p {
  margin-top: 16px;
  max-width: 660px;
  color: var(--body);
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--body);
  font-weight: 700;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(20, 165, 90, 0.12);
  transition: transform 0.2s ease;
}

.check-list li:hover::before {
  transform: scale(1.16);
}

.module-screen {
  justify-self: center;
  width: min(100%, 290px);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.34s var(--ease-soft), box-shadow 0.34s ease;
}

.module-screen:hover {
  box-shadow: 0 30px 76px rgba(22, 38, 62, 0.17);
  transform: translateY(-4px) rotate(-0.4deg);
}

.module-screen img {
  width: 100%;
  border-radius: 16px;
}

.hero-carousel-shell {
  max-width: 980px;
  margin: 0 auto;
}

.carousel-stage {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #edf3fb;
  box-shadow: var(--shadow);
  outline: none;
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease-soft);
}

.carousel-stage:focus-visible,
.carousel-stage:hover {
  box-shadow: 0 30px 86px rgba(22, 38, 62, 0.17);
}

.hero-slide {
  position: relative;
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(24px) scale(1.018);
  filter: saturate(0.96);
  transition: opacity 0.55s ease, transform 0.7s var(--ease-out), filter 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  filter: saturate(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  background: #edf3fb;
}

.hero-slide figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: rgba(7, 16, 29, 0.76);
  color: var(--white);
  backdrop-filter: blur(12px);
  transform: translateY(10px);
  transition: transform 0.45s var(--ease-out), opacity 0.45s ease;
}

.hero-slide.is-active figcaption {
  transform: none;
}

.hero-slide figcaption strong {
  font-size: 0.95rem;
}

.hero-slide figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 16, 29, 0.56);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-soft);
}

.hero-carousel-arrow:hover,
.hero-carousel-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(7, 16, 29, 0.74);
  transform: translateY(-50%) scale(1.06);
}

.hero-carousel-prev {
  left: 18px;
}

.hero-carousel-next {
  right: 18px;
}

.hero-carousel-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-carousel-dot {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--body);
  background: var(--white);
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s var(--ease-soft), color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-carousel-dot:hover,
.hero-carousel-dot:focus-visible {
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: 0 10px 24px rgba(22, 38, 62, 0.08);
  transform: translateY(-2px);
}

.hero-carousel-dot.is-active {
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary);
}

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

.step-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s var(--ease-soft), border-color 0.28s ease, box-shadow 0.28s ease;
}

.step-card:hover {
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 18px 42px rgba(22, 38, 62, 0.11);
  transform: translateY(-4px);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--primary-dark);
  background: rgba(66, 101, 245, 0.12);
  font-weight: 900;
}

.step-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--body);
  line-height: 1.65;
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 52px 56px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    linear-gradient(135deg, #0f766e 0%, #16459e 100%);
  box-shadow: var(--shadow);
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.14) 48%, transparent 62%);
  opacity: 0;
  transform: translateX(-60%);
}

.cta-card.visible::after {
  animation: cta-sheen 1.3s ease 0.35s both;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  margin-top: 14px;
  max-width: 720px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.cta-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cta-contact-list a {
  min-width: 220px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: transform 0.22s var(--ease-soft), border-color 0.22s ease, background 0.22s ease;
}

.cta-contact-list a:hover,
.cta-contact-list a:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.17);
  transform: translateY(-2px);
}

.cta-contact-list span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-contact-list strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.25;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.site-footer {
  padding: 36px 0;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.8fr;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-brand span {
  white-space: normal;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 38px rgba(18, 140, 78, 0.28);
  text-decoration: none;
  transition: transform 0.22s var(--ease-soft), box-shadow 0.22s ease, background 0.22s ease;
  animation: whatsapp-pulse 3.2s ease-in-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1fbd5a;
  box-shadow: 0 22px 46px rgba(18, 140, 78, 0.36);
  transform: translateY(-3px) scale(1.04);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  --reveal-x: 0;
  --reveal-y: 18px;
  --reveal-scale: 1;
  --reveal-delay: 0s;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition: opacity 0.72s ease, transform 0.72s var(--ease-out);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

.js .reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js .reveal-left {
  --reveal-x: -24px;
  --reveal-y: 0;
}

.js .reveal-right {
  --reveal-x: 24px;
  --reveal-y: 0;
}

.js .reveal-up {
  --reveal-y: 22px;
}

.js .reveal-scale {
  --reveal-y: 14px;
  --reveal-scale: 0.975;
}

.delay-1 {
  --reveal-delay: 0.1s;
}

.delay-2 {
  --reveal-delay: 0.2s;
}

.js .reveal-group > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.56s ease, transform 0.56s var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0s) + var(--stagger-delay, 0ms));
}

.js .reveal-group.visible > * {
  opacity: 1;
  transform: none;
}

.js .stagger-children > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s var(--ease-out), border-color 0.24s ease, box-shadow 0.24s ease;
  transition-delay: calc(0.22s + var(--stagger-delay, 0ms));
}

.js .reveal-group.visible .stagger-children > * {
  opacity: 1;
  transform: none;
}

@keyframes hero-grid-drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 18px 0, 0 18px, 0 0;
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes float-soft-a {
  0%,
  100% {
    transform: translate3d(8px, -8px, 0);
  }

  50% {
    transform: translate3d(-6px, 8px, 0);
  }
}

@keyframes float-soft-b {
  0%,
  100% {
    transform: translate3d(-10px, 0, 0);
  }

  50% {
    transform: translate3d(8px, -2px, 0);
  }
}

@keyframes float-soft-c {
  0%,
  100% {
    transform: translate3d(-8px, -8px, 0);
  }

  50% {
    transform: translate3d(7px, 7px, 0);
  }
}

@keyframes float-soft-d {
  0%,
  100% {
    transform: translate3d(10px, 0, 0);
  }

  50% {
    transform: translate3d(-8px, -2px, 0);
  }
}

@keyframes coded-meter {
  0%,
  100% {
    transform: scaleX(0.62);
  }

  50% {
    transform: scaleX(1);
  }
}

@keyframes coded-row-breathe {
  0%,
  100% {
    background-color: rgba(255, 255, 255, 0);
  }

  50% {
    background-color: rgba(15, 118, 110, 0.045);
  }
}

@keyframes status-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px var(--status-soft);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(255, 255, 255, 0);
    transform: scale(1.12);
  }
}

@keyframes status-sheen {
  0% {
    opacity: 0;
    transform: translateX(-72%);
  }

  38% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(72%);
  }
}

@keyframes screen-sheen {
  0% {
    opacity: 0;
    transform: translateX(-55%);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(58%);
  }
}

@keyframes cta-sheen {
  0% {
    opacity: 0;
    transform: translateX(-60%);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(64%);
  }
}

@keyframes menu-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 18px 38px rgba(18, 140, 78, 0.28), 0 0 0 0 rgba(37, 211, 102, 0.28);
  }

  50% {
    box-shadow: 0 18px 38px rgba(18, 140, 78, 0.28), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

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

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

  .js .reveal,
  .js .reveal-group > *,
  .js .stagger-children > * {
    opacity: 1;
    transform: none;
  }

  .js .status-meter span {
    transform: scaleX(1);
  }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-actions .btn-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-layout,
  .platform-grid,
  .module-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-cta,
  .hero-pills {
    justify-content: center;
  }

  .hero-showcase {
    width: min(100%, 820px);
    margin: 0 auto;
  }

  .floating-card-one {
    right: -18px;
    top: -18px;
  }

  .floating-card-two {
    left: -22px;
    top: 44%;
  }

  .floating-card-three {
    left: -16px;
    top: auto;
    bottom: 28px;
  }

  .floating-card-four {
    right: -20px;
    top: 48%;
  }

  .platform-grid {
    gap: 30px;
  }

  .platform-grid .section-heading,
  .module-copy {
    text-align: center;
    margin: 0 auto;
  }

  .module-copy .tag {
    margin: 0 auto;
  }

  .check-list {
    text-align: left;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .analytics-card-large {
    grid-row: auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .section {
    padding: 64px 0;
  }

  .nav-wrap {
    height: 66px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding: 54px 0 64px;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero-subtitle {
    font-size: 1.18rem;
  }

  .hero-desc {
    font-size: 0.98rem;
  }

  .hero-cta,
  .cta-actions {
    width: 100%;
  }

  .hero-cta .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-pills {
    grid-template-columns: 1fr;
  }

  .hero-showcase::before {
    left: 14px;
    top: -16px;
    font-size: 0.68rem;
  }

  .hero-browser {
    border-radius: 18px;
  }

  .coded-dashboard {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto 1fr;
    min-height: 430px;
  }

  .coded-appbar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .coded-app-brand,
  .coded-user-actions {
    display: none;
  }

  .coded-unit-select {
    justify-self: stretch;
    width: 100%;
  }

  .coded-sidebar {
    gap: 14px;
  }

  .coded-main {
    padding: 18px 14px;
  }

  .coded-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .coded-search {
    width: 100%;
  }

  .coded-kpi-grid {
    grid-template-columns: 1fr;
  }

  .coded-kpi-grid article {
    min-height: 74px;
  }

  .coded-table-head,
  .coded-row {
    grid-template-columns: 1fr 0.78fr;
  }

  .coded-table-head span:nth-child(2),
  .coded-row > span:nth-child(2) {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .proof-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .proof-card .status-card {
    margin: 0 auto;
  }

  .analytics-card {
    min-height: auto;
    padding: 18px;
  }

  .carousel-stage {
    min-height: 380px;
    border-radius: 18px;
  }

  .hero-slide img {
    min-height: 380px;
  }

  .hero-slide figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .hero-carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-carousel-prev {
    left: 10px;
  }

  .hero-carousel-next {
    right: 10px;
  }

  .hero-carousel-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .hero-carousel-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-carousel-dot {
    flex: 0 0 auto;
  }

  .cta-card {
    align-items: flex-start;
    padding: 30px 22px;
  }

  .cta-contact-list {
    width: 100%;
  }

  .cta-contact-list a {
    width: 100%;
    min-width: 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
