/* AlsoSys - Página repaginada | style.css v7 responsivo revisado */
:root {
  --primary: #000C1F;
  --primary-soft: #071A38;
  --accent: #12B8C8;
  --accent-2: #35CFA2;
  --bg: #F6F9FC;
  --white: #FFFFFF;
  --text: #000C1F;
  --muted: rgba(0, 12, 31, 0.68);
  --border: rgba(0, 12, 31, 0.10);
  --shadow: 0 18px 45px rgba(0, 12, 31, 0.09);
  --radius: 22px;
  --max: 1320px;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 320px;
  font-family: 'ABeeZee', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(16px, 3vw, 22px);
}

/* BASE */
.section {
  padding: clamp(58px, 7vw, 84px) 0;
}

.section-light {
  background: var(--white);
}

.section-dark {
  background:
    radial-gradient(circle at 15% 20%, rgba(18, 184, 200, 0.18), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(53, 207, 162, 0.13), transparent 30%),
    var(--primary);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  flex: 0 0 auto;
}

.section-title {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.section-title p {
  max-width: 760px;
  font-size: 17px;
  color: var(--muted);
}

.section-dark .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 14px 26px rgba(18, 184, 200, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(18, 184, 200, 0.34);
}

.btn-outline-dark {
  border-color: var(--border);
  color: var(--primary);
  background: var(--white);
}

.btn-outline-dark:hover {
  border-color: rgba(18, 184, 200, 0.45);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 12, 31, 0.20);
}

