@font-face {
  font-family: "Gilroy";
  src: url("./assets/fonts/Gilroy-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("./assets/fonts/Gilroy-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f8fbf8;
  --text: #231f20;
  --muted: #4a4a4a;
  --brand: #304254;
  --white: #ffffff;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Gilroy", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 10px;
  color: #f8fafc;
  background: #020617;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

.whatsapp-float {
  position: fixed;
  right: clamp(10px, 2vw, 24px);
  bottom: clamp(18px, 3vh, 34px);
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  text-decoration: none;
  color: #f8fafc;
  background: rgba(4, 25, 57, 0.88);
  border: 1px solid rgba(125, 211, 252, 0.35);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.whatsapp-float img {
  width: clamp(46px, 4vw, 56px);
  height: clamp(46px, 4vw, 56px);
  border-radius: 999px;
}

.whatsapp-float span {
  font-size: clamp(0.75rem, 1vw, 0.86rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 190px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: rgba(6, 40, 84, 0.95);
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.5);
  animation: whatsappHoverPulse 820ms ease-in-out infinite alternate;
}

.whatsapp-float:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}

@keyframes whatsappHoverPulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.09);
  }
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: #040a18;
  min-height: 90vh;
  height: clamp(700px, 80vh, 1080px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      58% 64% at 72% 8%,
      rgba(79, 209, 255, 0.3) 0%,
      rgba(79, 209, 255, 0.05) 44%,
      rgba(79, 209, 255, 0) 72%
    ),
    linear-gradient(90deg, #020714 0%, #071633 48%, #0e2d62 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: none;
}

.hero .hero-bg {
  display: none;
}

.hero .container {
  z-index: 3;
  padding-top: clamp(124px, 14vh, 176px);
  padding-bottom: clamp(56px, 8vh, 106px);
  justify-content: flex-start;
}

.header2 {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1024px, calc(100% - 24px));
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(10px);
  transition: all 220ms ease-out;
}

.header2.is-scrolled {
  top: 12px;
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.36);
}

.header2__nav {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
}

.header2__brand img {
  width: clamp(140px, 11vw, 184px);
  height: auto;
  border-radius: 0;
}

.header2__links {
  display: none;
  align-items: center;
  gap: 8px;
}

.header2__links a {
  text-decoration: none;
  color: #f8fafc;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
}

.header2__links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header2__actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.header2__btn {
  text-decoration: none;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.header2__btn--outline {
  color: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.42);
  background: rgba(15, 23, 42, 0.45);
}

.header2__btn--solid {
  color: #020617;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: #f8fafc;
}

.header2__menu-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.45);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}

.header2__menu-btn span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #e2e8f0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.header2.is-open .header2__menu-btn span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.header2.is-open .header2__menu-btn span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.header2.is-open {
  background: #020617;
  backdrop-filter: none;
}

.header2__mobile {
  position: absolute;
  top: 56px;
  right: 0;
  left: 0;
  bottom: auto;
  z-index: 49;
  background: #020b1f;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  padding: 14px;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
}

.header2__mobile-links,
.header2__mobile-actions {
  display: grid;
  gap: 8px;
}

.header2__mobile-links {
  margin-bottom: 14px;
}

.header2__mobile-links a {
  text-decoration: none;
  color: #f8fafc;
  font-weight: 700;
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 10px;
  padding: 10px 12px;
}

.header2__mobile .header2__btn--outline {
  background: #0f172a;
}

@media (min-width: 901px) {
  .header2__links,
  .header2__actions {
    display: inline-flex;
  }

  .header2__menu-btn {
    display: none;
  }

  .header2__mobile {
    display: none !important;
  }
}

.hero-blob {
  position: absolute;
  right: 20%;
  top: 50%;
  width: clamp(560px, 62vw, 980px);
  max-width: none;
  height: auto;
  border-radius: 0;
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
}

