/* ═══════════════════════════════════════════════════
   FONT FACE — Proxima Nova (local)
   ═══════════════════════════════════════════════════ */
@font-face {
  font-family: 'Proxima Nova';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url(fonts/ProximaNova-ExtraBold.woff2) format('woff2'),
       url(fonts/ProximaNova-ExtraBold.woff) format('woff');
}

@font-face {
  font-family: 'Proxima Nova';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url(fonts/ProximaNova-Bold.woff2) format('woff2'),
       url(fonts/ProximaNova-Bold.woff) format('woff'),
       url(fonts/ProximaNova-Bold.ttf) format('truetype');
}

@font-face {
  font-family: 'Proxima Nova';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url(fonts/ProximaNova-SemiBold.woff2) format('woff2'),
       url(fonts/ProximaNova-SemiBold.woff) format('woff');
}

@font-face {
  font-family: 'Proxima Nova';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url(fonts/ProximaNova-Medium.woff2) format('woff2'),
       url(fonts/ProximaNova-Medium.woff) format('woff');
}

@font-face {
  font-family: 'Proxima Nova';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url(fonts/ProximaNova-Regular.woff2) format('woff2'),
       url(fonts/ProximaNova-Regular.woff) format('woff');
}

@font-face {
  font-family: 'Proxima Nova';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url(fonts/ProximaNova-Light.woff2) format('woff2'),
       url(fonts/ProximaNova-Light.woff) format('woff');
}

/* ═══════════════════════════════════════════════════
   ANDES DESIGN TOKENS
   ═══════════════════════════════════════════════════ */
:root {
  /* --- Colors --- */
  --andes-color-text-primary:                #282834;
  --andes-color-text-secondary:              rgba(40, 40, 52, 0.55);
  --andes-color-text-inverse:                #ffffff;
  --andes-color-text-accent-loud-on-fill:    #ffffff;

  --andes-color-interactive-fill-loud-idle:   #434ce4;
  --andes-color-interactive-fill-loud-hover:  #3a42c8;
  --andes-color-interactive-fill-quiet-idle:  transparent;

  --andes-color-surface-primary-idle:         #ffffff;
  --andes-color-surface-secondary:            #f5f5f5;
  --andes-color-background-primary:           #ffffff;
  --andes-color-background-secondary:         #ebebeb;

  --andes-color-brand-fill-loud:              #ffe600;
  --andes-color-brand-fill-quiet:             rgba(255, 230, 0, 0.1);
  --andes-color-accent-green:                 #00a650;
  --andes-color-accent-blue:                  #434ce4;

  --andes-color-black-alpha-10:               rgba(40, 40, 52, 0.1);
  --andes-color-black-alpha-55:               rgba(40, 40, 52, 0.55);
  --andes-color-black-alpha-70:               rgba(40, 40, 52, 0.7);
  --andes-color-white-alpha-10:               rgba(255, 255, 255, 0.1);
  --andes-color-white-alpha-90:               rgba(255, 255, 255, 0.9);

  --andes-color-surface-secondary-idle:       #f4f5f9;
  --andes-color-feedback-text-positive-loud:  #1f8923;
  --andes-color-text-link-idle:               #434ce4;

  /* --- Spacing (Andes scale) --- */
  --andes-spacing-4:   4px;
  --andes-spacing-8:   8px;
  --andes-spacing-12:  12px;
  --andes-spacing-14:  14px;
  --andes-spacing-16:  16px;
  --andes-spacing-24:  24px;
  --andes-spacing-32:  32px;
  --andes-spacing-40:  40px;
  --andes-spacing-60:  60px;
  --andes-spacing-64:  64px;
  --andes-spacing-80:  80px;
  --andes-spacing-120: 120px;

  /* --- Border radius --- */
  --andes-border-radius-xs:    4px;
  --andes-border-radius-s:     8px;
  --andes-border-radius-m:     12px;
  --andes-border-radius-l:     16px;
  --andes-border-radius-xl:    20px;
  --andes-border-radius-xxl:   32px;
  --andes-border-radius-pill:  55px;
  --andes-border-radius-full:  9999px;
  --andes-border-radius-actions-inputs: 12px;

  /* --- Shadows --- */
  --andes-shadow-elevated: 0 4px 24px 0 rgba(0, 0, 0, 0.1);

  /* --- Glass --- */
  --andes-glass-blur-default: 8px;

  /* --- Typography --- */
  --font-proxima: 'Proxima Nova', -apple-system, 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
}

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

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  margin: 0;
}

dd, dl, ol, ul {
  margin: 0;
  padding: 0;
}

dl, ol, ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
  font-weight: 400;
  margin: 0;
}

fieldset {
  border: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* ═══════════════════════════════════════════════════
   BASE / CONTAINER (Andes Landings)
   ═══════════════════════════════════════════════════ */
body {
  font-family: var(--font-proxima);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
  background: var(--andes-color-background-primary);
  color: var(--andes-color-text-primary);
  overflow-x: hidden;
}

.pog-ui-container-fluid {
  font-family: var(--font-proxima);
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

/* Fixed container (centered, max 1180px on desktop) */
.andes-landings-container--fixed {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--andes-spacing-24);
  padding-right: var(--andes-spacing-24);
}

/* Fluid container (full width) */
.andes-landings-container--fluid {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* 12-column grid */
.andes-landings-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--andes-spacing-24);
}

/* Grid span helpers */
.andes-landings-grid-item.col-12--start-1 { grid-column: 1 / -1; }
.andes-landings-grid-item.col-10--start-2 { grid-column: 2 / 12; }
.andes-landings-grid-item.col-8--start-3  { grid-column: 3 / 11; }
.andes-landings-grid-item.col-6--start-1  { grid-column: 1 / 7; }
.andes-landings-grid-item.col-6--start-7  { grid-column: 7 / 13; }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY (Andes Landings)
   ═══════════════════════════════════════════════════ */
.andes-landings-typography--type-display {
  font-weight: 700;
  letter-spacing: 0;
}

.andes-landings-typography--type-title {
  font-weight: 700;
  letter-spacing: 0;
}

.andes-landings-typography--type-subtitle {
  font-weight: 600;
  letter-spacing: 0;
}

.andes-landings-typography--type-body {
  font-weight: 400;
  letter-spacing: 0;
}

.andes-landings-typography--type-volanta {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.64px;
}

.andes-landings-typography--color-primary {
  color: var(--andes-color-text-primary);
}

.andes-landings-typography--color-inverted {
  color: var(--andes-color-text-inverse);
}

.andes-landings-typography--color-secondary {
  color: var(--andes-color-text-secondary);
}

/* ═══════════════════════════════════════════════════
   BUTTONS (Andes Landings)
   ═══════════════════════════════════════════════════ */
.andes-landings-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-proxima);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.andes-landings-button--loud {
  background-color: var(--andes-color-interactive-fill-loud-idle);
  color: var(--andes-color-text-accent-loud-on-fill);
  border-radius: var(--andes-border-radius-actions-inputs);
}

.andes-landings-button--large {
  height: 48px;
  padding: 0 var(--andes-spacing-24);
  font-size: 16px;
  line-height: 20px;
}

/* ═══════════════════════════════════════════════════
   IMAGE CONTAINERS (Andes Landings)
   ═══════════════════════════════════════════════════ */
.andes-landings-image-container img {
  max-width: 100%;
}

.andes-landings-thumbnail--cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.andes-landings-thumbnail--contain img {
  object-fit: contain;
}

.andes-landings-thumbnail--radius-full {
  border-radius: var(--andes-border-radius-full);
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   SECTIONS — Empty placeholders (built module by module)
   ═══════════════════════════════════════════════════ */
.acqui-hero,
.acqui-investimentos,
.acqui-cartao,
.acqui-emprestimos,
.acqui-pagamentos,
.acqui-faq,
.acqui-seguranca,
.acqui-suporte,
.acqui-assistente,
.acqui-prefooter,
.acqui-download,
.acqui-footer {
  width: 100%;
  padding: var(--andes-spacing-8);
}

/* ═══════════════════════════════════════════════════
   M01 — HERO
   ═══════════════════════════════════════════════════ */
.acqui-hero {
  padding: var(--andes-spacing-8);
}

.acqui-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  border-radius: var(--andes-border-radius-xl);
  overflow: hidden;
}

/* Background image */
.acqui-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.acqui-hero__bg--mobile {
  display: none;
}

/* Navbar */
.acqui-hero__navbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--andes-spacing-40);
}