.nav-container {
  max-width: 100%;
  padding-inline: 20px;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.nav-links a {
  position: relative;
  padding: 26px 0 24px;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}

.social-links a {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.social-links svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

/* HERO */
.hero {
  padding: clamp(54px, 7vw, 72px) 0 clamp(56px, 7vw, 76px);
  background:
    radial-gradient(circle at 10% 18%, rgba(18, 184, 200, 0.12), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(53, 207, 162, 0.10), transparent 28%),
    linear-gradient(180deg, #F6F9FC 0%, #FFFFFF 100%);
  overflow: hidden;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: clamp(28px, 3vw, 46px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  font-weight: 700;
}

.hero-copy p {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
  color: rgba(0, 12, 31, 0.72);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pill {
  padding: 10px 14px;
  border: 1px solid rgba(0, 12, 31, 0.09);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(0, 12, 31, 0.70);
  box-shadow: 0 10px 24px rgba(0, 12, 31, 0.04);
}

/* DASHBOARD */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 700px;
  justify-self: end;
  min-width: 0;
  padding-right: clamp(48px, 6vw, 90px);
  padding-bottom: 36px;
}

.dashboard-mock {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: var(--primary);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 30px 70px rgba(0, 12, 31, 0.22);
}

.dashboard-mock::before {
  content: "";
  position: absolute;
  right: -72px;
  top: -86px;
  width: 248px;
  height: 248px;
  background: rgba(18, 184, 200, 0.24);
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.mock-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--white);
}

.mock-dots {
  display: flex;
  gap: 7px;
  flex: 0 0 auto;
}

.mock-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.mock-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
}

.mock-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mock-card {
  min-width: 0;
  min-height: 132px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(8px);
}

.mock-card.large {
  grid-column: span 2;
  min-height: 188px;
}

.mock-label {
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.mock-value {
  margin-bottom: 13px;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mock-bar {
  height: 10px;
  overflow: hidden;
  margin-bottom: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.mock-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.mock-bars {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 18px;
}

.mock-bars div {
  position: relative;
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.mock-bars div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.flow-card-visual {
  position: relative;
  overflow: hidden;
}

.mock-flow-path {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 8px 12px;
  color: #ffffff;
}

.flow-dot {
  position: relative;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(18, 184, 200, 0.18);
}

.flow-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.95;
}

.flow-dot span {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.flow-dot.active {
  background: #ffffff;
  color: var(--accent);
}

.flow-dot.active span {
  color: #ffffff;
}

.flow-connector {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.95;
}

.floating-card {
  position: absolute;
  right: clamp(-100px, -6vw, -54px);
  bottom: 130px;
  z-index: 5;
  width: 265px;
  padding: 24px 22px;
  background: #ffffff;
  border: 2px solid #000C1F;
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(0, 12, 31, 0.16);
}

.floating-card::before {
  content: "";
  position: absolute;
  top: 38%;
  left: -34px;
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent));
  transform: translateY(-50%);
}

.floating-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 15px;
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* CLIENTES */
.clients-section {
  padding: 54px 0;
  background: var(--white);
  border-top: 1px solid rgba(0, 12, 31, 0.06);
  border-bottom: 1px solid rgba(0, 12, 31, 0.06);
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 28px;
}

.clients-header h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.clients-header p {
  font-size: 15px;
  color: var(--muted);
}

.clients-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: clientsMove 28s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.client-logo {
  width: 180px;
  height: 88px;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 12, 31, 0.08);
  border-radius: 20px;
  background: #F7FAFD;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: 0.25s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 12, 31, 0.08);
}

.client-logo img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

@keyframes clientsMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CARDS GERAIS */
.pain-grid,
.areas-grid,
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pain-card,
.solution-card,
.case-card,
.integration-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 12, 31, 0.05);
}

.pain-card {
  padding: 26px;
  min-height: 180px;
}

.pain-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(18, 184, 200, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-weight: 800;
}

.pain-card h3,
.area-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.pain-card p,
.solution-card p,
.case-card p,
.area-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.solution-card {
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
  min-height: 270px;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.solution-number {
  font-size: 13px;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 18px;
}

.solution-card h3,
.case-card h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

/* INTEGRAÇÕES */
.integration-box {
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.integration-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.integration-node {
  min-height: 130px;
  background: #F6F9FC;
  border: 1px solid rgba(0, 12, 31, 0.08);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.integration-node strong {
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
}

.integration-node span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.flow-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 12, 31, 0.05);
  color: rgba(0, 12, 31, 0.72);
  font-size: 13px;
  border: 1px solid rgba(0, 12, 31, 0.06);
}

/* FLUXO */
.alsosys-flow {
  width: 100%;
  color: var(--primary);
  overflow: hidden;
}

.flow-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 22px;
  position: relative;
  align-items: stretch;
}

.flow-item {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.flow-item::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 46px;
  right: -22px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.22;
  z-index: 0;
}

.flow-item:nth-child(4)::before,
.flow-item:nth-child(8)::before {
  display: none;
}

.flow-number {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px rgba(0, 12, 31, 0.18);
}

.flow-item:nth-child(even) .flow-number {
  background: var(--accent);
  color: var(--primary);
}

.flow-card {
  height: 100%;
  min-height: 190px;
  background: var(--white);
  border: 1px solid rgba(0, 12, 31, 0.10);
  border-radius: 20px;
  padding: 24px 22px 24px 26px;
  position: relative;
  box-shadow: 0 14px 36px rgba(0, 12, 31, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.flow-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 20px 0 0 20px;
  background: var(--primary);
}

.flow-item:nth-child(even) .flow-card::before {
  background: var(--accent);
}

.flow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 184, 200, 0.45);
  box-shadow: 0 20px 46px rgba(0, 12, 31, 0.12);
}

.flow-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--primary);
}

.flow-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(0, 12, 31, 0.74);
}

/* ÁREAS */
.area-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 210px;
}

.area-card p {
  color: rgba(255, 255, 255, 0.72);
}

/* CASES */
.case-card {
  padding: 28px;
  min-height: 310px;
}

.case-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 184, 200, 0.10);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.case-result {
  padding-top: 16px;
  border-top: 1px solid rgba(0, 12, 31, 0.08);
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
}

/* CTA */
.cta-box {
  background:
    radial-gradient(circle at 12% 20%, rgba(18, 184, 200, 0.20), transparent 32%),
    linear-gradient(135deg, var(--primary), #071A38);
  border-radius: 34px;
  padding: 54px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(0, 12, 31, 0.20);
}

.cta-box h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.05em;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  max-width: 720px;
}

/* FOOTER */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 34px 0 36px;
}

.footer-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 54px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  margin-bottom: 56px;
}

.footer .footer-logo {
  width: 223px !important;
  min-width: 223px !important;
  max-width: 223px !important;
  height: auto !important;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  margin-top: 4px;
  margin-left: -65px;
}

.footer-brand-text {
  display: flex;
  align-items: flex-start;
}