.hero-phones {
  position: absolute;
  right: clamp(10px, 4.2vw, 72px);
  bottom: clamp(70px, -1.4vw, -2px);
  width: clamp(320px, 40vw, 660px);
  max-width: none;
  height: auto;
  border-radius: 0;
  z-index: 3;
  pointer-events: none;
  animation: phonesFloat 6.4s ease-in-out infinite;
}

@keyframes phonesFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-logo {
  position: absolute;
  top: clamp(20px, 2.2vw, 34px);
  left: clamp(22px, 2.6vw, 42px);
  width: clamp(200px, 17.5vw, 290px);
  height: auto;
  z-index: 6;
  border-radius: 0;
  display: none;
}

.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.floater {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(13, 27, 45, 0.55);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
  animation: floatSoft 6.8s ease-in-out infinite;
}

.floater--wa {
  top: 18%;
  right: 30%;
  background: rgba(9, 145, 75, 0.72);
  animation-delay: 0.2s;
}

.floater--star {
  top: 11%;
  right: 14%;
  background: rgba(197, 145, 2, 0.78);
  animation-delay: 1.2s;
}

.floater--google {
  top: 46%;
  right: 7%;
  background: rgba(35, 76, 147, 0.74);
  animation-delay: 0.8s;
}

.floater--auto {
  top: 67%;
  right: 26%;
  background: rgba(56, 72, 99, 0.72);
  animation-delay: 1.6s;
}

.floater--metric {
  top: 73%;
  right: 10%;
  background: rgba(41, 122, 119, 0.75);
  animation-delay: 0.5s;
}

@keyframes floatSoft {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 66vh;
}

.image-panel > img.hero-bg {
  width: 100%;
  min-height: 66vh;
  object-fit: cover;
  border-radius: 0;
}

.image-panel .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  font-weight: 800;
}

.hero-title .hero-title-static,
.hero-title .hero-typewriter {
  display: block;
}

.hero-typewriter {
  position: relative;
  display: inline-block;
  max-width: 100%;
  min-height: 1.1em;
  padding-right: 0.16em;
  white-space: normal;
}

.hero-typewriter::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.1em;
  width: 2px;
  height: 0.88em;
  background: currentColor;
  opacity: 1;
  animation: twCaretBlink 0.9s steps(1, end) infinite;
}

@keyframes twCaretBlink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.2;
  font-weight: 800;
}

p {
  margin: 0 0 12px;
}

.hero__content {
  max-width: min(680px, 52vw);
  margin-left: clamp(8px, 1.4vw, 20px);
  padding-right: clamp(10px, 1.8vw, 28px);
}

.overlay-copy {
  color: var(--white);
}

.btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--white);
  color: #111;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 12px;
}

.btn--light {
  background: var(--white);
  color: var(--brand);
}

.section {
  padding: 72px 0;
}

.marquee-stack {
  position: relative;
  padding: 14px 0;
  overflow: hidden;
  background: #f1f1f3;
}

.logo-cloud {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black, transparent);
  mask-image: linear-gradient(to right, transparent, black, transparent);
}

.logo-cloud__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(26px, 3vw, 42px);
  color: rgba(17, 24, 39, 0.82);
  font-size: clamp(0.8rem, 1.05vw, 1.08rem);
  font-weight: 800;
  white-space: nowrap;
  animation: logoCloudMove 28s linear infinite;
}

.logo-cloud__track span {
  opacity: 0.9;
}

@keyframes logoCloudMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.coupon-band {
  position: relative;
  padding: 26px 0 34px;
  background: #040a18;
  overflow: hidden;
}

.coupon-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      58% 64% at 72% 8%,
      rgba(79, 209, 255, 0.22) 0%,
      rgba(79, 209, 255, 0.04) 44%,
      transparent 78%
    ),
    linear-gradient(90deg, #020714 0%, #071633 48%, #0e2d62 100%);
}

