:root {
  --bg: #080010;
  --bg2: #16002a;
  --purple: #6c20ff;
  --purple2: #2a0050;
  --orange: #ff8a00;
  --orange2: #ffb000;
  --green: #20d96b;
  --white: #fff;
  --muted: #d8cae8;
  --card: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: radial-gradient(
    circle at 18% 20%,
    #3c006d 0,
    #090011 42%,
    #06000c 100%
  );
  color: var(--white);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(var(--max), calc(100% - 36px));
  margin: auto;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 0, 18, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 22px;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-weight: 800;
}
.nav-links a {
  opacity: 0.9;
  transition: 0.2s;
}
.nav-links a:hover {
  color: var(--orange);
  opacity: 1;
}
.nav-links a[aria-current="page"] {
  color: var(--orange);
  opacity: 1;
  position: relative;
}
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.nav-open .nav-links a[aria-current="page"]::after {
  left: -14px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #16000f;
  box-shadow: 0 16px 40px rgba(255, 138, 0, 0.25);
}
.btn-primary:hover,
.btn:hover {
  transform: translateY(-3px);
}
.btn-dark {
  background: rgba(255, 255, 255, 0.09);
}
.btn-green {
  background: var(--green);
  color: #04120a;
}
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero:before,
.section:before,
.page-hero:before {
  content: "";
  position: absolute;
  inset: auto -15% -35% -15%;
  height: 430px;
  background: radial-gradient(circle, #7330ff66 0, transparent 58%);
  pointer-events: none;
}
.hero-grid,
.page-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: #ffb13b;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 1000;
  margin-bottom: 18px;
}
.h1 {
  font-size: clamp(56px, 7vw, 106px);
  line-height: 0.94;
  margin: 0 0 26px;
  font-weight: 1000;
  letter-spacing: -0.055em;
}
.h1 .grad,
.grad {
  background: linear-gradient(90deg, #fff, #e6d2ff, #ffb15a);
  -webkit-background-clip: text;
  color: transparent;
}
.lead {
  font-size: 22px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 760px;
}
.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #fff;
  font-weight: 900;
}
.stars {
  color: #ffb000;
  letter-spacing: 2px;
}
.visual-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 138, 0, 0.12),
    rgba(34, 217, 107, 0.06)
  );
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.visual-card img {
  width: 100%;
  border-radius: 24px;
  display: block;
}
.whatsapp-demo {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.wa-head {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.42);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 900;
}
.wa-head img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.online {
  display: block;
  color: #87ffad;
  font-size: 13px;
}
.bubble {
  max-width: 88%;
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 800;
}
.client {
  justify-self: end;
  background: #f2ecff;
  color: #2d2236;
}
.bridge {
  justify-self: start;
  background: linear-gradient(135deg, #ff9000, #ffc018);
  color: #1c0b00;
}
.status {
  justify-self: start;
  background: rgba(32, 217, 107, 0.25);
  border: 1px solid rgba(32, 217, 107, 0.5);
}
.section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.section-title {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}
.section-lead {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 780px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  transition: 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 0, 0.45);
}
.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(108, 32, 255, 0.45),
    rgba(255, 138, 0, 0.22)
  );
  font-size: 26px;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 24px;
  margin: 0 0 12px;
}
.card p,
.card li {
  color: var(--muted);
  line-height: 1.55;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  text-align: center;
}
.stat strong {
  font-size: 34px;
  color: #fff;
}
.stat span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.bank-wrap {
  overflow: hidden;
  margin-top: 30px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}