.footer-title {
  font-size: clamp(34px, 3.1vw, 44px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #ffffff;
  max-width: 720px;
}

.footer-slogan {
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #ffffff;
  margin-bottom: 70px;
}

.footer-copy {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

/* RESPONSIVO - DESKTOP MENOR / TABLET */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: 100%;
    max-width: 760px;
    justify-self: start;
    padding-right: 0;
    padding-bottom: 0;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 420px;
    margin: 18px 0 0 auto;
  }

  .floating-card::before {
    display: none;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 24px;
  }

  .social-links {
    gap: 12px;
  }

  .solutions-grid,
  .flow-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-item:nth-child(2)::before,
  .flow-item:nth-child(4)::before,
  .flow-item:nth-child(6)::before,
  .flow-item:nth-child(8)::before {
    display: none;
  }

  .integration-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .areas-grid,
  .cases-grid,
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 72px;
    padding: 14px 0;
  }

  .logo-img {
    height: 46px;
  }

  .nav-links {
    gap: 18px;
    font-size: 14px;
  }

  .social-links {
    display: none;
  }
}

/* RESPONSIVO - MOBILE */
@media (max-width: 760px) {
  .container {
    padding-inline: 18px;
  }

  .hero {
    padding: 46px 0 54px;
  }

  .section {
    padding: 62px 0;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 12vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.065em;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
  }

  .dashboard-mock {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    border-radius: 24px;
  }

  .mock-top {
    margin-bottom: 20px;
  }

  .mock-title {
    font-size: 13px;
  }

  .mock-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mock-card {
    padding: 20px;
    border-radius: 20px;
    min-height: auto;
  }

  .mock-card.large {
    grid-column: span 1;
    min-height: auto;
  }

  .mock-bars {
    margin-bottom: 20px;
  }

  .mock-flow-path {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 18px;
    padding: 10px 0 0;
  }

  .flow-dot {
    position: relative !important;
    width: 100% !important;
    max-width: 220px !important;
    min-width: 0 !important;
    height: 42px !important;
    padding: 0 16px !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    color: #ffffff !important;
  }

  .flow-dot::before {
    width: 10px !important;
    height: 10px !important;
    margin: 0 !important;
    flex: 0 0 10px !important;
    background: currentColor !important;
  }

  .flow-dot span {
    position: static !important;
    transform: none !important;
    white-space: nowrap !important;
    font-size: 13px !important;
    line-height: 1 !important;
    color: currentColor !important;
    margin: 0 !important;
  }

  .flow-dot.active {
    color: var(--primary) !important;
  }

  .flow-dot:not(.active) {
    color: #ffffff !important;
  }

  .flow-connector {
    width: 3px !important;
    height: 22px !important;
    margin: 0 auto !important;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin: 18px 0 0;
    border: 2px solid var(--primary);
  }

  .floating-card::before {
    display: none;
  }

  .solutions-grid,
  .flow-wrapper,
  .areas-grid,
  .cases-grid,
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .flow-item::before {
    display: none;
  }

  .flow-card {
    min-height: auto;
  }

  .integration-box,
  .cta-box {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .client-logo {
    width: 155px;
    height: 78px;
  }

  .footer {
    padding: 34px 0 28px;
  }

  .footer-inner {
    padding: 0 28px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 42px;
  }

  .footer .footer-logo {
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;
    margin-left: -34px;
    margin-top: 0;
  }

  .footer-title {
    font-size: clamp(28px, 7vw, 38px);
    max-width: 100%;
  }

  .footer-slogan {
    font-size: clamp(28px, 7vw, 38px);
    margin-bottom: 54px;
  }

  .footer-copy {
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  .nav {
    justify-content: center;
  }

  .nav-right {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 11.5vw, 42px);
  }

  .dashboard-mock {
    padding: 18px;
    border-radius: 22px;
  }

  .mock-card {
    padding: 18px;
  }

  .mock-value {
    font-size: 26px;
  }

  .footer-inner {
    padding: 0 22px;
  }
}

@media (max-width: 380px) {
  .container {
    padding-inline: 14px;
  }

  .hero-copy h1 {
    font-size: 34px;
    letter-spacing: -0.055em;
  }

  .dashboard-mock {
    padding: 14px;
  }

  .mock-card {
    padding: 16px;
  }

  .flow-dot {
    max-width: 190px !important;
  }
}

/* =========================================================
   OVERRIDE FINAL — HERO / DASHBOARD / RESPONSIVO
   Cole este bloco no FINAL do style.css
========================================================= */

/* ---------- DESKTOP PADRÃO ---------- */
.hero .container {
  overflow: visible;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr) !important;
  gap: clamp(24px, 2.6vw, 40px) !important;
  align-items: center !important;
}