.coupon-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(120, 195, 255, 0.08) 0,
      rgba(120, 195, 255, 0.08) 1px,
      transparent 1px,
      transparent 46px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(120, 195, 255, 0.05) 0,
      rgba(120, 195, 255, 0.05) 1px,
      transparent 1px,
      transparent 46px
    );
}

.coupon-band .container {
  position: relative;
  z-index: 2;
}

.coupon-band__title {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.7vw, 2rem);
  color: #f6f6f6;
}

.coupon-band__title strong {
  color: #FFF;
  font-weight: 800;
}

.coupon-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 10px;
}

.coupon-form input,
.coupon-form button {
  height: 54px;
  border-radius: 999px;
  border: 1px solid #004F93;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
}

.coupon-form input {
  background: #FFF;
  color: #000;
  padding: 0 20px;
}

.coupon-form input::placeholder {
  color: #8d9198;
}

.coupon-form button {
  min-width: 240px;
  border-color: #0340a8;
  background: linear-gradient(180deg, #004F93 0%, #0089ff 100%);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.coupon-form button:hover {
  filter: brightness(1.08);
}

.shiny-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.shiny-button::before {
  content: "";
  position: absolute;
  inset: -130% auto;
  width: 38%;
  transform: translateX(-180%) rotate(20deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.56) 52%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shiny-sweep 3.2s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.shiny-button::after {
  content: "";
  position: absolute;
  inset: -2px;
  padding: 2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(120, 230, 255, 0.95),
    rgba(56, 189, 248, 0.2),
    rgba(34, 211, 238, 0.95),
    rgba(59, 130, 246, 0.2),
    rgba(120, 230, 255, 0.95)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.7));
  animation: none;
  pointer-events: none;
  z-index: 3;
}

.shiny-button > * {
  position: relative;
  z-index: 2;
}

.shiny-button--coupon {
  border-color: #0340a8;
  background: linear-gradient(180deg, #004F93 0%, #0089ff 100%);
  color: #ffffff;
}

.shiny-button--cta {
  color: #06111f;
  background: linear-gradient(90deg, #67e8f9 0%, #22d3ee 45%, #38bdf8 100%);
}

.shiny-button:hover::before {
  animation-duration: 2.3s;
}

.shiny-button:disabled::before,
.shiny-button:disabled::after {
  display: none;
}

@keyframes shiny-sweep {
  0% {
    transform: translateX(-180%) rotate(20deg);
  }

  100% {
    transform: translateX(380%) rotate(20deg);
  }
}

.form-feedback {
  margin: 10px 2px 0;
  min-height: 20px;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.88);
}

.form-feedback.is-success {
  color: #67e8f9;
}

.form-feedback.is-error {
  color: #fda4af;
}

.features-section {
  position: relative;
  background: #040a18;
  margin-top: -2px;
  padding: 0;
}

.features-surface {
  position: relative;
  background: #e9e9e9;
  border-top-left-radius: clamp(28px, 4vw, 44px);
  border-top-right-radius: clamp(28px, 4vw, 44px);
  padding: clamp(52px, 6vw, 92px) 0 0;
  overflow: hidden;
  box-shadow: 0 -14px 36px rgba(9, 15, 27, 0.35);
}

.features-surface::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, 100%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(128, 106, 255, 0),
    rgba(128, 106, 255, 0.45),
    rgba(128, 106, 255, 0)
  );
}

.features-title {
  margin: 0 0 clamp(28px, 4vw, 44px);
  color: #141414;
  line-height: 1;
}

.features-title span,
.features-title strong {
  display: block;
}

.features-title span {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 4px;
}

.features-title strong {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  font-weight: 800;
}

.features-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

.feature-categories {
  display: grid;
  gap: 10px;
}

