:root {
  --menu-bg: #ffffff;
  --button-bg: #0e69ad;
  --button-bg-hover: #0b5a94;
  --cta-bg: #0f69ac;
  --cta-bg-hover: #0b5a94;
  --text: #171717;
  --muted: #5f6268;
  --border: rgba(23, 23, 23, 0.08);
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: var(--menu-bg);
  border-bottom: 1px solid var(--border);
  opacity: 1;
  transition: opacity 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  opacity: 0.95;
  box-shadow: var(--shadow);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(100%, 1260px);
  min-height: 74px;
  margin: 0 auto;
  padding: 0 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 230px;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 42px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: #020817;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--button-bg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background: var(--button-bg);
  transition: background 160ms ease, transform 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--button-bg-hover);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--button-bg);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.hero-section {
  display: flex;
  align-items: flex-start;
  min-height: auto;
  padding: 134px 32px 0;
  background: #ffffff;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.hero-media::after {
  position: absolute;
  right: 4%;
  bottom: 1%;
  z-index: 0;
  width: 82%;
  height: 26%;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, rgba(15, 105, 172, 0.2), rgba(15, 105, 172, 0.08));
  content: "";
}

.hero-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 720px);
  height: auto;
}

.hero-content {
  max-width: 610px;
}

.hero-content h1 {
  margin: 0 0 16px;
  color: #020817;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-copy {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 28px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-benefit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(15, 105, 172, 0.14);
  border-radius: 8px;
  color: #323031;
  font-size: 14px;
  font-weight: 600;
  background: #f8fbff;
}

.hero-benefit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #0f69ac;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.placeholder-section {
  display: grid;
  min-height: 70vh;
  padding: 120px 32px 64px;
  place-items: center;
  border-bottom: 1px solid var(--border);
}

.placeholder-section h1,
.placeholder-section h2,
.placeholder-section p {
  max-width: 860px;
  margin: 0;
  text-align: center;
}

.placeholder-section h1 {
  margin-top: 14px;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.03;
}

.placeholder-section h2 {
  color: var(--muted);
  font-size: 42px;
}