.hero-copy {
  min-width: 0 !important;
}

.hero-copy h1 {
  max-width: 680px !important;
  font-size: clamp(38px, 4.7vw, 66px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.07em !important;
}

.hero-copy p {
  max-width: 720px !important;
  font-size: clamp(16px, 1.2vw, 20px) !important;
  line-height: 1.58 !important;
}

.hero-visual {
  width: 100% !important;
  max-width: 620px !important;
  justify-self: end !important;
  padding-right: 70px !important;
  padding-bottom: 34px !important;
  min-width: 0 !important;
}

.dashboard-mock {
  width: 100% !important;
  padding: 24px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
}

.mock-top {
  margin-bottom: 22px !important;
}

.mock-title {
  font-size: 13px !important;
}

.mock-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.mock-card {
  padding: 22px !important;
  border-radius: 20px !important;
}

.mock-card.large {
  grid-column: span 2 !important;
  min-height: auto !important;
}

.mock-value {
  font-size: clamp(24px, 2vw, 29px) !important;
}

.mock-bars {
  margin-bottom: 16px !important;
}

.mock-flow-path {
  display: grid !important;
  grid-template-columns: auto 1fr auto 1fr auto !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 18px !important;
  padding: 10px 6px 4px !important;
}

.flow-dot {
  position: relative !important;
  min-width: 34px !important;
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: #ffffff !important;
}

.flow-dot::before {
  content: "" !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: currentColor !important;
  opacity: 1 !important;
  flex: 0 0 10px !important;
}

.flow-dot span {
  position: absolute !important;
  top: 42px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: block !important;
  white-space: nowrap !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
}

.flow-dot.active {
  background: #ffffff !important;
  color: var(--accent) !important;
}

.flow-dot.active span {
  color: #ffffff !important;
}

.flow-connector {
  height: 3px !important;
  width: 100% !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)) !important;
}

.floating-card {
  position: absolute !important;
  right: -34px !important;
  bottom: 94px !important;
  width: 260px !important;
  max-width: 260px !important;
  padding: 22px 20px !important;
  border: 2px solid #000C1F !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  box-shadow: 0 22px 45px rgba(0, 12, 31, 0.16) !important;
  z-index: 5 !important;
}

.floating-card::before {
  content: "" !important;
  position: absolute !important;
  top: 38% !important;
  left: -30px !important;
  width: 30px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, var(--accent)) !important;
  transform: translateY(-50%) !important;
}

/* ---------- NOTEBOOK / MONITOR MENOR ---------- */
@media (max-width: 1440px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr) !important;
    gap: 28px !important;
  }

  .hero-copy h1 {
    max-width: 620px !important;
    font-size: clamp(34px, 4.3vw, 58px) !important;
  }

  .hero-copy p {
    max-width: 650px !important;
    font-size: 17px !important;
  }

  .hero-visual {
    max-width: 560px !important;
    padding-right: 44px !important;
    padding-bottom: 20px !important;
  }

  .dashboard-mock {
    padding: 20px !important;
  }

  .mock-card {
    padding: 18px !important;
  }

  .floating-card {
    right: -24px !important;
    bottom: 76px !important;
    width: 236px !important;
    max-width: 236px !important;
    padding: 18px 18px !important;
  }

  .floating-card strong {
    font-size: 14px !important;
  }

  .floating-card span {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
}