.feature-category {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  color: #222;
  text-align: left;
  border-radius: 14px;
  font-family: inherit;
  font-size: clamp(1.08rem, 1.4vw, 1.5rem);
  font-weight: 800;
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.feature-category:hover {
  transform: translateX(2px);
  background: rgba(47, 107, 108, 0.08);
}

.feature-category.is-active {
 border-color: rgba(47, 107, 108, 0.32);
  background: rgba(47, 107, 108, 0.14);
}

.feature-categories-note {
  margin: 10px 0 0;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.45;
  color: #111827;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  background: rgba(47, 107, 108, 0.08);
  border: none;
  border-radius: 10px;
  padding: 8px 10px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-card {
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #f6f6f7;
  border-radius: 14px;
  padding: 16px;
}

.feature-card h3 {
  margin: 0 0 6px;
  color: #1b1b1b;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.feature-card p {
  margin: 0;
  color: #53535a;
  font-size: 0.95rem;
  line-height: 1.35;
}

.feature-card[hidden] {
  display: none;
}

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

.section--alt {
  position: relative;
  margin-left: 0;
  margin-right: 0;
  margin-top: -8px;
  padding: clamp(36px, 4vw, 56px) 0 clamp(62px, 6vw, 96px);
  background: #e9e9e9;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: clamp(28px, 4vw, 44px);
  border-bottom-right-radius: clamp(28px, 4vw, 44px);
  overflow: hidden;
  box-shadow: none;
}

.section--alt::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 18px;
  background: #e9e9e9;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.fluxo-scroll-section {
  --fluxo-progress: 0;
  min-height: 150vh;
}

.lead {
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 22px;
}

.fluxo-panel {
  position: sticky;
  top: clamp(80px, 10vh, 120px);
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(126, 214, 255, 0.38);
  box-shadow:
    0 26px 54px rgba(14, 42, 88, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  background: #8dc6ef;
  transform:
    translateY(calc((1 - var(--fluxo-progress)) * 56px))
    scale(calc(0.9 + var(--fluxo-progress) * 0.1));
  opacity: calc(0.55 + var(--fluxo-progress) * 0.45);
  transition: transform 0.18s linear, opacity 0.18s linear;
}

.fluxo-panel > img {
  width: 100%;
  min-height: clamp(320px, 35vw, 560px);
  object-fit: cover;
  border-radius: 26px;
  filter: saturate(1.05) contrast(1.02);
}

.fluxo-panel::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -18%;
  height: 42%;
  z-index: 0;
  background: radial-gradient(
    70% 100% at 50% 0%,
    rgba(72, 198, 255, 0.42) 0%,
    rgba(72, 198, 255, 0.15) 45%,
    rgba(72, 198, 255, 0) 100%
  );
  filter: blur(18px);
  pointer-events: none;
}

.fluxo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.1) 18%,
    rgba(106, 222, 255, 0.1) 44%,
    rgba(7, 20, 39, 0.2) 100%
  );
  pointer-events: none;
}

.fluxo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3.2vw, 48px) clamp(14px, 2.3vw, 34px)
    clamp(18px, 2.8vw, 38px);
  text-align: center;
}

.fluxo-top h2 {
  margin-bottom: clamp(10px, 1.6vw, 18px);
  font-size: clamp(1.3rem, 3.3vw, 4.2rem);
  color: #06111f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  transform: translateY(calc((1 - var(--fluxo-progress)) * 18px));
  opacity: calc(0.45 + var(--fluxo-progress) * 0.55);
}

.fluxo-top .lead {
  margin: 0 auto;
  max-width: 980px;
  color: #0a1d31;
  line-height: 1.18;
  font-size: clamp(0.76rem, 1.45vw, 1.68rem);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(calc((1 - var(--fluxo-progress)) * 24px));
  opacity: calc(0.35 + var(--fluxo-progress) * 0.65);
}

.fluxo__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  align-items: end;
}

.fluxo__steps li {
  display: flex;
}

.fluxo__steps span {
  display: inline-flex;
  width: 100%;
  min-height: clamp(64px, 6.4vw, 94px);
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 0.95vw, 12px) clamp(8px, 1vw, 14px);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 20px rgba(14, 58, 99, 0.14);
  margin: 0;
  font-weight: 800;
  font-size: clamp(0.66rem, 1vw, 1.02rem);
  line-height: 1.2;
  color: #0a1a2d;
  transform: translateY(calc((1 - var(--fluxo-progress)) * 16px));
  opacity: calc(0.3 + var(--fluxo-progress) * 0.7);
}