.acqui-hero__navbar-left {
  display: flex;
  align-items: center;
  gap: var(--andes-spacing-8);
}

.acqui-hero__logo {
  width: 116px;
  height: 56px;
  flex-shrink: 0;
}

.acqui-hero__logo-img {
  display: block;
  width: 100%;
  height: 100%;
}

.acqui-hero__logo-img--desktop {
  display: block;
}

.acqui-hero__logo-symbol--mobile {
  display: none;
}

/* Dropdown menu */
.acqui-hero__menu--desktop {
  display: flex;
  align-items: center;
  gap: var(--andes-spacing-8);
  padding: var(--andes-spacing-8);
  background: var(--andes-color-black-alpha-10);
  backdrop-filter: blur(var(--andes-glass-blur-default));
  -webkit-backdrop-filter: blur(var(--andes-glass-blur-default));
  border-radius: var(--andes-border-radius-xl);
}

.acqui-hero__menu-item {
  display: flex;
  align-items: center;
  gap: var(--andes-spacing-8);
  height: 40px;
  padding: 2px var(--andes-spacing-16);
  background: var(--andes-color-black-alpha-70);
  backdrop-filter: blur(var(--andes-glass-blur-default));
  -webkit-backdrop-filter: blur(var(--andes-glass-blur-default));
  border-radius: var(--andes-border-radius-actions-inputs);
  text-decoration: none;
}

.acqui-hero__menu-label {
  font-family: var(--font-proxima);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--andes-color-text-inverse);
  white-space: nowrap;
}

.acqui-hero__menu-chevron {
  flex-shrink: 0;
}

/* Navbar right */
.acqui-hero__navbar-right {
  display: flex;
  align-items: center;
  gap: var(--andes-spacing-8);
  padding: var(--andes-spacing-8);
  background: var(--andes-color-black-alpha-10);
  backdrop-filter: blur(var(--andes-glass-blur-default));
  -webkit-backdrop-filter: blur(var(--andes-glass-blur-default));
  border-radius: var(--andes-border-radius-xl);
}

.acqui-hero__login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 2px var(--andes-spacing-16);
  background: var(--andes-color-black-alpha-70);
  backdrop-filter: blur(var(--andes-glass-blur-default));
  -webkit-backdrop-filter: blur(var(--andes-glass-blur-default));
  border-radius: var(--andes-border-radius-actions-inputs);
  font-family: var(--font-proxima);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--andes-color-text-inverse);
  text-decoration: none;
  white-space: nowrap;
}

.acqui-hero__hamburger--mobile {
  display: none;
}

/* Spacer */
.acqui-hero__spacer {
  position: relative;
  z-index: 1;
  flex: 1 0 0;
}

/* Title */
.acqui-hero__title-wrapper {
  position: relative;
  z-index: 1;
  padding-left: var(--andes-spacing-40);
  overflow: hidden;
}

.acqui-hero__title {
  font-family: var(--font-proxima);
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -5px;
  color: var(--andes-color-text-inverse);
  max-width: 624px;
}

/* Bottom row */
.acqui-hero__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: var(--andes-spacing-40);
  padding-right: var(--andes-spacing-8);
  overflow: hidden;
}

.acqui-hero__cta-wrapper {
  padding: 49px 0;
}

.acqui-hero__cta {
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
}

/* Taxes */
.acqui-hero__taxes {
  display: flex;
  align-items: center;
  gap: var(--andes-spacing-8);
  padding: var(--andes-spacing-40) 0;
  width: 631px;
}

.acqui-hero__taxes-item {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--andes-spacing-8);
}

.acqui-hero__taxes-label {
  font-family: var(--font-proxima);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--andes-color-text-inverse);
}

.acqui-hero__taxes-value {
  display: flex;
  align-items: flex-end;
  gap: var(--andes-spacing-8);
}

.acqui-hero__taxes-percentage {
  font-family: var(--font-proxima);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.6px;
  color: var(--andes-color-text-inverse);
  white-space: nowrap;
}

.acqui-hero__taxes-cdi {
  font-family: var(--font-proxima);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--andes-color-text-inverse);
  padding-bottom: var(--andes-spacing-4);
  white-space: nowrap;
}

/* FAB — video animation */
.acqui-hero__fab {
  position: fixed;
  bottom: var(--andes-spacing-32);
  right: var(--andes-spacing-32);
  z-index: 999;
  width: 77px;
  height: 77px;
  cursor: pointer;
}

.acqui-hero__fab-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   M02 — INVESTIMENTOS
   ═══════════════════════════════════════════════════ */
.acqui-investimentos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  height: 100vh;
  padding: 152px 105px;
  background: var(--andes-color-background-primary);
}

.acqui-investimentos__title {
  font-family: var(--font-proxima);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.88px;
  color: var(--andes-color-text-primary);
  text-align: center;
  width: 100%;
}

.acqui-investimentos__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.acqui-investimentos__cards-track {
  display: flex;
  gap: var(--andes-spacing-16);
  justify-content: center;
  max-width: 1124px;
}

.acqui-investimentos__card {
  position: relative;
  flex-shrink: 0;
  width: 212px;
  height: 212px;
  border-radius: 15px;
  overflow: hidden;
}

.acqui-investimentos__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.acqui-investimentos__card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: 68px;
  padding: var(--andes-spacing-16);
  border-radius: 0 0 16px 16px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(8.757px);
  -webkit-backdrop-filter: blur(8.757px);
  border: 0.73px solid rgba(255, 255, 255, 0.5);
  border-top: none;
}

.acqui-investimentos__card-text {
  font-family: var(--font-proxima);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.32px;
  color: var(--andes-color-text-inverse);
}

.acqui-investimentos__subtitle {
  font-family: var(--font-proxima);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.48px;
  color: var(--andes-color-text-secondary);
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   M03 — CARTAO
   ═══════════════════════════════════════════════════ */
.acqui-cartao {
  padding: var(--andes-spacing-8);
}

.acqui-cartao__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  background: #030303;
  border-radius: 24px;
  overflow: hidden;
}

/* Card animation asset — absolute positioned left */
.acqui-cartao__card-asset {
  position: absolute;
  top: 0;
  left: 0;
  width: 954px;
  height: 100%;
  z-index: 0;
}

.acqui-cartao__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Background overlay — gradient covering right side */
.acqui-cartao__bg-overlay {
  position: absolute;
  top: 0;
  left: 295px;
  width: 1055px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.acqui-cartao__bg-overlay::after {
  content: '';
  display: block;
  width: 100vh;
  height: 1055px;
  transform: rotate(90deg);
  background: linear-gradient(
    to bottom,
    #020202 67.387%,
    rgba(2, 2, 2, 0.73) 78.557%,
    rgba(1, 1, 1, 0) 100%
  );
}

/* Left spacer — pushes content to right */
.acqui-cartao__left-spacer {
  flex-shrink: 0;
  width: 741px;
  height: 100%;
}

/* Content wrapper */
.acqui-cartao__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  align-items: flex-start;
  min-width: 1px;
  min-height: 1px;
  height: 100%;
  padding-top: var(--andes-spacing-40);
  padding-bottom: 48px;
  overflow: hidden;
}

/* Title — low opacity */
.acqui-cartao__title {
  font-family: var(--font-proxima);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.88px;
  color: var(--andes-color-text-inverse);
  opacity: 0.3;
  width: 562px;
  flex-shrink: 0;
}

/* Mid spacer */
.acqui-cartao__mid-spacer {
  flex: 1 0 0;
  width: 100%;
  height: auto;
}

/* Description */
.acqui-cartao__description {
  font-family: var(--font-proxima);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.92px;
  color: var(--andes-color-text-inverse);
  width: 541px;
  flex-shrink: 0;
}

/* CTA spacer */
.acqui-cartao__cta-spacer {
  flex-shrink: 0;
  width: 100%;
  height: var(--andes-spacing-32);
}

/* CTA button — glass effect */
.acqui-cartao__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  height: 48px;
  padding: 2px var(--andes-spacing-24);
  background: var(--andes-color-white-alpha-10);
  backdrop-filter: blur(var(--andes-glass-blur-default));
  -webkit-backdrop-filter: blur(var(--andes-glass-blur-default));
  border-radius: var(--andes-border-radius-actions-inputs);
  text-decoration: none;
  flex-shrink: 0;
}

.acqui-cartao__cta-label {
  font-family: var(--font-proxima);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--andes-color-text-inverse);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
   M04 — EMPRESTIMOS
   ═══════════════════════════════════════════════════ */