.eyebrow {
  color: var(--button-bg);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-cta {
  justify-content: space-between;
  width: fit-content;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  gap: 18px;
  background: var(--cta-bg);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: #ffffff;
  background: var(--cta-bg-hover);
}

.hero-cta span {
  font-size: 18px;
  line-height: 1;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.stats-bar {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  background: #0f69ac;
  padding: 34px 32px;
}

.stats-bar::before,
.stats-bar::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.stats-bar::before {
  opacity: 0.07;
  background-image: radial-gradient(circle, #ffffff 1.1px, transparent 1.3px);
  background-size: 12px 12px;
  mask-image:
    radial-gradient(ellipse at 28% 45%, #000 0 30%, transparent 52%),
    radial-gradient(ellipse at 72% 45%, #000 0 32%, transparent 54%);
}

.stats-bar::after {
  opacity: 0.045;
  background-image:
    linear-gradient(90deg, transparent 0 42%, #ffffff 42% 43%, transparent 43% 100%),
    radial-gradient(circle, #ffffff 1.2px, transparent 1.4px);
  background-size: 100% 100%, 9px 9px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #ffffff;
  text-align: left;
}

.stat-item svg {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.stat-item strong {
  display: block;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.solutions-section {
  padding: 80px 32px 96px;
  background: #ffffff;
}

.solutions-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

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

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #0f69ac;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-kicker {
  margin-bottom: 18px;
  color: #020817;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.about-kicker strong {
  color: #0f69ac;
  font-weight: 700;
}

.section-heading h2 {
  margin: 0;
  color: #020817;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading h2 span {
  color: #f26422;
}

.section-heading p {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

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

.solution-card {
  min-height: 224px;
  padding: 28px;
  border: 1px solid rgba(15, 105, 172, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(10, 10, 86, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.solution-card:hover {
  border-color: rgba(15, 105, 172, 0.22);
  box-shadow: 0 18px 36px rgba(10, 10, 86, 0.1);
  transform: translateY(-3px);
}

.solution-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 8px;
  place-items: center;
  color: #ffffff;
  background: #0f69ac;
}

.solution-card:nth-child(even) .solution-icon {
  background: #f26422;
}

.solution-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.solution-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 0 0.35px #ffffff);
}

.solution-card h3 {
  margin: 0 0 10px;
  color: #020817;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.solution-card p {
  margin: 0;
  color: #5f7192;
  font-size: 14.5px;
  line-height: 1.6;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.clients-strip {
  overflow: hidden;
  padding: 28px 0;
  color: #ffffff;
  background: #f26422;
}

.clients-strip-inner {
  width: 100%;
}

.clients-strip p {
  max-width: 900px;
  margin: 0 auto 14px;
  padding: 0 32px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.32;
  text-align: center;
}

.clients-strip p strong {
  font-weight: 700;
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.clients-marquee::before,
.clients-marquee::after {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 120px;
  height: 100%;
  pointer-events: none;
  content: "";
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f26422, rgba(242, 100, 34, 0));
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f26422, rgba(242, 100, 34, 0));
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: clients-marquee 30s linear infinite;
}

.clients-track span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
}

.why-section {
  padding: 68px 32px 72px;
  background: #f7fbff;
}

.why-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  grid-template-rows: auto 1fr;
  align-items: stretch;
  column-gap: clamp(36px, 6vw, 76px);
  row-gap: 20px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.why-content {
  display: contents;
}

.section-heading-left {
  grid-column: 1;
  grid-row: 1;
  max-width: 660px;
  margin: 0;
  text-align: left;
}

.why-list {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  gap: 12px;
}

.why-item {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 105, 172, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 10, 86, 0.05);
}

.why-check {
  display: inline-grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
  background: #0f69ac;
}

.why-item h3 {
  margin: 0 0 4px;
  color: #020817;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.why-item p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

.support-card {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(145deg, #0f69ac, #0b5a94);
  box-shadow: 0 22px 44px rgba(15, 105, 172, 0.22);
}

.support-card::before {
  position: absolute;
  top: -74px;
  right: -64px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.support-card::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.support-profile {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.support-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #0f69ac;
  font-size: 20px;
  font-weight: 800;
  place-items: center;
  background: #ffffff;
}

.support-avatar img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.support-card span {
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.support-card small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.support-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.22;
}

.support-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.55;
}

.support-card .hero-cta {
  position: relative;
  z-index: 1;
  background: #f26422;
}

.support-card .hero-cta:hover,
.support-card .hero-cta:focus-visible {
  background: #dd5518;
}

.automation-section {
  overflow: hidden;
  padding: 58px 32px 64px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f69ac, #0b5a94);
}

.automation-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.automation-visual {
  position: relative;
  min-height: 330px;
}

.automation-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  place-items: center;
  transform: translate(-50%, -50%);
  animation: orbit-pulse 5s ease-in-out infinite;
}

.automation-orbit::before,
.automation-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.automation-orbit::before {
  inset: -42px;
}

.automation-orbit::after {
  inset: 38px;
}

.automation-logo {
  position: relative;
  z-index: 1;
  display: grid;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  place-items: center;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(2, 8, 23, 0.18);
}

.automation-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.automation-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  color: #020817;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(2, 8, 23, 0.14);
  animation: chip-float 4s ease-in-out infinite;
}

.automation-chip:nth-of-type(even) {
  animation-delay: 900ms;
}

.automation-chip:nth-of-type(3n) {
  animation-delay: 1400ms;
}

.automation-chip::before {
  margin-right: 8px;
}

.chip-pdv {
  top: 22px;
  left: 12%;
}

.chip-pdv::before {
  content: "🛒";
}

.chip-stock {
  top: 54px;
  right: 9%;
}

.chip-stock::before {
  content: "📦";
}

.chip-finance {
  top: 150px;
  left: 2%;
}

.chip-finance::before {
  content: "💰";
}

.chip-nfe {
  right: 4%;
  bottom: 118px;
}

.chip-nfe::before {
  content: "📄";
}

.chip-tef {
  bottom: 50px;
  left: 18%;
}

.chip-tef::before {
  content: "💳";
}

.chip-store {
  right: 13%;
  bottom: 34px;
}

.chip-store::before {
  content: "🌐";
}

.chip-integrations {
  top: 0;
  left: 50%;
  --chip-x: -50%;
  transform: translateX(var(--chip-x));
}

.chip-integrations::before {
  content: "🔗";
}

.automation-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #f26422;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.automation-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.automation-content p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.automation-content ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.automation-content li {
  position: relative;
  padding-left: 34px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}

.automation-content li::before {
  position: absolute;
  top: -2px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  content: "✓";
}

.about-section {
  padding: 76px 32px 82px;
  background: #ffffff;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.about-media {
  position: relative;
  display: grid;
  min-height: 360px;
  align-self: center;
  place-items: center;
}

.about-media::before {
  position: absolute;
  inset: 36px 18px 18px;
  z-index: 0;
  border-radius: 8px;
  background: #f7fbff;
  content: "";
}

.about-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 520px);
  height: auto;
}

.about-content {
  max-width: 760px;
}

.about-content h2 {
  margin: 0;
  color: #020817;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

.about-content p {
  margin: 16px 0 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
}

.about-content p strong {
  color: #020817;
  font-weight: 700;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: #020817;
}

.social-links > span {
  font-size: 15px;
  font-weight: 700;
}

.social-links div {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 105, 172, 0.14);
  border-radius: 8px;
  color: #0f69ac;
  place-items: center;
  background: #f7fbff;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #ffffff;
  background: #0f69ac;
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-section {
  padding: 78px 32px 86px;
  background: #f7fbff;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(380px, 1.05fr) minmax(300px, 390px);
  align-items: start;
  gap: clamp(34px, 6vw, 76px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.contact-content h2 {
  margin: 0;
  color: #020817;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.22;
}

.contact-content p {
  margin: 12px 0 0;
  max-width: 560px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #020817;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.contact-link span {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #ffffff;
  place-items: center;
  background: #0f69ac;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
  padding: 28px;
  border: 1px solid rgba(15, 105, 172, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 38px rgba(10, 10, 86, 0.1);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #020817;
  font-size: 14px;
  font-weight: 400;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 105, 172, 0.16);
  border-radius: 8px;
  color: #020817;
  font: inherit;
  font-size: 15px;
  outline: none;
  background: #ffffff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.contact-form input {
  min-height: 44px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0f69ac;
  box-shadow: 0 0 0 3px rgba(15, 105, 172, 0.12);
}

.contact-form .hero-cta {
  justify-self: start;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  background: #f26422;
}

.contact-form .hero-cta:hover,
.contact-form .hero-cta:focus-visible {
  background: #dd5518;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 128px;
}

.info-card,
.hours-card {
  border: 1px solid rgba(15, 105, 172, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(10, 10, 86, 0.08);
}

.info-card {
  padding: 28px;
}

.hours-card {
  padding: 26px 28px;
  border-color: rgba(15, 105, 172, 0.12);
  background: #ffffff;
}

.contact-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-card-title h3 {
  margin: 0;
  color: #020817;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #0f69ac;
  place-items: center;
  background: rgba(15, 105, 172, 0.1);
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-icon-whatsapp {
  background: rgba(15, 105, 172, 0.1);
}

.contact-icon-whatsapp .whatsapp-icon {
  width: 19px;
  height: 19px;
  filter: brightness(0) saturate(100%) invert(34%) sepia(86%) saturate(1209%) hue-rotate(178deg) brightness(87%) contrast(93%);
}

.contact-info-list {
  display: grid;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 5px;
  color: #020817;
  font-size: 15px;
  font-weight: 700;
}

.contact-info-item p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.55;
}

.contact-info-item a {
  color: #0f69ac;
  text-decoration: none;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 105, 172, 0.16);
  color: #0f69ac;
  font-size: 15px;
}

.hours-row strong {
  font-weight: 700;
  white-space: nowrap;
}

.site-footer {
  color: #ffffff;
  background: #0f69ac;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 38px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 46px 32px 40px;
}

.footer-brand img {
  display: block;
  width: 200px;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #ffffff;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: background 160ms ease, transform 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.footer-column h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  padding: 20px 32px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes orbit-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.08);
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateX(var(--chip-x, 0)) translateY(0);
  }

  50% {
    transform: translateX(var(--chip-x, 0)) translateY(-6px);
  }
}

.solutions-grid .reveal-item:nth-child(1) {
  transition-delay: 80ms;
}

.solutions-grid .reveal-item:nth-child(2) {
  transition-delay: 160ms;
}

.solutions-grid .reveal-item:nth-child(3) {
  transition-delay: 240ms;
}

.solutions-grid .reveal-item:nth-child(4) {
  transition-delay: 120ms;
}

.solutions-grid .reveal-item:nth-child(5) {
  transition-delay: 200ms;
}

.solutions-grid .reveal-item:nth-child(6) {
  transition-delay: 280ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .automation-orbit,
  .automation-chip {
    animation: none;
  }
}

@media (max-width: 980px) {
  .navbar {
    min-height: 68px;
    padding: 0 20px;
  }

  .brand {
    flex-basis: auto;
  }

  .brand-logo {
    width: 160px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-content {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    display: none;
    width: 100%;
    padding: 22px 20px 24px;
    background: var(--menu-bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-content.is-open {
    display: block;
  }

  .nav-links,
  .nav-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    margin-bottom: 18px;
  }

  .nav-links a,
  .btn {
    width: 100%;
  }

  .hero-section {
    min-height: auto;
    padding: 128px 22px 28px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-media {
    order: 2;
    min-height: auto;
  }

  .hero-media img {
    width: min(78vw, 420px);
  }

  .hero-media::after {
    right: 12%;
    bottom: 0;
    width: 76%;
    height: 22%;
  }

  .hero-content {
    order: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-benefits {
    justify-content: center;
  }

  .hero-cta {
    margin: 0 auto;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    justify-content: flex-start;
  }

  .solutions-section {
    padding: 80px 22px 82px;
  }

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

  .clients-strip p {
    font-size: 18px;
    white-space: normal;
  }

  .why-section {
    padding: 62px 22px 68px;
  }

  .why-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .section-heading-left {
    grid-column: 1;
    grid-row: auto;
    max-width: 720px;
    text-align: center;
    margin-inline: auto;
  }

  .why-list {
    grid-column: 1;
    grid-row: auto;
  }

  .support-card {
    grid-column: 1;
    grid-row: auto;
    max-width: 560px;
    margin: 0 auto;
  }

  .automation-section {
    padding: 64px 22px 70px;
  }

  .automation-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .automation-visual {
    min-height: 320px;
    order: 2;
  }

  .automation-content {
    order: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .automation-content ul {
    justify-items: center;
  }

  .about-section {
    padding: 66px 22px 72px;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-media {
    order: 1;
    min-height: auto;
  }

  .about-content {
    order: 2;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-section {
    padding: 66px 22px 72px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    margin-top: 0;
  }

  .contact-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-content p {
    margin-inline: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

}

@media (max-width: 520px) {
  .navbar {
    padding-inline: 16px;
  }

  .brand-logo {
    width: 140px;
  }

  .hero-section {
    padding: 128px 16px 24px;
  }

  .hero-media img {
    width: min(86vw, 320px);
  }

  .hero-media::after {
    right: 8%;
    bottom: 0;
    width: 84%;
    height: 20%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-benefits {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-cta {
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 0 20px;
  }

  .stats-bar {
    padding: 28px 18px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .stat-item {
    justify-content: center;
    gap: 10px;
  }

  .stat-item svg {
    width: 34px;
    height: 34px;
  }

  .stat-item strong {
    font-size: 26px;
  }

  .stat-item span {
    font-size: 11px;
  }

  .solutions-section {
    padding: 80px 16px 70px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: center;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 16px;
  }

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

  .solution-card {
    min-height: auto;
    padding: 22px;
  }

  .clients-strip {
    padding: 26px 0;
  }

  .clients-strip p {
    padding: 0 16px;
    font-size: 17px;
  }

  .clients-marquee::before,
  .clients-marquee::after {
    width: 54px;
  }

  .clients-track span {
    min-height: 36px;
    padding: 0 16px;
    font-size: 13px;
  }

  .why-section {
    padding: 54px 16px 60px;
  }

  .section-heading-left {
    text-align: center;
  }

  .why-item {
    padding: 16px;
  }

  .support-card {
    padding: 24px;
  }

  .support-card h3 {
    font-size: 24px;
  }

  .automation-section {
    padding: 54px 16px 60px;
  }

  .automation-content {
    text-align: center;
  }

  .automation-content h2 {
    font-size: 28px;
  }

  .automation-content p {
    font-size: 16px;
  }

  .automation-content ul {
    justify-items: center;
  }

  .automation-visual {
    min-height: 300px;
  }

  .automation-orbit {
    width: 158px;
    height: 158px;
  }

  .automation-logo {
    width: 82px;
    height: 82px;
  }

  .automation-logo img {
    width: 52px;
    height: 52px;
  }

  .automation-chip {
    min-height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }

  .chip-pdv {
    top: 20px;
    left: 0;
  }

  .chip-stock {
    top: 42px;
    right: 0;
  }

  .chip-finance {
    top: 142px;
    left: 0;
  }

  .chip-nfe {
    right: 0;
    bottom: 92px;
  }

  .chip-tef {
    bottom: 34px;
    left: 8%;
  }

  .chip-store {
    right: 4%;
    bottom: 0;
  }

  .chip-integrations {
    top: 0;
    left: 50%;
  }

  .about-section {
    padding: 58px 16px 64px;
  }

  .about-content {
    text-align: left;
  }

  .about-kicker {
    display: block;
    text-align: center;
  }

  .social-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-media img {
    width: min(88vw, 420px);
  }

  .about-content h2 {
    font-size: 28px;
  }

  .contact-section {
    padding: 58px 16px 64px;
  }

  .contact-content {
    text-align: center;
  }

  .contact-content p {
    margin-inline: auto;
  }

  .contact-content h2 {
    font-size: 28px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .info-card,
  .hours-card {
    padding: 22px;
  }

  .hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 14px;
    padding: 36px 16px 30px;
    text-align: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    margin-inline: auto;
    font-size: 14px;
  }

  .footer-brand img {
    width: 170px;
    margin-inline: auto;
  }

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

  .footer-column {
    padding-left: 0;
    border-left: 0;
    gap: 10px;
  }

  .footer-column h3 {
    font-size: 14px;
  }

  .footer-column a {
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    padding: 18px 16px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 12px;
  }

}