.cta {
  background: #050a17;
  color: var(--white);
  padding: clamp(56px, 7vw, 90px) 0;
}

.cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.cta__media {
  position: relative;
  order: 2;
  min-height: 100%;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.cta__image {
  width: 100%;
  max-width: none;
  margin-right: -16%;
  height: auto;
  border-radius: 30px;
  object-fit: contain;
}

.cta__content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  line-height: 1.08;
}

.cta__content {
  order: 1;
}

.cta__content > p {
  margin: 0 0 16px;
  color: rgba(229, 237, 255, 0.84);
  font-size: clamp(0.95rem, 1.1vw, 1.06rem);
}

.cta-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  border: 1px solid rgba(126, 154, 206, 0.28);
  background: rgba(8, 17, 38, 0.84);
  color: #fff;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.96rem;
  padding: 13px 14px;
  outline: none;
}

.cta-form textarea {
  resize: vertical;
  min-height: 106px;
  grid-column: 1 / -1;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(173, 188, 219, 0.8);
}

.cta-form input:focus,
.cta-form textarea:focus {
  border-color: rgba(93, 216, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(93, 216, 255, 0.12);
}

.cta-form__submit {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 12px;
  height: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  color: #06111f;
  background: linear-gradient(90deg, #67e8f9 0%, #22d3ee 45%, #38bdf8 100%);
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.cta-form__submit:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.cta-form__submit:disabled,
.coupon-form button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.image-panel--right {
  min-height: auto;
  background: #ffffff;
  padding: clamp(56px, 6vw, 88px) 0;
}

.image-panel--right .container {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(20px, 3.2vw, 54px);
  padding: 0;
}

.image-panel--right .overlay-copy {
  max-width: none;
}

.imagine-media {
  width: min(100%, 420px);
  justify-self: end;
}

.imagine-video {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: none;
}

.imagine-copy {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  color: #121212;
}

.imagine-kicker {
  margin: 0 0 8px;
  color: #3f3f46;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.imagine-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.8vw, 2.6rem);
  line-height: 1.1;
}

.imagine-lead {
  margin: 0 0 16px;
  color: #444;
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
}

.imagine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.imagine-card {
  position: relative;
  border-radius: 12px;
  padding: 12px 12px 10px;
  border: 1px solid #e7e7e7;
  background: #fafafa;
}

.imagine-card__badge {
  position: absolute;
  top: -26px;
  right: 10px;
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 0;
  pointer-events: none;
}

.imagine-card__badge-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 0;
  pointer-events: none;
}

.imagine-card--wrong .imagine-card__badge {
  width: 42px;
  height: 42px;
  top: -20px;
}

.imagine-card--wrong {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.imagine-card--right .imagine-card__badge {
  right: auto;
  animation: badgePulse 1.8s ease-in-out infinite;
}

.imagine-card__badges {
  position: absolute;
  top: -26px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.imagine-card__badge--ok {
  position: static;
}

.imagine-card__badges .imagine-card__badge-logo {
  position: static;
}

@keyframes badgePulse {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    opacity: 0.68;
    transform: scale(1.06);
    filter: brightness(1.12);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
}

.imagine-card h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  color: #111;
}

.imagine-card ul {
  margin: 0;
  padding-left: 16px;
}

.imagine-card li {
  margin-bottom: 5px;
  color: #333;
  font-size: 0.85rem;
  line-height: 1.3;
}

.imagine-card li:last-child {
  margin-bottom: 0;
}

.imagine-cta-line {
  margin: 14px 0 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: #111;
}

.metrics-section {
  position: relative;
  background: #e9e9e9;
  padding: clamp(52px, 6vw, 84px) 0;
}

.iceberg-section {
  background: #e9e9e9;
  padding: 20px 0 10px;
}

.iceberg-section__container {
  width: min(1100px, 100%);
}

.iceberg-carousel {
  width: 100%;
}

.iceberg-carousel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.iceberg-carousel__track {
  display: flex;
  transform: translateX(0%);
  transition: transform 420ms ease;
}

.iceberg-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  padding: 0;
}

.iceberg-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.62);
  font-size: 1.32rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.iceberg-carousel__btn:hover {
  background: rgba(2, 6, 23, 0.82);
}

.iceberg-carousel__btn--prev {
  left: 12px;
}

.iceberg-carousel__btn--next {
  right: 12px;
}

.iceberg-carousel__dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.iceberg-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: #c7cfda;
  transition: all 180ms ease;
}