.acqui-emprestimos {
  padding: var(--andes-spacing-8);
}

.acqui-emprestimos__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  border-radius: var(--andes-border-radius-xl);
  overflow: hidden;
  padding-bottom: var(--andes-spacing-40);
}

/* Background image */
.acqui-emprestimos__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

/* Gradient overlay — hidden on desktop, visible on mobile */
.acqui-emprestimos__gradient {
  display: none;
}

/* Title area */
.acqui-emprestimos__title-area {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--andes-spacing-40) 0 0 var(--andes-spacing-40);
  flex-shrink: 0;
}

.acqui-emprestimos__title {
  font-family: var(--font-proxima);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.88px;
  color: var(--andes-color-text-inverse);
  max-width: 680px;
}

/* Spacer */
.acqui-emprestimos__spacer {
  position: relative;
  z-index: 1;
  flex: 1 0 0;
  min-height: 1px;
  min-width: 1px;
  width: 100%;
}

/* Bullet list */
.acqui-emprestimos__bullets {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--andes-spacing-40);
  align-items: flex-start;
  width: 100%;
  padding-left: var(--andes-spacing-40);
  flex-shrink: 0;
}

.acqui-emprestimos__bullet-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.acqui-emprestimos__bullet-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.acqui-emprestimos__bullet-icon img {
  width: 100%;
  height: 100%;
}

.acqui-emprestimos__bullet-text {
  font-family: var(--font-proxima);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: var(--andes-color-text-inverse);
  flex: 1 0 0;
  min-width: 1px;
  min-height: 1px;
}

/* ═══════════════════════════════════════════════════
   M05 — PAGAMENTOS
   ═══════════════════════════════════════════════════ */
.acqui-pagamentos {
  padding: var(--andes-spacing-8);
}

.acqui-pagamentos__inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
}

/* Left: Photo (sticky on desktop — INT-15) */
.acqui-pagamentos__image-left {
  flex-shrink: 0;
  width: 50%;
  height: 100vh;
  position: sticky;
  top: 0;
  border-radius: var(--andes-border-radius-xl);
  overflow: clip;
}

.acqui-pagamentos__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--andes-border-radius-xl);
}

/* Right: Content column */
.acqui-pagamentos__content-right {
  flex: 1 0 0;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Header */
.acqui-pagamentos__header {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--andes-color-brand-fill-loud);
  border-radius: var(--andes-border-radius-xl);
}

.acqui-pagamentos__header-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--andes-spacing-40);
  padding-right: var(--andes-spacing-80);
}

.acqui-pagamentos__title {
  font-family: var(--font-proxima);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.88px;
  color: var(--andes-color-text-primary);
  width: 100%;
}

.acqui-pagamentos__header-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 88px;
  padding: var(--andes-spacing-40);
}

.acqui-pagamentos__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 2px var(--andes-spacing-24);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(var(--andes-glass-blur-default));
  -webkit-backdrop-filter: blur(var(--andes-glass-blur-default));
  border-radius: var(--andes-border-radius-actions-inputs);
  text-decoration: none;
}

.acqui-pagamentos__cta-label {
  font-family: var(--font-proxima);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--andes-color-text-primary);
  white-space: nowrap;
}

.acqui-pagamentos__cta-label--mobile {
  display: none;
}

/* Items wrapper — vertical on desktop */
.acqui-pagamentos__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

/* Feature items */
.acqui-pagamentos__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background: var(--andes-color-brand-fill-loud);
  border-radius: var(--andes-border-radius-xl);
}

.acqui-pagamentos__item-media {
  flex: 1 0 0;
  min-height: 1px;
  width: 100%;
  padding: var(--andes-spacing-40) var(--andes-spacing-40) 0;
  display: flex;
  flex-direction: column;
}

.acqui-pagamentos__item-img {
  flex: 1 0 0;
  min-height: 1px;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.acqui-pagamentos__item-text {
  flex-shrink: 0;
  width: 100%;
  padding: var(--andes-spacing-40);
  padding-right: var(--andes-spacing-80);
}

.acqui-pagamentos__item-title {
  font-family: var(--font-proxima);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.92px;
  color: var(--andes-color-text-primary);
  width: 100%;
}

/* ═══════════════════════════════════════════════════
   M06 — FAQ / TARIFAS
   ═══════════════════════════════════════════════════ */
.acqui-faq {
  padding: var(--andes-spacing-8);
}

.acqui-faq__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--andes-spacing-80);
  background: var(--andes-color-background-primary);
  border-radius: var(--andes-border-radius-xl);
  padding: var(--andes-spacing-80);
}

.acqui-faq__title {
  font-family: var(--font-proxima);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.88px;
  color: var(--andes-color-text-primary);
  text-align: center;
  width: 100%;
}

.acqui-faq__items {
  display: flex;
  flex-direction: column;
  gap: var(--andes-spacing-8);
  width: 100%;
  max-width: 838px;
}

.acqui-faq__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--andes-spacing-16);
  padding: var(--andes-spacing-40);
  background: var(--andes-color-surface-secondary-idle);
  border-radius: var(--andes-border-radius-xl);
}

.acqui-faq__item-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 0 0;
  min-width: 1px;
}

.acqui-faq__item-label {
  font-family: var(--font-proxima);
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: var(--andes-color-text-primary);
}

.acqui-faq__item-subtitle {
  font-family: var(--font-proxima);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--andes-color-text-secondary);
}

.acqui-faq__item-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.acqui-faq__item-link-text {
  font-family: var(--font-proxima);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--andes-color-text-link-idle);
}

.acqui-faq__item-link-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.acqui-faq__item-right {
  flex-shrink: 0;
  text-align: right;
}

.acqui-faq__item-right--compound {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 148px;
}

.acqui-faq__item-value {
  font-family: var(--font-proxima);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: var(--andes-color-text-primary);
  text-align: right;
  white-space: nowrap;
}

.acqui-faq__item-value--free {
  color: var(--andes-color-feedback-text-positive-loud);
}

.acqui-faq__item-note {
  font-family: var(--font-proxima);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--andes-color-text-secondary);
  text-align: right;
}

/* ═══════════════════════════════════════════════════
   M07 — SEGURANCA
   ═══════════════════════════════════════════════════ */
.acqui-seguranca {
  padding: var(--andes-spacing-8);
}

.acqui-seguranca__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  border-radius: var(--andes-border-radius-xl);
  overflow: clip;
  padding-bottom: var(--andes-spacing-40);
}

/* Background image */
.acqui-seguranca__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--andes-border-radius-xl);
  z-index: 0;
}

.acqui-seguranca__bg--mobile {
  display: none;
}

/* Title area */
.acqui-seguranca__title-area {
  position: relative;
  z-index: 1;
  padding: var(--andes-spacing-40);
  padding-bottom: 0;
}

.acqui-seguranca__title {
  font-family: var(--font-proxima);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.88px;
  color: var(--andes-color-text-inverse);
  width: 100%;
}

/* Spacer */
.acqui-seguranca__spacer {
  flex: 1 0 0;
  min-height: 1px;
}

/* Features list */
.acqui-seguranca__features {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--andes-spacing-40);
  padding-left: var(--andes-spacing-40);
}

.acqui-seguranca__feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.acqui-seguranca__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.acqui-seguranca__feature-icon img {
  width: 100%;
  height: 100%;
}

.acqui-seguranca__feature-text {
  font-family: var(--font-proxima);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: var(--andes-color-text-inverse);
}

/* ═══════════════════════════════════════════════════
   M08 — SUPORTE
   ═══════════════════════════════════════════════════ */
.acqui-suporte {
  padding: var(--andes-spacing-8);
}

.acqui-suporte__inner {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* Text content — left side */
.acqui-suporte__text-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--andes-color-text-primary);
  border-radius: var(--andes-border-radius-xl);
}

.acqui-suporte__title-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 659px;
  display: flex;
  flex-direction: column;
  gap: var(--andes-spacing-24);
  padding: var(--andes-spacing-40);
  padding-right: var(--andes-spacing-80);
}

/* Badge pill */
.acqui-suporte__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--andes-spacing-8);
  padding: 2px var(--andes-spacing-16) 2px 2px;
  background: var(--andes-color-white-alpha-10);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  align-self: flex-start;
}

.acqui-suporte__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(80, 216, 83, 0.92) 12%, rgba(23, 100, 26, 0.92) 88%);
  overflow: clip;
}

