:root {
    --navy-950: #160234;
    --navy-900: #250766;
    --navy-800: #3c14a3;
    --blue-700: #4b1fb8;
    --blue-600: #6235d2;
    --blue-500: #7c5ce7;
    --cyan-400: #b9a5ff;
    --green-500: #20a978;
    --purple-500: #805ce8;
    --orange-500: #f49b45;
    --ink: #25173d;
    --muted: #70657f;
    --line: #e6dff0;
    --surface: #faf7ff;
    --white: #ffffff;
    --shadow: 0 28px 70px rgba(43, 13, 105, 0.14);
    --font: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: var(--font);
    margin: 0;
    min-width: 20rem;
    overflow-x: hidden;
}

body,
button,
a {
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.skip-link {
    background: var(--white);
    border-radius: 0.5rem;
    color: var(--navy-900);
    font-weight: 700;
    left: 1rem;
    padding: 0.75rem 1rem;
    position: fixed;
    top: -5rem;
    z-index: 1000;
}

.skip-link:focus {
    top: 1rem;
}

.site-container {
    margin: 0 auto;
    max-width: 76rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}

.site-header {
    backdrop-filter: blur(18px);
    background: rgba(22, 2, 52, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--white);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 50;
}

.header-inner {
    align-items: center;
    display: flex;
    height: 5.25rem;
    justify-content: space-between;
}

.brand {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    width: 10.2rem;
}

.brand img,
.footer-brand img {
    height: auto;
    width: 100%;
}

.animated-logo {
    position: relative;
}

.animated-logo__video {
    display: none;
    height: auto;
    left: 50%;
    max-width: none;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    /* Compensa a margem transparente do WebM para manter o logo no tamanho da imagem estática. */
    width: 112%;
    z-index: 2;
}

.animated-logo--playing .animated-logo__video {
    display: block;
}

.animated-logo--playing img {
    visibility: hidden;
}

.desktop-nav {
    align-items: center;
    display: flex;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2.2rem;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.96rem;
    font-weight: 600;
    position: relative;
    transition: color 160ms ease;
}

.desktop-nav a::after {
    background: var(--blue-500);
    bottom: -0.55rem;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
    width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: var(--white);
}

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

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 0.7rem;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 700;
    gap: 0.65rem;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.78rem 1.25rem;
    transition: box-shadow 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button svg {
    fill: none;
    height: 1.15rem;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 1.15rem;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.site-header a:focus-visible,
.site-footer a:focus-visible,
.mobile-nav summary:focus-visible {
    outline: 3px solid rgba(185, 165, 255, 0.58);
    outline-offset: 3px;
}

.button-header {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
    min-height: 2.8rem;
    padding: 0.6rem 1rem;
}

.button-header:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy-900);
}

.mobile-nav {
    display: none;
    position: relative;
}