.bank-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee 33s linear infinite;
}
.bank-wrap:hover .bank-track {
  animation-play-state: paused;
}
.bank-card {
  min-width: 190px;
  height: 92px;
  background: #fff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}
.bank-card img {
  max-width: 150px;
  max-height: 54px;
}
.bank-text {
  font-weight: 1000;
  color: #111;
  text-align: center;
  font-size: 20px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.sim-box {
  display: grid;
  /* grid-template-columns: 0.9fr 1.1fr; */
  gap: 28px;
  background: linear-gradient(
    135deg,
    rgba(108, 32, 255, 0.2),
    rgba(255, 138, 0, 0.12)
  );
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.step {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: 16px;
}
.step b {
  background: linear-gradient(135deg, var(--orange), var(--green));
  color: #12000b;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}
.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form input,
.form select,
.form textarea,
.chat-input input {
  width: 100%;
  padding: 17px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #cdbedf;
}
.form .full {
  grid-column: 1/-1;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review .name {
  font-weight: 1000;
  margin-top: 18px;
}
.review small {
  color: #bca8d0;
}
.chat-page {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.chat-window {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.055)
  );
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.chat-top {
  padding: 18px 22px;
  background: rgba(0, 0, 0, 0.34);
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-top img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.chat-body {
  min-height: 420px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.msg {
  max-width: 86%;
  padding: 14px 16px;
  border-radius: 18px;
  color: #fff;
  line-height: 1.45;
}
.msg.bot {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--line);
  align-self: flex-start;
}
.msg.user {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #170010;
  align-self: flex-end;
  font-weight: 800;
}
.quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 22px 18px;
}
.quick button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 800;
  cursor: pointer;
}
.chat-input {
  display: flex;
  gap: 10px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}
.floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  padding: 17px 24px;
  border-radius: 999px;
  font-weight: 1000;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.footer-official {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.25;
}
.hidden {
  display: none;
}
.mobile-menu {
  display: none;
}
.top-loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--purple),
    var(--green)
  );
  z-index: 100;
  width: 0;
  animation: load 1.4s ease forwards;
}
@keyframes load {
  to {
    width: 100%;
  }
}
.back-top {
  position: fixed;
  left: 22px;
  bottom: 24px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
}
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .mobile-menu {
    display: block;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 28px;
  }
  .nav-inner {
    height: 74px;
  }
  .hero-grid,
  .page-grid,
  .sim-box,
  .chat-page,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-4,
  .grid-3,
  .reviews,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .h1 {
    font-size: 58px;
  }
  .visual-card {
    max-width: 620px;
    margin: auto;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .nav-open .nav-links {
    display: flex;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    flex-direction: column;
    background: #120020;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 20px;
    align-items: flex-start;
  }
}
/* Menu horizontal (acima do breakpoint do hambúrguer): impede quebra de linha nos itens */
@media (min-width: 981px) and (max-width: 1099px) {
  .nav-inner {
    gap: 8px;
    width: calc(100% - 10px);
  }
  .nav-links {
    gap: 6px;
  }
  .nav-links a {
    white-space: nowrap;
    font-size: 12.5px;
  }
  .nav-links .btn {
    padding: 9px 12px;
    font-size: 12.5px;
    white-space: nowrap;
  }
  .brand {
    gap: 6px;
  }
  .brand span {
    font-size: 14px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 1100px) {
  .nav-inner {
    gap: 14px;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-links a {
    white-space: nowrap;
    font-size: 13.5px;
  }
  .nav-links .btn {
    padding: 11px 16px;
    font-size: 13.5px;
    white-space: nowrap;
  }
  .brand span {
    font-size: 19px;
  }
  .brand img {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }
  .hero,
  .page-hero,
  .section {
    padding: 58px 0;
  }
  .h1 {
    font-size: 46px;
  }
  .lead {
    font-size: 18px;
  }
  .grid-4,
  .grid-3,
  .reviews,
  .stats {
    grid-template-columns: 1fr;
  }
  .brand span {
    font-size: 18px;
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
  .actions .btn {
    width: 100%;
  }
  .floating {
    right: 14px;
    bottom: 14px;
  }
  .float-btn {
    padding: 14px 18px;
  }
  .chat-input {
    flex-direction: column;
  }
  .bank-card {
    min-width: 160px;
  }
  .footer-official {
    font-size: 12px;
  }
}
.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;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 14px 22px;
  z-index: 200;
  border-radius: 0 0 14px 0;
  font-weight: 900;
}
.skip-link:focus {
  left: 0;
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: rgba(10, 0, 18, 0.94);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
}
.cookie-banner p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 640px;
}
.cookie-banner p:last-child {
  margin-bottom: 0;
}
.cookie-more {
  background: none;
  border: none;
  padding: 0;
  color: #ffb13b;
  text-decoration: underline;
  font: inherit;
  cursor: pointer;
}
.cookie-detail {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.85;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-actions .btn {
  padding: 12px 20px;
  font-size: 14px;
}
.cookie-prefs-link {
  color: inherit;
  opacity: 0.7;
  text-decoration: underline;
}
.cookie-prefs-link:hover {
  opacity: 1;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-actions {
    justify-content: center;
  }
}