.acqui-suporte__badge-icon img {
  width: 20px;
  height: 20px;
}

.acqui-suporte__badge-label {
  font-family: var(--font-proxima);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.4px;
  color: var(--andes-color-text-inverse);
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 2px;
}

/* Title */
.acqui-suporte__title {
  font-family: var(--font-proxima);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.88px;
  color: var(--andes-color-text-inverse);
}

/* Image module — absolute right on desktop */
.acqui-suporte__image-module {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 655px;
  height: calc(100% - 16px);
}

.acqui-suporte__image-wrapper {
  position: absolute;
  inset: 0;
  border-radius: var(--andes-border-radius-xl);
  overflow: clip;
}

.acqui-suporte__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Chat container */
.acqui-suporte__chat-container {
  position: absolute;
  top: 40px;
  left: 271px;
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: var(--andes-spacing-16);
}

/* Chat balloons */
.acqui-suporte__chat-balloon {
  display: flex;
  gap: var(--andes-spacing-16);
  align-items: flex-end;
  padding: var(--andes-spacing-16);
  width: 320px;
  background: rgba(40, 40, 52, 0.4);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.acqui-suporte__chat-balloon--user {
  border-radius: 20px 20px 4px 20px;
  align-self: flex-end;
}

.acqui-suporte__chat-balloon--agent {
  border-radius: 20px 20px 20px 4px;
  align-self: flex-start;
}

.acqui-suporte__chat-text {
  flex: 1 0 0;
  min-width: 1px;
  font-family: var(--font-proxima);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--andes-color-text-inverse);
}

.acqui-suporte__chat-meta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 2px 0;
}

.acqui-suporte__chat-time {
  font-family: var(--font-proxima);
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  color: var(--andes-color-text-inverse);
  text-align: center;
  width: 28px;
}

.acqui-suporte__chat-checks {
  width: 12px;
  height: 12px;
}

/* ═══════════════════════════════════════════════════
   M09 — ASSISTENTE IA (desktop)
   ═══════════════════════════════════════════════════ */
.acqui-assistente__inner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  border-radius: var(--andes-border-radius-xl);
}

.acqui-assistente__bg-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--andes-border-radius-xl);
  overflow: hidden;
}

.acqui-assistente__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acqui-assistente__title-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 41.67%;
  padding: var(--andes-spacing-40) 0 0 var(--andes-spacing-40);
}

.acqui-assistente__title {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -2.88px;
  color: var(--andes-color-text-inverse);
}

/* Phone mockup — ABSOLUTE right side */
.acqui-assistente__mockup-container {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 335px;
  height: 720px;
  clip-path: inset(1px round 36px);
}

.acqui-assistente__mockup-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Phone header */
.acqui-assistente__phone-header {
  width: 100%;
}

.acqui-assistente__phone-statusbar {
  height: 24px;
  background: var(--andes-color-background-primary);
}

.acqui-assistente__phone-header-slot {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}

.acqui-assistente__phone-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
}

.acqui-assistente__phone-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: #e9f1ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.acqui-assistente__phone-title {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: var(--andes-color-text-primary);
  text-align: center;
}

/* Chat area */
.acqui-assistente__chat-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 12px;
  align-items: flex-end;
  overflow: hidden;
}

.acqui-assistente__chat-user-msg {
  max-width: 245px;
  padding: 8px 12px;
  background: var(--andes-color-surface-secondary-idle);
  border-radius: 15.8px 15.8px 3.16px 15.8px;
  border: 0.79px solid var(--andes-color-border-primary);
  box-shadow: 0 0.79px 0.79px rgba(34,34,34,0.03), 0 1.58px 1.58px rgba(34,34,34,0.03), 0 4.74px 4.74px rgba(34,34,34,0.03);
}

.acqui-assistente__chat-user-msg p {
  font-size: 12px;
  line-height: 16px;
  color: var(--andes-color-text-primary);
}

.acqui-assistente__chat-ai-response {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: flex-start;
}

.acqui-assistente__chat-ai-text {
  font-size: 12px;
  line-height: 16px;
  color: var(--andes-color-text-primary);
  max-height: 32px;
  overflow: hidden;
}

.acqui-assistente__suggestions-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.acqui-assistente__suggestion-item {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 12px 16px;
  background: var(--andes-color-surface-secondary-idle);
  border-radius: var(--andes-border-radius-xl);
}

.acqui-assistente__suggestion-icon {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}

.acqui-assistente__suggestion-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acqui-assistente__suggestion-label {
  flex: 1;
  font-size: 12px;
  line-height: 16px;
  color: var(--andes-color-text-primary);
}

.acqui-assistente__suggestion-value {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--andes-color-text-primary);
  flex-shrink: 0;
}

/* Chat bar */
.acqui-assistente__chat-bar-area {
  padding: 32px 12px;
}

.acqui-assistente__chat-bar {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 8px;
  border: 1px solid var(--andes-color-border-primary);
  border-radius: 9999px;
  background: var(--andes-color-background-primary);
}

.acqui-assistente__chat-bar-left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.acqui-assistente__chat-bar-placeholder {
  font-size: 12px;
  line-height: 16px;
  color: #646587;
}

.acqui-assistente__chat-bar-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.acqui-assistente__chat-bar-btn--heart {
  background: var(--andes-color-surface-secondary-idle);
}

.acqui-assistente__chat-bar-btn--send {
  background: #434ce4;
}

/* ═══════════════════════════════════════════════════
   M10 — PREFOOTER / PERGUNTAS FREQUENTES (desktop)
   ═══════════════════════════════════════════════════ */
.acqui-prefooter__inner {
  background: var(--andes-color-background-primary);
  border-radius: var(--andes-border-radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--andes-spacing-80);
  height: 100vh;
  padding: var(--andes-spacing-80) var(--andes-spacing-40);
}

.acqui-prefooter__title {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -2.88px;
  color: var(--andes-color-text-primary);
  text-align: center;
}

.acqui-prefooter__faq-items {
  display: flex;
  flex-direction: column;
  gap: var(--andes-spacing-8);
  max-width: 928px;
  width: 100%;
}

.acqui-prefooter__dropdown-item {
  background: var(--andes-color-surface-secondary-idle);
  border-radius: var(--andes-border-radius-xl);
  list-style: none;
}

.acqui-prefooter__dropdown-item summary::-webkit-details-marker {
  display: none;
}

.acqui-prefooter__dropdown-item summary::marker {
  display: none;
  content: '';
}

.acqui-prefooter__dropdown-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: var(--andes-spacing-40);
  cursor: pointer;
}

.acqui-prefooter__dropdown-label {
  flex: 1;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--andes-color-text-primary);
}

.acqui-prefooter__dropdown-chevron {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

/* ═══════════════════════════════════════════════════
   M11 — DOWNLOAD (desktop)
   ═══════════════════════════════════════════════════ */
.acqui-download__wrapper {
  background: #ffe600;
  border-radius: var(--andes-border-radius-xl);
  display: flex;
  align-items: center;
  height: 100vh;
  padding: 8px;
}

.acqui-download__image-module {
  width: 655px;
  flex-shrink: 0;
  align-self: stretch;
}

.acqui-download__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--andes-border-radius-xl);
}

.acqui-download__content-right {
  flex-shrink: 0;
  width: 659px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.acqui-download__title-wrapper {
  padding: var(--andes-spacing-40) var(--andes-spacing-80) 0 var(--andes-spacing-40);
}

.acqui-download__title {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -2.88px;
  color: var(--andes-color-text-primary);
}

.acqui-download__cta-wrapper {
  padding: var(--andes-spacing-40);
}

.acqui-download__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 2px var(--andes-spacing-24);
  background: #434ce4;
  border-radius: 12px;
  text-decoration: none;
}

.acqui-download__cta-label {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════════════════
   M12 — FOOTER (desktop)
   ═══════════════════════════════════════════════════ */
.acqui-footer__inner {
  background: #282834;
  border-radius: var(--andes-border-radius-xl);
  padding: var(--andes-spacing-40);
  display: flex;
  flex-direction: column;
  gap: var(--andes-spacing-40);
  overflow: hidden;
}

.acqui-footer__logo img {
  display: block;
}

/* Nav columns — 4-col grid */
.acqui-footer__nav-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--andes-spacing-8);
}

.acqui-footer__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acqui-footer__column-title {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #9292b0;
}

.acqui-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acqui-footer__list a {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: white;
  text-decoration: none;
}