.mobile-nav summary {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0.55rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    height: 2.7rem;
    justify-content: center;
    list-style: none;
    width: 2.7rem;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav summary span {
    background: var(--white);
    border-radius: 2px;
    height: 2px;
    width: 1.1rem;
}

.mobile-nav nav {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    box-shadow: var(--shadow);
    color: var(--ink);
    display: grid;
    gap: 0.2rem;
    min-width: 15rem;
    padding: 0.6rem;
    position: absolute;
    right: 0;
    top: 3.4rem;
}

.mobile-nav nav a {
    border-radius: 0.5rem;
    font-weight: 600;
    padding: 0.7rem 0.8rem;
}

.mobile-nav nav a:hover {
    background: var(--surface);
}

.mobile-nav nav .mobile-login {
    background: var(--blue-700);
    color: var(--white);
    margin-top: 0.25rem;
    text-align: center;
}

.hero {
    background:
        radial-gradient(circle at 75% 24%, rgba(127, 91, 232, 0.32), transparent 30rem),
        radial-gradient(circle at 15% 78%, rgba(92, 44, 207, 0.22), transparent 26rem),
        linear-gradient(132deg, var(--navy-950) 2%, #2b086f 58%, #4216a3 100%);
    color: var(--white);
    min-height: 49rem;
    overflow: hidden;
    padding: 10rem 0 7.5rem;
    position: relative;
}

.hero::before {
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 3.5rem 3.5rem;
    content: "";
    inset: 0;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    position: absolute;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: 0.92fr 1.08fr;
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 35rem;
}

.eyebrow,
.section-kicker {
    color: var(--blue-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.115em;
    text-transform: uppercase;
}

.eyebrow {
    align-items: center;
    background: rgba(151, 119, 240, 0.14);
    border: 1px solid rgba(190, 169, 255, 0.3);
    border-radius: 999px;
    color: #d4c8ff;
    display: inline-flex;
    gap: 0.6rem;
    padding: 0.52rem 0.8rem;
}

.eyebrow-dot {
    background: var(--cyan-400);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(185, 165, 255, 0.13);
    height: 0.45rem;
    width: 0.45rem;
}

.hero h1 {
    font-size: clamp(3.25rem, 5.25vw, 5.25rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.98;
    margin: 1.5rem 0 1.35rem;
}

.hero h1 em,
.section-heading h2 em {
    color: #bda9ff;
    font-style: normal;
}

.hero-lead {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.18rem;
    line-height: 1.62;
    margin: 0;
    max-width: 34rem;
}

.hero-lead strong {
    color: var(--white);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.button-primary {
    background: linear-gradient(135deg, #805ce8, #5422cf);
    box-shadow: 0 14px 30px rgba(65, 24, 166, 0.34);
    color: var(--white);
}

.button-primary:hover {
    box-shadow: 0 17px 36px rgba(65, 24, 166, 0.44);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-points {
    color: rgba(255, 255, 255, 0.69);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.88rem;
    gap: 0.75rem 1.3rem;
    list-style: none;
    margin: 1.6rem 0 0;
    padding: 0;
}

.hero-points li {
    align-items: center;
    display: flex;
    gap: 0.4rem;
}

.hero-points span {
    align-items: center;
    background: rgba(32, 184, 120, 0.18);
    border-radius: 50%;
    color: #65e2ad;
    display: inline-flex;
    font-size: 0.68rem;
    height: 1.15rem;
    justify-content: center;
    width: 1.15rem;
}

.hero-visual {
    min-height: 34rem;
    perspective: 1000px;
    position: relative;
}

.hero-glow {
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
    position: absolute;
}

.hero-glow-one {
    background: rgba(133, 91, 238, 0.16);
    height: 35rem;
    right: -11rem;
    top: 4rem;
    width: 35rem;
}

.hero-glow-two {
    background: rgba(190, 169, 255, 0.08);
    bottom: -15rem;
    height: 28rem;
    left: 18%;
    width: 28rem;
}

.orbit {
    border: 1px solid rgba(190, 169, 255, 0.14);
    border-radius: 50%;
    left: 50%;
    position: absolute;
    top: 48%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    height: 34rem;
    width: 34rem;
}

.orbit-two {
    height: 27rem;
    width: 27rem;
}

.dashboard-window {
    background: #f7faff;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 1.2rem;
    box-shadow: 0 45px 100px rgba(0, 5, 25, 0.43), 0 0 0 0.55rem rgba(255, 255, 255, 0.045);
    color: var(--ink);
    left: 1.2rem;
    overflow: hidden;
    position: absolute;
    top: 2.5rem;
    transform: rotateY(-4deg) rotateX(1.5deg);
    width: calc(100% - 1.2rem);
    z-index: 3;
}

.window-topbar {
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid #e5edf6;
    display: flex;
    height: 3.7rem;
    justify-content: space-between;
    padding: 0 1.25rem;
}

.window-brand {
    align-items: center;
    color: var(--navy-800);
    display: flex;
    font-size: 1rem;
    font-weight: 800;
    gap: 0.45rem;
}

.window-brand img {
    height: 1.75rem;
    object-fit: contain;
    width: 1.75rem;
}

.window-dots {
    display: flex;
    gap: 0.38rem;
}

.window-dots i {
    background: #dce5f1;
    border-radius: 50%;
    height: 0.48rem;
    width: 0.48rem;
}

.window-body {
    padding: 1.3rem;
}

.window-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.window-heading div {
    display: grid;
    gap: 0.13rem;
}

.window-heading small,
.chart-title small,
.donut-card > small {
    color: #7c8ca3;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.window-heading strong {
    color: #12294a;
    font-size: 1.05rem;
}

.window-heading > span {
    background: #edf4fd;
    border-radius: 0.45rem;
    color: #62748b;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.5rem 0.65rem;
}

.metric-row {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1rem;
}

.mini-card,
.chart-card,
.donut-card {
    background: var(--white);
    border: 1px solid #e5edf6;
    border-radius: 0.72rem;
    box-shadow: 0 8px 20px rgba(16, 44, 82, 0.045);
}

.mini-card {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
    padding: 0.75rem;
}

.mini-icon {
    align-items: center;
    background: #eaf4ff;
    border-radius: 0.42rem;
    color: var(--blue-600);
    display: flex;
    font-size: 0.77rem;
    font-weight: 800;
    height: 1.65rem;
    justify-content: center;
    margin-bottom: 0.1rem;
    width: 1.65rem;
}

.mini-card-green .mini-icon {
    background: #e8f9f1;
    color: var(--green-500);
}

.mini-card-orange .mini-icon {
    background: #fff2e7;
    color: #ef8c31;
}

.mini-card small {
    color: #8492a6;
    font-size: 0.64rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-card strong {
    color: #223a5b;
    font-size: 0.78rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-card > i {
    background: #edf2f7;
    border-radius: 99px;
    height: 0.25rem;
    margin-top: 0.15rem;
    overflow: hidden;
}

.mini-card > i b {
    background: var(--blue-500);
    border-radius: inherit;
    display: block;
    height: 100%;
}

.mini-card-green > i b {
    background: var(--green-500);
}

.mini-card-orange > i b {
    background: var(--orange-500);
}

.chart-row {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: 1.7fr 0.9fr;
    margin-top: 0.65rem;
}

.chart-card,
.donut-card {
    min-height: 12.8rem;
    padding: 0.85rem;
}

.chart-title {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.chart-title > span {
    display: grid;
    gap: 0.1rem;
}

.chart-title strong,
.donut-card > strong {
    color: #263d5d;
    font-size: 0.75rem;
}

.chart-title > b {
    color: var(--green-500);
}

.line-chart {
    height: 8.8rem;
    margin-top: 0.5rem;
    overflow: visible;
    width: 100%;
}

.line-chart .grid-line {
    fill: none;
    stroke: #edf2f7;
    stroke-width: 1;
}

.line-chart .area {
    fill: url(#chart-fill);
}

.line-chart .trend {
    fill: none;
    stroke: var(--blue-500);
    stroke-linecap: round;
    stroke-width: 4;
}

.line-chart circle {
    fill: var(--white);
    stroke: var(--blue-500);
    stroke-width: 3;
}

.donut-card {
    display: flex;
    flex-direction: column;
}

.donut-card > strong {
    margin-top: 0.1rem;
}

.donut {
    align-items: center;
    background: conic-gradient(var(--blue-500) 0 50%, var(--green-500) 50% 79%, var(--cyan-400) 79% 100%);
    border-radius: 50%;
    display: flex;
    height: 6.1rem;
    justify-content: center;
    margin: 0.75rem auto 0.55rem;
    position: relative;
    width: 6.1rem;
}

.donut::after {
    background: var(--white);
    border-radius: 50%;
    content: "";
    height: 4rem;
    position: absolute;
    width: 4rem;
}

.donut span {
    color: #233b5c;
    display: grid;
    font-size: 0.78rem;
    font-weight: 800;
    position: relative;
    text-align: center;
    z-index: 1;
}

.donut span small {
    color: #8996a8;
    font-size: 0.45rem;
    font-weight: 600;
}

.donut-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    justify-content: center;
    list-style: none;
    margin: auto 0 0;
    padding: 0;
}

.donut-card li {
    align-items: center;
    color: #7a8a9f;
    display: flex;
    font-size: 0.47rem;
    gap: 0.2rem;
}

.donut-card li i {
    border-radius: 50%;
    height: 0.35rem;
    width: 0.35rem;
}

.donut-card .blue { background: var(--blue-500); }
.donut-card .green { background: var(--green-500); }
.donut-card .cyan { background: var(--cyan-400); }

.floating-chip {
    align-items: center;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    box-shadow: 0 18px 45px rgba(1, 17, 45, 0.28);
    color: var(--ink);
    display: flex;
    gap: 0.62rem;
    padding: 0.68rem 0.8rem;
    position: absolute;
    z-index: 6;
}

.floating-chip .chip-icon {
    align-items: center;
    background: #e8f9f3;
    border-radius: 0.5rem;
    color: var(--green-500);
    display: flex;
    font-size: 1.1rem;
    font-weight: 800;
    height: 2.1rem;
    justify-content: center;
    width: 2.1rem;
}

.floating-chip > span:nth-child(2) {
    display: grid;
}

.floating-chip small {
    color: #8492a6;
    font-size: 0.58rem;
}

.floating-chip strong {
    font-size: 0.74rem;
}

.floating-chip > b {
    align-items: center;
    background: var(--green-500);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    font-size: 0.55rem;
    height: 1.2rem;
    justify-content: center;
    margin-left: 0.4rem;
    width: 1.2rem;
}

.chip-pix {
    right: -1.1rem;
    top: 0;
}

.chip-boleto {
    bottom: 0.3rem;
    left: -1.1rem;
}

.chip-boleto .chip-icon {
    background: #ebf4ff;
    color: var(--blue-600);
}

.hero-wave {
    background: var(--white);
    bottom: -1px;
    clip-path: ellipse(58% 42% at 50% 100%);
    height: 4rem;
    left: -8%;
    position: absolute;
    width: 116%;
}

.proof-strip {
    background: var(--white);
    border-bottom: 1px solid #edf2f7;
    padding: 1.65rem 0 2.1rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
    border-right: 1px solid var(--line);
    display: grid;
    gap: 0.22rem;
    padding: 0.2rem 1.8rem;
}

.proof-grid > div:first-child {
    padding-left: 0;
}

.proof-grid > div:last-child {
    border-right: 0;
}

.proof-grid strong {
    color: var(--navy-800);
    font-size: 1.1rem;
}

.proof-grid span {
    color: var(--muted);
    font-size: 0.84rem;
}

.section {
    padding: 7rem 0;
}

.resources {
    background: linear-gradient(180deg, var(--white), #faf7ff 100%);
}

.section-heading {
    max-width: 42rem;
}

.section-heading.centered {
    margin: 0 auto 3.1rem;
    text-align: center;
}

.section-heading h2,
.integrations h2 {
    color: var(--navy-900);
    font-size: clamp(2.35rem, 4.2vw, 3.65rem);
    letter-spacing: -0.037em;
    line-height: 1.04;
    margin: 0.85rem 0 1rem;
}

.section-heading p,
.integrations p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0;
}

.feature-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: 0 15px 45px rgba(43, 13, 105, 0.06);
    min-height: 20rem;
    overflow: hidden;
    padding: 1.7rem;
    position: relative;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover {
    border-color: #cdbdf0;
    box-shadow: 0 22px 55px rgba(43, 13, 105, 0.11);
    transform: translateY(-4px);
}

.feature-card-main {
    background: linear-gradient(145deg, #250766, #5422cf);
    border-color: transparent;
    color: var(--white);
}

.feature-card-main::after {
    background: rgba(185, 165, 255, 0.18);
    border-radius: 50%;
    content: "";
    height: 13rem;
    position: absolute;
    right: -5rem;
    top: -4rem;
    width: 13rem;
}

.feature-icon {
    align-items: center;
    background: #f1ecff;
    border-radius: 0.75rem;
    color: var(--blue-600);
    display: flex;
    height: 3rem;
    justify-content: center;
    margin-bottom: 1.3rem;
    width: 3rem;
}

.feature-icon svg {
    fill: none;
    height: 1.5rem;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 1.5rem;
}

.feature-card-main .feature-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #c7b7ff;
}

.feature-icon-green { background: #e9f9f2; color: var(--green-500); }
.feature-icon-purple { background: #f0edff; color: var(--purple-500); }
.feature-icon-cyan { background: #e8fbfd; color: #10a9bf; }

.feature-label {
    color: var(--blue-700);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feature-card-main .feature-label {
    color: #c7b7ff;
}

.feature-card h3 {
    color: var(--navy-900);
    font-size: 1.55rem;
    line-height: 1.1;
    margin: 0.65rem 0 0.75rem;
}

.feature-card-main h3 {
    color: var(--white);
}

.feature-card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.feature-card-main p {
    color: rgba(255, 255, 255, 0.7);
}

.payment-tags {
    bottom: 1.6rem;
    display: flex;
    gap: 0.45rem;
    left: 1.7rem;
    position: absolute;
}

.payment-tags span {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 99px;
    color: #e5deff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.42rem 0.65rem;
}

.feature-card-wide {
    align-items: center;
    display: grid;
    gap: 2rem;
    grid-column: span 3;
    grid-template-columns: 1fr 1.2fr;
    min-height: auto;
}

.integration-flow {
    align-items: center;
    background: var(--surface);
    border: 1px solid #e6dff0;
    border-radius: 0.9rem;
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    min-height: 8rem;
    padding: 1rem;
}

.integration-flow span,
.integration-flow b {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.6rem;
    color: var(--navy-800);
    font-size: 0.85rem;
    padding: 0.8rem 0.9rem;
}

.integration-flow b {
    background: var(--blue-700);
    border-color: var(--blue-700);
    box-shadow: 0 10px 25px rgba(75, 31, 184, 0.24);
    color: var(--white);
}

.integration-flow i {
    color: #8e9caf;
    font-style: normal;
}

.steps-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(136, 96, 239, 0.28), transparent 23rem),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.steps-section::after {
    border: 1px solid rgba(190, 169, 255, 0.14);
    border-radius: 50%;
    content: "";
    height: 37rem;
    position: absolute;
    right: -16rem;
    top: -16rem;
    width: 37rem;
}

.steps-grid {
    align-items: center;
    display: grid;
    gap: 6rem;
    grid-template-columns: 0.85fr 1.15fr;
    position: relative;
    z-index: 1;
}

.section-kicker.light {
    color: #c7b7ff;
}

.steps-copy h2 {
    font-size: clamp(2.5rem, 4vw, 3.7rem);
    letter-spacing: -0.038em;
    line-height: 1.04;
    margin: 0.85rem 0 1.1rem;
}

.steps-copy p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.08rem;
    line-height: 1.68;
}

.text-link {
    align-items: center;
    color: #d0c3ff;
    display: inline-flex;
    font-weight: 700;
    gap: 0.55rem;
    margin-top: 0.65rem;
}

.text-link span {
    transition: transform 160ms ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.steps-list {
    display: grid;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.steps-list li {
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    display: grid;
    gap: 1.4rem;
    grid-template-columns: 3rem 1fr;
    padding: 1.65rem 0;
}

.steps-list li:last-child {
    border-bottom: 0;
}

.steps-list > li > span {
    align-items: center;
    background: rgba(147, 109, 240, 0.14);
    border: 1px solid rgba(190, 169, 255, 0.27);
    border-radius: 50%;
    color: #d0c3ff;
    display: flex;
    font-size: 0.75rem;
    font-weight: 800;
    height: 3rem;
    justify-content: center;
    width: 3rem;
}

.steps-list h3 {
    font-size: 1.35rem;
    margin: 0 0 0.35rem;
}

.steps-list p {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.55;
    margin: 0;
}

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

.audiences .section-heading {
    margin-bottom: 2.6rem;
}

.audience-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.audience-card {
    border: 1px solid var(--line);
    border-radius: 1rem;
    min-height: 27rem;
    overflow: hidden;
    padding: 2.2rem;
    position: relative;
}

.business-card {
    background: linear-gradient(145deg, #fbf9ff, #f0eaff);
}

.reseller-card {
    background: linear-gradient(145deg, #f7f5ff, #efecff);
}

.audience-number {
    color: rgba(60, 20, 163, 0.1);
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    position: absolute;
    right: 1.2rem;
    top: 0.7rem;
}

.audience-icon {
    align-items: center;
    background: var(--blue-700);
    border-radius: 0.8rem;
    color: var(--white);
    display: flex;
    font-size: 1.5rem;
    height: 3.4rem;
    justify-content: center;
    margin-bottom: 4rem;
    position: relative;
    width: 3.4rem;
}

.reseller-card .audience-icon {
    background: var(--purple-500);
}

.audience-card h3 {
    color: var(--navy-900);
    font-size: 2rem;
    margin: 0 0 0.75rem;
}

.audience-card p {
    color: var(--muted);
    line-height: 1.62;
    max-width: 29rem;
}

.audience-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 1.6rem 0 0;
    padding: 0;
}

.audience-card li {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(156, 132, 198, 0.28);
    border-radius: 99px;
    color: #57456d;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
}

.integrations {
    background: var(--surface);
}

.integrations-grid {
    align-items: center;
    display: grid;
    gap: 5rem;
    grid-template-columns: 0.88fr 1.12fr;
}

.bank-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.bank-cloud span {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(43, 13, 105, 0.06);
    color: #57456d;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 1rem 1.25rem;
    transition: border-color 160ms ease, transform 160ms ease;
}

.bank-cloud span:nth-child(2n) {
    transform: translateY(0.6rem);
}

.bank-cloud span:hover {
    border-color: #c8b6ed;
    transform: translateY(-2px);
}

.final-cta {
    background: linear-gradient(118deg, #3c14a3, #7955e1);
    color: var(--white);
    overflow: hidden;
    padding: 4.5rem 0;
    position: relative;
}

.final-glow {
    border: 5rem solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    height: 31rem;
    position: absolute;
    right: -9rem;
    top: -15rem;
    width: 31rem;
}

.final-cta-inner {
    align-items: center;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    position: relative;
}

.final-cta h2 {
    font-size: clamp(2.3rem, 4vw, 3.55rem);
    letter-spacing: -0.035em;
    margin: 0.7rem 0 0.65rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
    margin: 0;
    max-width: 41rem;
}

.button-white {
    background: var(--white);
    box-shadow: 0 15px 32px rgba(43, 13, 105, 0.22);
    color: var(--blue-700);
    flex: 0 0 auto;
}

.site-footer {
    background: var(--navy-950);
    color: var(--white);
    padding-top: 4.5rem;
}

.footer-main {
    display: grid;
    gap: 5rem;
    grid-template-columns: 1fr 1.5fr;
    padding-bottom: 3.5rem;
}

.footer-brand {
    width: 11rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
    margin: 1rem 0 0;
    width: 19rem;
}

.footer-links {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links strong {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.59);
    font-size: 0.9rem;
    transition: color 160ms ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    font-size: 0.78rem;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 1.25rem;
        margin-right: 1.25rem;
    }

    .hero-grid {
        gap: 2rem;
    }

    .dashboard-window {
        left: 0;
        width: 100%;
    }

    .chip-pix { right: -0.5rem; }
    .chip-boleto { left: -0.5rem; }
}

@media (max-width: 900px) {
    .desktop-nav,
    .button-header {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .hero {
        padding-top: 9rem;
    }

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

    .hero-copy {
        margin: 0 auto;
        max-width: 43rem;
        text-align: center;
    }

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

    .hero-visual {
        margin: 0 auto;
        max-width: 43rem;
        width: 100%;
    }

    .proof-grid {
        gap: 1.5rem 0;
        grid-template-columns: 1fr 1fr;
    }

    .proof-grid > div:nth-child(2) {
        border-right: 0;
    }

    .proof-grid > div:nth-child(3) {
        padding-left: 0;
    }

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

    .feature-card-main {
        grid-column: span 2;
    }

    .feature-card-wide {
        grid-column: span 2;
    }

    .steps-grid,
    .integrations-grid {
        gap: 3.5rem;
        grid-template-columns: 1fr;
    }

    .audience-card {
        min-height: 29rem;
    }

    .footer-main {
        gap: 3rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .header-inner {
        height: 4.7rem;
    }

    .brand {
        width: 8.8rem;
    }

    .hero {
        min-height: auto;
        padding: 8rem 0 6.5rem;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 13.5vw, 4rem);
    }

    .hero-lead {
        font-size: 1.04rem;
    }

    .eyebrow {
        font-size: 0.66rem;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-points {
        align-items: center;
        flex-direction: column;
    }

    .hero-visual {
        min-height: 25.5rem;
    }

    .dashboard-window {
        top: 2.5rem;
        transform: none;
    }

    .window-topbar {
        height: 3.2rem;
    }

    .window-body {
        padding: 0.8rem;
    }

    .window-heading > span {
        display: none;
    }

    .metric-row {
        gap: 0.4rem;
    }

    .mini-card {
        padding: 0.55rem;
    }

    .mini-icon {
        height: 1.35rem;
        width: 1.35rem;
    }

    .chart-row {
        grid-template-columns: 1fr;
    }

    .chart-card {
        min-height: 10.5rem;
    }

    .line-chart {
        height: 6.7rem;
    }

    .donut-card,
    .floating-chip,
    .orbit {
        display: none;
    }

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

    .proof-grid > div {
        border-bottom: 1px solid var(--line);
        border-right: 0;
        padding: 0 0 1rem;
    }

    .proof-grid > div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 5rem 0;
    }

    .section-heading h2,
    .integrations h2 {
        font-size: 2.45rem;
    }

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

    .feature-card,
    .feature-card-main,
    .feature-card-wide {
        grid-column: span 1;
    }

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

    .integration-flow {
        gap: 0.35rem;
    }

    .integration-flow span,
    .integration-flow b {
        font-size: 0.7rem;
        padding: 0.65rem 0.5rem;
    }

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

    .audience-card {
        min-height: auto;
        padding: 1.5rem;
    }

    .audience-icon {
        margin-bottom: 3rem;
    }

    .bank-cloud {
        justify-content: flex-start;
    }

    .bank-cloud span:nth-child(2n) {
        transform: none;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .button-white {
        width: 100%;
    }

    .footer-links {
        gap: 2rem;
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}

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

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