.iceberg-carousel__dot.is-active {
  width: 23px;
  background: #004f93;
}

.iceberg-section__image {
  width: 100%;
  height: auto;
  display: block;
}

.metrics-title {
  margin: 0 0 clamp(24px, 3vw, 36px);
  color: #131313;
  font-size: clamp(1.55rem, 2.7vw, 2.4rem);
  line-height: 1.12;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.metric-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  background: #f9fbfc;
  padding: clamp(18px, 2.3vw, 26px);
}

.metric-number {
  margin: 0 0 6px;
  color: #d97706;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(2.1rem, 4.1vw, 5.2rem);
  line-height: 0.95;
}

.metric-card h3 {
  margin: 0 0 8px;
  color: #004F93;
  font-size: clamp(1.25rem, 1.8vw, 1.95rem);
  line-height: 1.08;
}

.metric-card p {
  margin: 0;
  color: #2f3745;
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
}

.hsa {
  --hsa-progress: 0;
  background: #ffffff;
  margin: 0;
  border-bottom-left-radius: clamp(28px, 4vw, 44px);
  border-bottom-right-radius: clamp(28px, 4vw, 44px);
  overflow: hidden;
}

.hsa__main {
  position: relative;
  height: 200vh;
  background: #e9e9e9;
  overflow: clip;
}

.hsa__panel {
  position: sticky;
  top: 0;
  height: 100vh;
}

.hsa__panel--intro {
  z-index: 2;
  background: linear-gradient(to top, #ebebeb, #dadada);
  transform:
    scale(calc(1 - (var(--hsa-progress) * 0.2)))
    rotate(calc(var(--hsa-progress) * -5deg));
}

.hsa__panel--gallery {
  z-index: 3;
  background: linear-gradient(to top, #06060e, #1a1919);
  color: #fff;
  transform:
    scale(calc(0.8 + (var(--hsa-progress) * 0.2)))
    rotate(calc(5deg - (var(--hsa-progress) * 5deg)));
}

.hsa__grid-mask {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, #4f4f4f2e 1px, transparent 1px),
    linear-gradient(to bottom, #4f4f4f2e 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
  pointer-events: none;
}

.hsa__intro-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 0 24px;
  color: #101010;
}

.hsa__intro-content h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5.1vw, 5.4rem);
  line-height: 1.1;
}

.hsa__intro-content p {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: #3d3d3d;
}

.hsa__gallery-content {
  position: relative;
  z-index: 2;
  width: min(1600px, 96vw);
  margin: 0 auto;
  padding-top: clamp(24px, 3vw, 42px);
  display: flex;
  justify-content: center;
}

.hsa__gallery-content h3 {
  margin: 0 0 clamp(20px, 3vw, 34px);
  font-size: clamp(1.7rem, 3.4vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
}

.hsa__flow-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 13, 27, 0.72);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.36);
  width: 100%;
  max-height: calc(100vh - 86px);
  display: flex;
  justify-content: center;
}

.hsa__flow-img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 86px);
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: contain;
}

.mobile-img-zoom {
  --zoom-scale: 1;
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 14px;
  background: rgba(2, 6, 23, 0.96);
}