/* Bottom links */
.acqui-footer__bottom-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--andes-spacing-8);
  border-top: 1px solid #3f415f;
  padding-top: var(--andes-spacing-40);
}

.acqui-footer__bottom-links a {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: white;
  text-decoration: none;
}

/* Copyright */
.acqui-footer__copyright {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #3f415f;
  padding-top: var(--andes-spacing-40);
}

.acqui-footer__copyright-text {
  flex: 1;
  font-size: 12px;
  line-height: 16px;
  color: white;
}

.acqui-footer__social-media {
  display: flex;
  gap: var(--andes-spacing-8);
  align-items: center;
}

.acqui-footer__social-media a {
  display: flex;
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════════════════
   INTERACTIONS — Timing Tokens
   ═══════════════════════════════════════════════════ */
:root {
  --andes-transition-micro: 180ms;
  --andes-transition-default: 200ms;
  --andes-transition-slow: 250ms;
  --andes-transition-emphasis: 300ms;
  --andes-transition-carousel: 350ms;
  --andes-transition-entrance: 400ms;
}

/* ═══════════════════════════════════════════════════
   INTERACTIONS — Scroll Reveal Base (INT-36)
   ═══════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
[data-animate-stagger] > [data-animate-child] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
}

[data-animate-stagger].is-visible > [data-animate-child] {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   INTERACTIONS — Andes Buttons (INT-38)
   ═══════════════════════════════════════════════════ */
.acqui-hero__cta,
.acqui-cartao__cta,
.acqui-pagamentos__cta,
.acqui-download__cta {
  transition:
    box-shadow var(--andes-transition-slow) ease-out,
    background-color var(--andes-transition-default) ease-out;
  cursor: pointer;
}

.acqui-hero__cta:hover,
.acqui-cartao__cta:hover,
.acqui-pagamentos__cta:hover,
.acqui-download__cta:hover {
  filter: brightness(0.9);
  transition: background-color var(--andes-transition-default) ease-in;
}

.acqui-hero__cta:active,
.acqui-cartao__cta:active,
.acqui-pagamentos__cta:active,
.acqui-download__cta:active {
  filter: brightness(0.8);
  transition:
    box-shadow var(--andes-transition-slow) ease-out,
    background-color var(--andes-transition-default) ease-out;
}

.acqui-hero__cta:focus-visible,
.acqui-cartao__cta:focus-visible,
.acqui-pagamentos__cta:focus-visible,
.acqui-download__cta:focus-visible {
  outline: 2px solid #4850e5;
  outline-offset: 4px;
}

/* ═══════════════════════════════════════════════════
   INTERACTIONS — Hyper-links (INT-39)
   ═══════════════════════════════════════════════════ */
.acqui-faq__item-note a {
  transition: color var(--andes-transition-emphasis) ease-in-out;
}

.acqui-faq__item-note a:hover {
  color: var(--andes-color-blue-600, #1a5cc8);
}

.acqui-faq__item-note a:focus-visible {
  outline: 2px solid var(--andes-color-blue-500, #2968c8);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════
   INTERACTIONS — Footer Hovers (INT-34, INT-35)
   ═══════════════════════════════════════════════════ */
.acqui-footer__list a {
  transition: color var(--andes-transition-emphasis) ease-in-out;
}

.acqui-footer__list a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.acqui-footer__bottom-links a {
  transition: color var(--andes-transition-emphasis) ease-in-out;
}

.acqui-footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.acqui-footer__social-media a {
  transition: opacity var(--andes-transition-default) ease-out;
}

.acqui-footer__social-media a:hover {
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════
   INTERACTIONS — Hero (INT-01 to INT-05)
   ═══════════════════════════════════════════════════ */

/* INT-04: Taxes pills entrance */
.acqui-hero__taxes-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
}

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

/* INT-05: Header scroll behavior */
.acqui-hero__navbar {
  transition:
    background-color var(--andes-transition-emphasis) ease-out,
    backdrop-filter var(--andes-transition-emphasis) ease-out,
    -webkit-backdrop-filter var(--andes-transition-emphasis) ease-out;
}

.acqui-hero__navbar.is-scrolled {
  background: rgba(40, 40, 52, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* INT-02: Nav dropdown chevrons */
.acqui-hero__menu-chevron {
  transition: transform var(--andes-transition-default) ease-out;
}

.acqui-hero__menu-item[aria-expanded="true"] .acqui-hero__menu-chevron {
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════════════════
   INTERACTIONS — M02 Investimentos (INT-06 to INT-09)
   ═══════════════════════════════════════════════════ */

/* INT-08: Title entrance */
.acqui-investimentos__title {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
}

.acqui-investimentos.is-visible .acqui-investimentos__title {
  opacity: 1;
  transform: translateY(0);
}

/* INT-07: Subtitle fade */
.acqui-investimentos__subtitle {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
  transition-delay: 200ms;
}

.acqui-investimentos.is-visible .acqui-investimentos__subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* INT-06: Cards spread-from-center — JS-controlled stagger animation */
/* All cards start collapsed at center, scale small, invisible */
.acqui-investimentos__card {
  transform: translateX(var(--card-offset-x, 0));
  transition: transform 600ms cubic-bezier(.34, -.02, .2, 1.01);
}

/* Per-card offsets to collapse to center + z-index stacking (center on top) */
.acqui-investimentos__card:nth-child(1) { --card-offset-x: 456px; z-index: 1; }
.acqui-investimentos__card:nth-child(2) { --card-offset-x: 228px; z-index: 2; }
.acqui-investimentos__card:nth-child(3) { --card-offset-x: 0px; z-index: 3; }
.acqui-investimentos__card:nth-child(4) { --card-offset-x: -228px; z-index: 2; }
.acqui-investimentos__card:nth-child(5) { --card-offset-x: -456px; z-index: 1; }

/* JS adds .is-spread to each card individually with precise timing */
.acqui-investimentos__card.is-spread {
  transform: translateX(0);
}

/* INT-09: Card label glass effect — static (backdrop-blur already applied in base styles) */

/* ═══════════════════════════════════════════════════
   INTERACTIONS — M05 Pagamentos (INT-15 to INT-19)
   ═══════════════════════════════════════════════════ */

/* INT-17: Cards fade-in individual (via JS IntersectionObserver) */
.acqui-pagamentos__header,
.acqui-pagamentos__item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
}

.acqui-pagamentos__header.is-visible,
.acqui-pagamentos__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   INTERACTIONS — M03 Cartao (INT-10 to INT-12)
   ═══════════════════════════════════════════════════ */

/* INT-11: Title main fade-in */
.acqui-cartao__description {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
}

.acqui-cartao.is-visible .acqui-cartao__description {
  opacity: 1;
  transform: translateY(0);
}

/* INT-11: CTA fade-in with delay */
.acqui-cartao__cta {
  opacity: 0;
  transition: opacity var(--andes-transition-emphasis) ease-out;
  transition-delay: 200ms;
}

.acqui-cartao.is-visible .acqui-cartao__cta {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   INTERACTIONS — M04 Emprestimos (INT-13, INT-14)
   ═══════════════════════════════════════════════════ */

/* INT-14: List items stagger — translateX */
.acqui-emprestimos__bullet-item {
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
}

.acqui-emprestimos.is-visible .acqui-emprestimos__bullet-item {
  opacity: 1;
  transform: translateX(0);
}

.acqui-emprestimos.is-visible .acqui-emprestimos__bullet-item:nth-child(1) { transition-delay: 150ms; }
.acqui-emprestimos.is-visible .acqui-emprestimos__bullet-item:nth-child(2) { transition-delay: 300ms; }

/* ═══════════════════════════════════════════════════
   INTERACTIONS — M06 FAQ/Tarifas (INT-20, INT-21)
   ═══════════════════════════════════════════════════ */

/* INT-21: Items stagger */
.acqui-faq__item {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--andes-transition-emphasis) ease-out,
    transform var(--andes-transition-emphasis) ease-out;
}

.acqui-faq.is-visible .acqui-faq__item {
  opacity: 1;
  transform: translateY(0);
}

.acqui-faq.is-visible .acqui-faq__item:nth-child(1) { transition-delay: 100ms; }
.acqui-faq.is-visible .acqui-faq__item:nth-child(2) { transition-delay: 200ms; }
.acqui-faq.is-visible .acqui-faq__item:nth-child(3) { transition-delay: 300ms; }
.acqui-faq.is-visible .acqui-faq__item:nth-child(4) { transition-delay: 400ms; }
.acqui-faq.is-visible .acqui-faq__item:nth-child(5) { transition-delay: 500ms; }

/* INT-21: Textlink hover — arrow translateX */
.acqui-faq__item-link-icon {
  transition: transform var(--andes-transition-emphasis) cubic-bezier(.4, 0, .2, 1);
}

.acqui-faq__item-link:hover .acqui-faq__item-link-icon {
  transform: translateX(6px);
}

/* ═══════════════════════════════════════════════════
   INTERACTIONS — M07 Seguranca (INT-22, INT-23)
   ═══════════════════════════════════════════════════ */

/* INT-23: Feature items stagger */
.acqui-seguranca__feature-item {
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
}

.acqui-seguranca.is-visible .acqui-seguranca__feature-item {
  opacity: 1;
  transform: translateX(0);
}

.acqui-seguranca.is-visible .acqui-seguranca__feature-item:nth-child(1) { transition-delay: 150ms; }
.acqui-seguranca.is-visible .acqui-seguranca__feature-item:nth-child(2) { transition-delay: 300ms; }

/* ═══════════════════════════════════════════════════
   INTERACTIONS — M08 Suporte (INT-24 to INT-26)
   ═══════════════════════════════════════════════════ */

/* INT-24: Badge entrance */
.acqui-suporte__badge {
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity var(--andes-transition-emphasis) ease-out,
    transform var(--andes-transition-emphasis) ease-out;
}

.acqui-suporte.is-visible .acqui-suporte__badge {
  opacity: 1;
  transform: translateY(0);
}

/* INT-26: Title fade-in */
.acqui-suporte__title {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
  transition-delay: 100ms;
}

.acqui-suporte.is-visible .acqui-suporte__title {
  opacity: 1;
  transform: translateY(0);
}

/* INT-25: Chat balloons — sequential entrance */
.acqui-suporte__chat-balloon--user {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
  transition-delay: 200ms;
}

.acqui-suporte.is-visible .acqui-suporte__chat-balloon--user {
  opacity: 1;
  transform: translateX(0);
}

.acqui-suporte__chat-balloon--agent {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
  transition-delay: 500ms;
}

.acqui-suporte.is-visible .acqui-suporte__chat-balloon--agent {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════
   INTERACTIONS — M09 Assistente IA (INT-27 to INT-30)
   ═══════════════════════════════════════════════════ */

/* INT-30: Title entrance */
.acqui-assistente__title {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--andes-transition-entrance) ease-out,
    transform var(--andes-transition-entrance) ease-out;
}

.acqui-assistente.is-visible .acqui-assistente__title {
  opacity: 1;
  transform: translateY(0);
}

/* INT-27: Phone mockup entrance — scale up */
.acqui-assistente__mockup-container {
  opacity: 0;
  transform: translateY(-50%) scale(0.9);
  transition:
    opacity 500ms ease-out,
    transform 500ms ease-out;
  transition-delay: 200ms;
}

.acqui-assistente.is-visible .acqui-assistente__mockup-container {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* Mobile: override transform since mockup uses translateX(-50%) */
@media (max-width: 768px) {
  .acqui-assistente__mockup-container {
    transform: translateX(-50%) scale(0.9);
  }

  .acqui-assistente.is-visible .acqui-assistente__mockup-container {
    transform: translateX(-50%) scale(1);
  }
}

/* INT-28: Chat messages — typing animation */
.acqui-assistente__chat-user-msg {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--andes-transition-emphasis) ease-out,
    transform var(--andes-transition-emphasis) ease-out;
  transition-delay: 600ms;
}

.acqui-assistente.is-visible .acqui-assistente__chat-user-msg {
  opacity: 1;
  transform: translateY(0);
}

.acqui-assistente__chat-ai-response {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--andes-transition-emphasis) ease-out,
    transform var(--andes-transition-emphasis) ease-out;
  transition-delay: 900ms;
}

.acqui-assistente.is-visible .acqui-assistente__chat-ai-response {
  opacity: 1;
  transform: translateY(0);
}

/* INT-29: Suggestion items stagger */
.acqui-assistente__suggestion-item {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--andes-transition-emphasis) ease-out,
    transform var(--andes-transition-emphasis) ease-out;
}

.acqui-assistente.is-visible .acqui-assistente__suggestion-item:nth-child(1) {
  transition-delay: 1100ms;
}

.acqui-assistente.is-visible .acqui-assistente__suggestion-item:nth-child(2) {
  transition-delay: 1200ms;
}

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

/* ═══════════════════════════════════════════════════
   INTERACTIONS — M10 Prefooter Accordion (INT-31, INT-32)
   ═══════════════════════════════════════════════════ */

/* INT-31: Chevron rotation on open */
.acqui-prefooter__dropdown-chevron {
  transition: transform var(--andes-transition-default) ease-out;
  display: inline-flex;
}

.acqui-prefooter__dropdown-item[open] .acqui-prefooter__dropdown-chevron {
  transform: rotate(180deg);
}

/* INT-31: Summary focus */
.acqui-prefooter__dropdown-summary:focus-visible {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 3px var(--andes-color-blue-600, #1a5cc8),
    0 0 0 5px rgba(65, 137, 230, 0.3);
  border-radius: var(--andes-border-radius-xl);
  outline: none;
}

/* ═══════════════════════════════════════════════════
   ACCESSIBILITY — Reduced motion
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Mobile (360px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hide scrollbar on mobile (simulates overlay scrollbar) */
  html {
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }

  .andes-landings-container--fixed {
    padding-left: var(--andes-spacing-16);
    padding-right: var(--andes-spacing-16);
  }

  .andes-landings-grid {
    grid-template-columns: 1fr;
    gap: var(--andes-spacing-16);
  }

  /* --- Reset desktop 100vh for mobile --- */
  .acqui-hero__inner,
  .acqui-investimentos,
  .acqui-cartao__inner,
  .acqui-emprestimos__inner,
  .acqui-pagamentos__header,
  .acqui-pagamentos__item,
  .acqui-faq__content,
  .acqui-seguranca__inner,
  .acqui-suporte__inner,
  .acqui-suporte__text-content,
  .acqui-assistente__inner,
  .acqui-assistente__bg-wrapper,
  .acqui-prefooter__inner,
  .acqui-download__wrapper {
    min-height: auto;
  }

  /* --- M01 Hero Mobile --- */
  .acqui-hero__inner {
    height: 784px;
    max-height: 784px;
  }

  .acqui-hero__bg--desktop {
    display: none;
  }

  .acqui-hero__bg--mobile {
    display: block;
  }

  /* Navbar mobile */
  .acqui-hero__navbar {
    padding: var(--andes-spacing-16);
  }

  .acqui-hero__logo {
    width: 56px;
    height: 56px;
  }

  .acqui-hero__logo-img--desktop {
    display: none;
  }

  .acqui-hero__logo-symbol--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--andes-color-brand-fill-loud);
    border-radius: var(--andes-border-radius-xl);
    padding: var(--andes-spacing-12);
  }

  .acqui-hero__menu--desktop {
    display: none;
  }

  .acqui-hero__hamburger--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--andes-color-black-alpha-70);
    backdrop-filter: blur(var(--andes-glass-blur-default));
    -webkit-backdrop-filter: blur(var(--andes-glass-blur-default));
    border-radius: var(--andes-border-radius-actions-inputs);
  }

  /* Spacer mobile — push content to bottom */
  .acqui-hero__spacer {
    flex: 1 0 0;
    min-height: 280px;
    max-height: none;
  }

  /* Title mobile */
  .acqui-hero__title-wrapper {
    padding: 0 24px;
    margin-bottom: 16px;
  }

  .acqui-hero__title {
    font-size: 40px;
    letter-spacing: -1.6px;
    max-width: 240px;
    line-height: 1;
  }

  /* Bottom mobile */
  .acqui-hero__bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px;
    gap: 0;
    overflow: visible;
  }

  .acqui-hero__cta-wrapper {
    padding: 24px;
    order: 2;
  }

  .acqui-hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 2px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    white-space: nowrap;
  }

  .acqui-hero__taxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    width: 100%;
    order: 1;
  }

  .acqui-hero__taxes-item {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    padding: 0;
    width: 100%;
  }

  .acqui-hero__taxes-label {
    flex: 1 0 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0;
    padding-bottom: 4px;
    padding-top: 0;
  }

  .acqui-hero__taxes-value {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    padding: 0;
  }

  .acqui-hero__taxes-percentage {
    font-family: var(--font-proxima);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.48px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .acqui-hero__taxes-cdi {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  /* Navbar stays transparent on mobile */
  .acqui-hero__navbar.is-scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* FAB hidden on mobile */
  .acqui-hero__fab {
    display: none;
  }

  /* --- M02 Investimentos Mobile --- */
  .acqui-investimentos {
    height: 800px;
    padding: 0;
    gap: 0;
    overflow: visible;
    justify-content: flex-start;
  }

  .acqui-investimentos__title {
    font-size: 40px;
    letter-spacing: -1.6px;
    text-align: center;
    margin-bottom: 0;
    margin-top: 48px;
    padding: 0 var(--andes-spacing-24);
  }

  .acqui-investimentos__cards {
    width: 100%;
    overflow: visible;
    padding: 0;
    flex: 1 0 0;
    display: flex;
    align-items: center;
  }

  .acqui-investimentos__cards-track {
    position: static;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: auto;
    height: auto;
    max-width: none;
    gap: var(--andes-spacing-16);
    /* Center first card: (390 - 276) / 2 = 57px */
    padding: 0 57px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 57px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .acqui-investimentos__cards-track::-webkit-scrollbar {
    display: none;
  }

  .acqui-investimentos__card {
    width: 276px;
    min-width: 276px;
    height: 276px;
    opacity: 1;
    transform: none !important;
    transition: none;
    scroll-snap-align: start;
    border-radius: 20px;
  }

  /* Card reorder is done via JS (DOM reorder) because CSS order
     does not work with scroll containers — scroll origin stays
     at the first DOM child regardless of visual order. */

  .acqui-investimentos__card-img {
    border-radius: 20px;
  }

  .acqui-investimentos__card-label {
    height: 88px;
    border-radius: 0 0 20px 20px;
  }

  .acqui-investimentos__subtitle {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 48px;
    padding: 0 var(--andes-spacing-24);
  }

  /* --- M03 Cartao Mobile --- */
  .acqui-cartao__inner {
    flex-direction: column;
    align-items: center;
    height: 775px;
    border-radius: var(--andes-border-radius-xl);
  }

  /* Card asset — centered in the middle */
  .acqui-cartao__card-asset {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 480px;
    border-radius: 0;
  }

  .acqui-cartao__video {
    border-radius: var(--andes-border-radius-xl);
  }

  /* BG overlay — hide desktop version, use pseudo-elements on inner */
  .acqui-cartao__bg-overlay {
    display: none;
  }

  .acqui-cartao__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 252px;
    background: linear-gradient(
      to bottom,
      #020202 67.387%,
      rgba(2, 2, 2, 0.73) 78.557%,
      rgba(1, 1, 1, 0) 100%
    );
    border-radius: var(--andes-border-radius-xl) var(--andes-border-radius-xl) 0 0;
    z-index: 1;
  }

  .acqui-cartao__inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 392px;
    background: linear-gradient(
      to top,
      #020202 67.387%,
      rgba(2, 2, 2, 0.73) 78.557%,
      rgba(1, 1, 1, 0) 100%
    );
    border-radius: 0 0 var(--andes-border-radius-xl) var(--andes-border-radius-xl);
    z-index: 1;
  }

  /* Left spacer — hidden on mobile */
  .acqui-cartao__left-spacer {
    display: none;
  }

  /* Content wrapper — centered, vertical stack */
  .acqui-cartao__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    flex: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 46px var(--andes-spacing-24) var(--andes-spacing-40);
  }

  /* Title — top area */
  .acqui-cartao__title {
    font-size: 32px;
    letter-spacing: -1.28px;
    width: 282px;
    text-align: center;
  }

  /* Mid spacer — fill remaining space */
  .acqui-cartao__mid-spacer {
    flex: 1 0 0;
    height: auto;
  }

  /* Description — bottom area */
  .acqui-cartao__description {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.48px;
    width: 293px;
    text-align: center;
  }

  /* CTA spacer */
  .acqui-cartao__cta-spacer {
    height: var(--andes-spacing-16);
  }

  /* CTA button — auto width on mobile */
  .acqui-cartao__cta {
    width: auto;
  }

  /* --- M04 Emprestimos Mobile --- */
  .acqui-emprestimos__inner {
    height: 430px;
    padding-bottom: 0;
  }

  /* Gradient overlay — visible on mobile */
  .acqui-emprestimos__gradient {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 117px;
    background: linear-gradient(
      to bottom,
      rgba(40, 40, 52, 0.48) 0%,
      rgba(40, 40, 52, 0) 100%
    );
    z-index: 1;
    border-radius: var(--andes-border-radius-xl) var(--andes-border-radius-xl) 0 0;
  }

  /* Title area — absolute positioned */
  .acqui-emprestimos__title-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 165px;
    padding: var(--andes-spacing-24);
    z-index: 2;
  }

  .acqui-emprestimos__title {
    font-size: 32px;
    letter-spacing: -1.28px;
    width: 100%;
  }

  /* Spacer — hidden on mobile */
  .acqui-emprestimos__spacer {
    display: none;
  }

  /* Bullet list — absolute bottom */
  .acqui-emprestimos__bullets {
    position: absolute;
    bottom: var(--andes-spacing-24);
    left: var(--andes-spacing-24);
    right: var(--andes-spacing-24);
    padding-left: 0;
    gap: var(--andes-spacing-24);
    z-index: 2;
  }

  .acqui-emprestimos__bullet-item {
    gap: var(--andes-spacing-8);
  }

  .acqui-emprestimos__bullet-icon {
    width: 32px;
    height: 32px;
  }

  .acqui-emprestimos__bullet-text {
    font-size: 16px;
    line-height: 20px;
  }

  /* --- M05 Pagamentos Mobile --- */
  .acqui-pagamentos {
    padding: 0;
  }

  .acqui-pagamentos__inner {
    flex-direction: column;
    gap: 0;
  }

  /* Hide photo on mobile */
  .acqui-pagamentos__image-left {
    display: none;
  }

  /* Content column — full width, gap 7px matches Figma */
  .acqui-pagamentos__content-right {
    width: 100%;
    gap: 7px;
  }

  /* Header — title card with lateral margin */
  .acqui-pagamentos__header {
    height: 206px;
    margin-left: var(--andes-spacing-16);
    margin-right: var(--andes-spacing-16);
  }

  .acqui-pagamentos__header-title {
    padding: var(--andes-spacing-24);
    padding-right: var(--andes-spacing-24);
  }

  .acqui-pagamentos__title {
    font-size: 32px;
    letter-spacing: -1.28px;
  }

  .acqui-pagamentos__header-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 72px;
    padding: var(--andes-spacing-24);
  }

  .acqui-pagamentos__cta-label--desktop {
    display: none;
  }

  .acqui-pagamentos__cta-label--mobile {
    display: inline;
  }

  /* Items wrapper — horizontal carousel on mobile (free scroll, no snap) */
  .acqui-pagamentos__items {
    flex-direction: row;
    gap: var(--andes-spacing-8);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: var(--andes-spacing-16);
    padding-right: var(--andes-spacing-16);
    padding-top: 0;
    padding-bottom: 0;
  }

  .acqui-pagamentos__items::-webkit-scrollbar {
    display: none;
  }

  .acqui-pagamentos__item {
    flex-shrink: 0;
    width: 288px;
    height: 344px;
  }

  .acqui-pagamentos__item-media {
    padding: var(--andes-spacing-24);
  }

  .acqui-pagamentos__item-img {
    border-radius: 0;
    object-fit: contain;
  }

  .acqui-pagamentos__item-text {
    padding: var(--andes-spacing-24);
    padding-right: var(--andes-spacing-40);
  }

  .acqui-pagamentos__item-title {
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 1.15;
  }

  /* --- M06 FAQ/Tarifas Mobile --- */
  .acqui-faq {
    padding: 0;
  }

  .acqui-faq__content {
    height: auto;
    gap: 48px;
    padding: 72px var(--andes-spacing-16);
    overflow: clip;
  }

  .acqui-faq__title {
    font-size: 40px;
    letter-spacing: -1.6px;
  }

  .acqui-faq__items {
    max-width: 100%;
  }

  .acqui-faq__item {
    padding: var(--andes-spacing-24);
  }

  .acqui-faq__item-label {
    font-size: 16px;
    line-height: 18px;
  }

  .acqui-faq__item-value {
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: -0.32px;
  }

  .acqui-faq__item-note {
    font-size: 12px;
    line-height: 15px;
  }

  /* --- M07 Seguranca Mobile --- */
  .acqui-seguranca__inner {
    height: auto;
    aspect-ratio: 344 / 430;
    padding-bottom: 0;
  }

  .acqui-seguranca__bg--desktop {
    display: none;
  }

  .acqui-seguranca__bg--mobile {
    display: block;
  }

  /* Title — absolute top */
  .acqui-seguranca__title-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--andes-spacing-24);
    z-index: 1;
  }

  .acqui-seguranca__title {
    font-size: 32px;
    letter-spacing: -1.28px;
  }

  /* Spacer hidden on mobile */
  .acqui-seguranca__spacer {
    display: none;
  }

  /* Features — absolute bottom */
  .acqui-seguranca__features {
    position: absolute;
    bottom: var(--andes-spacing-24);
    left: var(--andes-spacing-24);
    right: var(--andes-spacing-24);
    padding-left: 0;
    gap: var(--andes-spacing-24);
    z-index: 1;
  }

  .acqui-seguranca__feature-item {
    gap: var(--andes-spacing-8);
  }

  .acqui-seguranca__feature-icon {
    width: 32px;
    height: 32px;
  }

  .acqui-seguranca__feature-text {
    font-size: 16px;
    line-height: 20px;
  }

  /* --- M08 Suporte Mobile --- */
  .acqui-suporte {
    padding: var(--andes-spacing-8);
    padding-bottom: 24px;
  }

  .acqui-suporte__inner {
    height: 720px;
    display: flex;
    flex-direction: column;
    background: var(--andes-color-text-primary);
    border-radius: var(--andes-border-radius-xl);
    overflow: clip;
    position: relative;
  }

  .acqui-suporte__text-content {
    height: auto;
    background: transparent;
    border-radius: 0;
    flex-shrink: 0;
  }

  .acqui-suporte__title-badge {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    padding: var(--andes-spacing-24);
  }

  .acqui-suporte__badge-label {
    font-size: 14px;
    letter-spacing: 0;
  }

  .acqui-suporte__badge-icon {
    width: 32px;
    height: 32px;
  }

  .acqui-suporte__title {
    font-size: 32px;
    letter-spacing: -1.28px;
    width: 274px;
  }

  /* Image module — flows in the dark container */
  .acqui-suporte__image-module {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 492px;
    flex-shrink: 0;
  }

  .acqui-suporte__image-wrapper {
    border-radius: var(--andes-border-radius-xl);
    height: 484px;
    width: 100%;
  }

  .acqui-suporte__photo {
    object-position: center center;
  }

  /* Chat container — positioned on mobile */
  .acqui-suporte__chat-container {
    top: 62px;
    left: 24px;
    right: auto;
    transform: none;
    width: 280px;
    gap: var(--andes-spacing-12);
  }

  .acqui-suporte__chat-balloon {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .acqui-suporte__chat-balloon--user {
    width: 266px;
    align-self: flex-end;
  }

  .acqui-suporte__chat-balloon--agent {
    width: 280px;
    align-self: flex-start;
  }

  .acqui-suporte__chat-text {
    font-size: 14px;
    line-height: 16px;
  }

  /* ═══════════════════════════════════════════
     M09 — ASSISTENTE IA (mobile)
     ═══════════════════════════════════════════ */
  .acqui-assistente__inner {
    height: 696px;
    border-radius: var(--andes-border-radius-xl);
  }

  .acqui-assistente__bg-wrapper {
    height: 696px;
  }

  .acqui-assistente__title-wrapper {
    right: 0;
    padding: var(--andes-spacing-24) var(--andes-spacing-24) 0 var(--andes-spacing-24);
  }

  .acqui-assistente__title {
    font-size: 32px;
    letter-spacing: -1.28px;
  }

  .acqui-assistente__mockup-container {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 545px;
  }

  .acqui-assistente__phone-screen {
    width: 218px;
    height: 484px;
    border-radius: 18px;
  }

  .acqui-assistente__phone-frame {
    width: 280px;
    height: 545px;
  }

  .acqui-assistente__phone-statusbar {
    height: 18px;
  }

  .acqui-assistente__phone-header-slot {
    height: 48px;
    padding: 8px 12px;
  }

  .acqui-assistente__phone-title {
    font-size: 12px;
  }

  .acqui-assistente__phone-btn {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .acqui-assistente__phone-btn img {
    width: 12px;
    height: 12px;
  }

  .acqui-assistente__chat-area {
    padding: 16px 8px;
    gap: 12px;
  }

  .acqui-assistente__chat-user-msg {
    max-width: 190px;
  }

  .acqui-assistente__chat-user-msg p {
    font-size: 10px;
    line-height: 14px;
  }

  .acqui-assistente__chat-ai-text {
    font-size: 10px;
    line-height: 14px;
  }

  .acqui-assistente__suggestion-item {
    height: 44px;
    padding: 8px 12px;
    gap: 6px;
  }

  .acqui-assistente__suggestion-icon {
    width: 24px;
    height: 24px;
  }

  .acqui-assistente__suggestion-label {
    font-size: 10px;
  }

  .acqui-assistente__suggestion-value {
    font-size: 10px;
  }

  .acqui-assistente__chat-bar-area {
    padding: 16px 8px;
  }

  .acqui-assistente__chat-bar {
    height: 44px;
    padding: 6px;
  }

  .acqui-assistente__chat-bar-btn {
    width: 32px;
    height: 32px;
  }

  .acqui-assistente__chat-bar-btn img {
    width: 16px;
    height: 16px;
  }

  .acqui-assistente__chat-bar-placeholder {
    font-size: 10px;
  }

  /* ═══════════════════════════════════════════
     M10 — PREFOOTER (mobile)
     ═══════════════════════════════════════════ */
  .acqui-prefooter__inner {
    height: auto;
    gap: var(--andes-spacing-40);
    padding: 80px var(--andes-spacing-24) var(--andes-spacing-40);
    justify-content: flex-start;
    align-items: stretch;
  }

  .acqui-prefooter__title {
    font-size: 40px;
    letter-spacing: -1.6px;
  }

  .acqui-prefooter__dropdown-summary {
    padding: var(--andes-spacing-24);
    gap: var(--andes-spacing-16);
  }

  .acqui-prefooter__dropdown-label {
    font-size: 14px;
    line-height: 18px;
  }

  .acqui-prefooter__dropdown-chevron {
    width: 40px;
    height: 40px;
  }

  /* ═══════════════════════════════════════════
     M11 — DOWNLOAD (mobile)
     ═══════════════════════════════════════════ */
  .acqui-download__wrapper {
    height: auto;
    flex-direction: column-reverse;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
  }

  .acqui-download__image-module {
    width: 100%;
    height: 442px;
    overflow: hidden;
  }

  .acqui-download__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }

  .acqui-download__content-right {
    width: 100%;
    height: auto;
    gap: var(--andes-spacing-24);
    padding: var(--andes-spacing-24);
  }

  .acqui-download__title-wrapper {
    padding: 0;
  }

  .acqui-download__title {
    font-size: 32px;
    letter-spacing: -1.28px;
  }

  .acqui-download__cta-wrapper {
    padding: 0;
  }

  /* ═══════════════════════════════════════════
     M12 — FOOTER (mobile)
     ═══════════════════════════════════════════ */
  .acqui-footer__inner {
    padding: var(--andes-spacing-24);
    gap: var(--andes-spacing-32);
  }

  .acqui-footer__nav-columns {
    grid-template-columns: 1fr;
    gap: var(--andes-spacing-32);
  }

  .acqui-footer__column {
    gap: var(--andes-spacing-16);
  }

  .acqui-footer__list {
    gap: var(--andes-spacing-16);
  }

  .acqui-footer__column-title {
    font-size: 12px;
  }

  .acqui-footer__list a {
    font-size: 12px;
    line-height: 16px;
  }

  .acqui-footer__bottom-links {
    grid-template-columns: 1fr;
    gap: var(--andes-spacing-16);
    padding-top: var(--andes-spacing-24);
  }

  .acqui-footer__bottom-links a {
    font-size: 12px;
    line-height: 16px;
  }

  .acqui-footer__copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--andes-spacing-16);
    padding-top: var(--andes-spacing-24);
  }

  .acqui-footer__copyright-text {
    font-size: 10px;
    line-height: 14px;
  }
}