/* ---------- TABLET / LAYOUT EMPILHADO ---------- */
@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-copy h1 {
    max-width: 760px !important;
  }

  .hero-visual {
    max-width: 720px !important;
    justify-self: start !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 8px !important;
  }

  .floating-card {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 18px 0 0 auto !important;
  }

  .floating-card::before {
    display: none !important;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 760px) {
  .container {
    padding-inline: 18px !important;
  }

  .hero {
    padding: 40px 0 52px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .hero-copy h1 {
    max-width: none !important;
    font-size: clamp(34px, 11vw, 46px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.06em !important;
  }

  .hero-copy p {
    max-width: none !important;
    font-size: 16px !important;
  }

  .hero-buttons {
    align-items: stretch !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
  }

  .hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
  }

  .dashboard-mock {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 16px !important;
    border-radius: 24px !important;
  }

  .mock-top {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
  }

  .mock-title {
    text-align: left !important;
    font-size: 13px !important;
  }

  .mock-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .mock-card {
    padding: 18px !important;
    border-radius: 18px !important;
    min-height: auto !important;
  }

  .mock-card.large {
    grid-column: span 1 !important;
    min-height: auto !important;
  }

  .mock-value {
    font-size: 22px !important;
  }

  .mock-bars {
    gap: 10px !important;
    margin-bottom: 16px !important;
  }

  .mock-flow-path {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin-top: 16px !important;
    padding: 6px 0 0 !important;
  }

  .flow-connector {
    width: 2px !important;
    height: 18px !important;
    margin: 0 auto !important;
  }

  .flow-dot {
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 46px !important;
    height: auto !important;
    padding: 12px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    border-radius: 999px !important;
  }

  .flow-dot::before {
    width: 10px !important;
    height: 10px !important;
    flex: 0 0 10px !important;
    margin: 0 !important;
  }

  .flow-dot span {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: block !important;
    white-space: normal !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    color: inherit !important;
    margin: 0 !important;
  }

  .flow-dot.active {
    background: #ffffff !important;
    color: var(--primary) !important;
  }

  .flow-dot.active span {
    color: var(--primary) !important;
  }

  .flow-dot:not(.active) {
    color: #ffffff !important;
  }

  .flow-dot:not(.active) span {
    color: #ffffff !important;
  }

  .floating-card {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 16px 0 0 !important;
    padding: 18px 16px !important;
    border-radius: 18px !important;
  }

  .floating-card::before {
    display: none !important;
  }
}

/* ---------- CELULARES MENORES ---------- */
@media (max-width: 430px) {
  .container {
    padding-inline: 14px !important;
  }

  .dashboard-mock {
    padding: 14px !important;
  }

  .mock-card {
    padding: 16px !important;
  }

  .mock-label {
    font-size: 12px !important;
  }

  .mock-value {
    font-size: 20px !important;
  }

  .flow-dot {
    min-height: 44px !important;
    padding: 10px 12px !important;
  }

  .flow-dot span {
    font-size: 13px !important;
  }
}

/* =========================================================
   CORREÇÃO DEFINITIVA MOBILE — DASHBOARD
   Cole no FINAL do style.css
========================================================= */

@media (max-width: 760px) {
  .hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .dashboard-mock {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .mock-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .mock-card {
    width: 100% !important;
    min-width: 0 !important;
    min-height: auto !important;
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .mock-card.large {
    grid-column: 1 / -1 !important;
    min-height: auto !important;
  }

  .mock-flow-path {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 18px !important;
    padding: 8px 0 0 !important;
  }

  .mock-flow-path .flow-connector {
    display: none !important;
  }

  .mock-flow-path .flow-dot {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 48px !important;
    padding: 12px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    border-radius: 16px !important;
    position: relative !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
    box-shadow: 0 10px 22px rgba(18, 184, 200, 0.16) !important;
  }

  .mock-flow-path .flow-dot.active {
    background: #ffffff !important;
    color: var(--primary) !important;
  }

  .mock-flow-path .flow-dot::before {
    content: "" !important;
    width: 11px !important;
    height: 11px !important;
    min-width: 11px !important;
    min-height: 11px !important;
    border-radius: 50% !important;
    background: currentColor !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .mock-flow-path .flow-dot span {
    display: none !important;
  }

  .mock-flow-path .flow-dot::after {
    display: block !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: currentColor !important;
    white-space: normal !important;
  }

  .mock-flow-path .flow-dot:nth-child(1)::after {
    content: "Sistemas" !important;
  }

  .mock-flow-path .flow-dot:nth-child(3)::after {
    content: "Dados" !important;
  }

  .mock-flow-path .flow-dot:nth-child(5)::after {
    content: "Indicadores" !important;
  }

  .floating-card {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 16px 0 0 !important;
    padding: 18px 16px !important;
    border: 2px solid var(--primary) !important;
    border-radius: 18px !important;
  }

  .floating-card::before {
    display: none !important;
  }
}