.mobile-img-zoom[hidden] {
  display: none;
}

.mobile-img-zoom__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.mobile-img-zoom__controls {
  display: inline-flex;
  gap: 8px;
}

.mobile-img-zoom__btn {
  min-width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #0f172a;
  color: #f8fafc;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
}

.mobile-img-zoom__btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.mobile-img-zoom__btn--close {
  padding: 0 14px;
}

.mobile-img-zoom__viewport {
  height: calc(100% - 54px);
  overflow: auto;
  border-radius: 12px;
  background: #020b1f;
  display: grid;
  place-items: center;
  touch-action: pan-x pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

.mobile-img-zoom__viewport img {
  width: calc(min(1200px, 92vw) * var(--zoom-scale));
  max-width: none;
  height: auto;
  display: block;
}

.hsa__flow-overlay-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hsa__flow-topline {
  position: absolute;
  top: 6.2%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  text-align: center;
  font-weight: 800;
  color: #0b0b0c;
  font-size: clamp(0.72rem, 1.45vw, 2rem);
  line-height: 1.2;
  width: min(78%, 920px);
}

.hsa__flow-google {
  position: absolute;
  top: 17.8%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(1rem, 2.1vw, 2.8rem);
  line-height: 1;
  background: linear-gradient(
    90deg,
    #4285f4 0%,
    #4285f4 24%,
    #db4437 24%,
    #db4437 44%,
    #f4b400 44%,
    #f4b400 63%,
    #4285f4 63%,
    #4285f4 78%,
    #0f9d58 78%,
    #0f9d58 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hsa__flow-steps-copy {
  position: absolute;
  inset: 0;
}

.hsa__flow-steps-copy p {
  position: absolute;
  bottom: 4.3%;
  margin: 0;
  width: clamp(120px, 16.5%, 300px);
  transform: translateX(-50%);
  margin: 0;
  text-align: center;
  color: #0b0b0c;
  font-size: clamp(0.62rem, 1.15vw, 1.52rem);
  line-height: 1.15;
  font-weight: 800;
}

.hsa__flow-steps-copy p:nth-child(1) {
  left: 12.5%;
  top: 86%;
}

.hsa__flow-steps-copy p:nth-child(2) {
  left: 31.1%;
    top: 83%;
}

.hsa__flow-steps-copy p:nth-child(3) {
  left: 50.2%;
}

.hsa__flow-steps-copy p:nth-child(4) {
  left: 68.9%;
top: 83%;
}

.hsa__flow-steps-copy p:nth-child(5) {
  left: 87.3%;
top: 86%;
}

.hsa__footer {
  position: relative;
  z-index: 4;
  background: #06060e;
}

.hsa__footer h4 {
  margin: 0;
  transform: translateY(80px);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(64px, 16vw, 260px);
  background: linear-gradient(to right, #94a3b8, #1f2937);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hsa__footer div {
  height: 160px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  background: #000;
}

.features-section,
.metrics-section,
.iceberg-section,
.hsa,
.image-panel--right,
.faq-section,
.cta {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

@media (max-width: 900px) {
  .hero,
  .section,
  .cta {
    padding: 44px 0;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    overflow: hidden;
  }

  .image-panel,
  .image-panel > img.hero-bg {
    min-height: auto;
  }

  .image-panel .container {
    position: static;
    display: block;
    padding: 20px 0 0;
  }

  .overlay-copy {
    color: var(--text);
  }

  .hero .overlay-copy {
    color: var(--white);
  }

  .hero .container {
    position: relative;
    inset: auto;
    display: block;
    padding-top: 126px;
    padding-bottom: 290px;
  }

  .header2 {
    width: calc(100% - 16px);
  }

  .hero__content {
    max-width: min(96%, 420px);
    margin-left: 0;
    padding-right: 0;
    position: relative;
    z-index: 5;
  }

  .hero-blob {
    right: -42%;
    top: -8%;
    width: clamp(440px, 136vw, 760px);
    opacity: 0.58;
  }

  .hero-phones {
    left: 0;
    right: 0;
    margin-inline: auto;
    bottom: 8px;
    width: min(72vw, 320px);
    animation-duration: 7.2s;
  }
  .fluxo-overlay {
    padding: 12px 10px 10px;
  }

  .fluxo-top h2 {
    font-size: clamp(0.95rem, 4.2vw, 1.45rem);
    margin-bottom: 6px;
  }

  .fluxo-top .lead {
    font-size: clamp(0.58rem, 2.1vw, 0.8rem);
    line-height: 1.15;
  }

  .fluxo-panel > img {
    min-height: 220px;
  }

  .fluxo-scroll-section {
    min-height: auto;
  }

  .fluxo-panel {
    position: relative;
    top: auto;
    transform: none;
    opacity: 1;
    transition: none;
  }

  .fluxo__steps {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .fluxo__steps span {
    min-height: auto;
    border-radius: 10px;
    font-size: 0.66rem;
    padding: 8px 10px;
  }

  .fluxo-top h2,
  .fluxo-top .lead,
  .fluxo__steps span {
    transform: none;
    opacity: 1;
  }

  .hero-floaters,
  .floater {
    display: none;
  }

  .hero-logo {
    top: 14px;
    left: 14px;
    width: clamp(120px, 32vw, 170px);
  }

  .marquee-stack {
    padding: 10px 0;
  }

  .logo-cloud {
    padding: 4px 0;
  }

  .logo-cloud__track {
    gap: 24px;
    font-size: 0.74rem;
  }

  .coupon-band {
    padding: 20px 0 24px;
  }

  .coupon-form {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .coupon-form button {
    min-width: 0;
    width: 100%;
  }

  .features-section {
    padding: 0;
  }

  .features-surface {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding-top: 40px;
  }

  .section--alt {
    margin-left: 0;
    margin-right: 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    margin-top: -6px;
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .features-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-categories {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .feature-category {
    font-size: 0.98rem;
    padding: 9px 10px;
  }

  .feature-categories-note {
    font-size: 0.95rem;
    white-space: normal;
    width: 100%;
    max-width: 100%;
    text-align: center;
    line-height: 1.35;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .metrics-section {
    padding: 40px 0;
  }

  .iceberg-section {
    padding: 18px 0 8px;
  }

  .iceberg-carousel__viewport {
    border-radius: 12px;
  }

  .iceberg-carousel__btn {
    width: 40px;
    height: 40px;
  }

  .iceberg-carousel__btn--prev {
    left: 8px;
  }

  .iceberg-carousel__btn--next {
    right: 8px;
  }

  .iceberg-section__image {
    border-radius: 0;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hsa__main {
    height: auto;
  }

  .hsa {
    margin: 0;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .hsa__panel {
    position: relative;
    height: auto;
    transform: none !important;
  }

  .hsa__intro-content {
    padding: 74px 18px;
  }

  .hsa__gallery-content {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .hsa__flow-wrap {
    border-radius: 10px;
  }

  .hsa__flow-img[data-zoomable] {
    cursor: zoom-in;
  }

  .hsa__flow-overlay-text {
    display: none;
  }

  .hsa__footer h4 {
    transform: translateY(36px);
  }

  .hsa__footer div {
    height: 92px;
  }

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

  .imagine-copy {
    border-radius: 14px;
    padding: 14px 12px;
  }

  .image-panel--right {
    padding: 36px 0 42px;
  }

  .image-panel--right .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }

  .imagine-media {
    width: min(100%, 340px);
    justify-self: center;
  }

  .cta__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .cta__image {
    width: 100%;
    margin-right: 0;
    border-radius: 16px;
  }

  .whatsapp-float {
    right: 10px;
    bottom: 14px;
    padding-right: 10px;
    gap: 8px;
  }

  .whatsapp-float span {
    max-width: 128px;
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) {
  .whatsapp-float {
    padding: 8px;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
