:root {
  --v2-pink: #6e3cff;
  --v2-pink-hover: #8b5cff;
  --v2-dark: #0b0d15;
  --v2-dark-2: #14191e;
  --v2-ink: #14191e;
  --v2-muted: #99b0bb;
  --v2-muted-2: #5a6772;
  --v2-muted-3: #49585f;
  --v2-text: #f1f1ff;
  --v2-lilac: #f1f1ff;
  --v2-purple: #6e3cff;
  --v2-violet: #7549f8;
  --v2-green: #24c67f;
  --v2-card-lilac: #c7c3fb;
  --v2-max: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body.v2-body {
  margin: 0;
  background: #fff;
  color: var(--v2-ink);
  font-family: Rubik, sans-serif;
}

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

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

button,
select {
  font-family: inherit;
}

.v2-wrap {
  width: 100%;
  overflow-x: hidden;
}

.v2-container {
  width: 100%;
  max-width: var(--v2-max);
  margin: 0 auto;
  padding: 0 20px;
}

.v2-btn {
  align-items: center;
  justify-content: center;
  display: inline-flex;
  border-radius: 50px;
  border: 2px solid var(--v2-pink);
  background: var(--v2-pink);
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 15px;
  padding: 12px 18px;
  min-height: 40px;
  cursor: pointer;
  transition: all .3s ease;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(110, 60, 255, .45);
}

.v2-btn:hover {
  background: var(--v2-pink-hover);
  border-color: var(--v2-pink-hover);
  color: #fff;
  box-shadow: 0 10px 28px rgba(139, 92, 255, .55);
  transform: translateY(-1px);
}

.v2-btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--v2-text);
  box-shadow: none;
}

.v2-btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: transparent;
}

.v2-btn--outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}

.v2-btn--outline:hover {
  background: #fff;
  color: var(--v2-pink);
  border-color: #fff;
  box-shadow: none;
}

.v2-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.v2-title {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 125%;
  margin: 0;
}

.v2-title--dark {
  color: var(--v2-ink);
  font-size: 32px;
  text-align: center;
}

.v2-title--light {
  color: var(--v2-text);
  font-size: 32px;
  text-align: center;
}

.v2-title span.gradient-whats {
  background: linear-gradient(90deg, #2bd66a, #2ba7e0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
  .v2-title span.gradient-whats {
    animation: v2-shimmer 6s linear 1.5s infinite;
    background: linear-gradient(90deg, #2bd66a, #2ba7e0 50%, #2bd66a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
  }
}

@keyframes v2-shimmer {
  to { background-position: 200% 0; }
}

/* Header */
.v2-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  background: #0b0d15;
  transition: background .3s ease, box-shadow .3s ease;
}

.v2-header.is-fixed {
  background: rgba(11, 13, 21, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, .12);
}

.v2-header__inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.v2-logo img {
  height: 36px;
  width: auto;
}

.v2-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
}

.v2-nav a {
  color: var(--v2-text);
  font-weight: 500;
  line-height: 1.5;
}

.v2-nav a:hover {
  opacity: .8;
}

.v2-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.v2-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.v2-nav-mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  .v2-nav,
  .v2-header__actions .v2-btn--ghost {
    display: none;
  }

  .v2-menu-toggle {
    display: block;
  }

  .v2-nav-mobile.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 50;
    background: #0b0d15;
    flex-direction: column;
    padding: 28px 24px;
    gap: 18px;
  }

  .v2-nav-mobile a {
    color: var(--v2-text);
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 500;
  }

  .v2-nav-mobile__close {
    align-self: flex-end;
    background: none;
    border: 0;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
  }
}

/* Hero */
.v2-hero {
  background-color: var(--v2-dark);
  background-image: radial-gradient(circle at 78% 50%, rgba(137, 5, 201, .25), rgba(11, 13, 21, 0) 42%);
  background-repeat: no-repeat;
  padding: 20px 0 0;
  overflow: hidden;
}

.v2-hero__inner {
  display: flex;
  align-items: stretch;
  margin: 0 auto;
  max-width: var(--v2-max);
  min-height: 380px;
  padding: 0 20px;
  position: relative;
  width: 100%;
}

.v2-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 660px;
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}

.v2-hero__label {
  color: var(--v2-muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.v2-hero h1 {
  color: var(--v2-text);
  font-family: Poppins, sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 125%;
  margin: 0 0 26px;
  max-width: 660px;
}

.v2-hero__text {
  color: var(--v2-muted);
  font-size: 17px;
  line-height: 160%;
  max-width: 540px;
  margin: 0;
}

.v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  gap: 12px;
}

.v2-hero__media {
  align-items: flex-end;
  display: flex;
  max-width: 500px;
  position: relative;
}

.v2-hero__media::before {
  content: "";
  background: linear-gradient(180deg, #7549f8, #24c67f 60%, #24c67f);
  border-radius: 50%;
  bottom: -20%;
  filter: blur(80px);
  height: 100%;
  left: 0;
  margin: 0 auto;
  opacity: .6;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: 100%;
}

.v2-hero__banner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.v2-hero__icons {
  position: absolute;
  left: 36%;
  top: 9%;
  width: 40%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .v2-hero__label,
  .v2-hero h1,
  .v2-hero__text,
  .v2-hero__actions {
    animation: v2-rise .7s cubic-bezier(.22, 1, .36, 1) backwards;
  }

  .v2-hero__label { animation-delay: .1s; }
  .v2-hero h1 { animation-delay: .22s; }
  .v2-hero__text { animation-delay: .34s; }
  .v2-hero__actions { animation-delay: .48s; }

  .v2-hero__banner {
    animation: v2-banner-in .8s cubic-bezier(.22, 1, .36, 1) .15s backwards;
    transform-origin: bottom center;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  }

  .v2-hero__media:hover .v2-hero__banner {
    transform: scale(.98);
  }

  .v2-hero__icons {
    animation: v2-icons-in .9s cubic-bezier(.34, 1.56, .64, 1) .3s backwards,
      v2-icons-float 5s ease-in-out 1.2s infinite;
  }

  .v2-hero__media::before {
    animation: v2-glow 6s ease-in-out 1.4s infinite;
  }
}

@keyframes v2-rise {
  0% { opacity: 0; transform: translateY(28px); }
}

@keyframes v2-banner-in {
  0% { opacity: 0; transform: translateY(40px); }
}

@keyframes v2-icons-in {
  0% { opacity: 0; transform: translateY(24px) scale(.7); }
}

@keyframes v2-icons-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}

@keyframes v2-glow {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: .85; transform: scale(1.06); }
}

@media screen and (max-width: 1024px) {
  .v2-hero { padding: 12px 0 0; }
  .v2-hero__inner {
    flex-direction: column;
    min-height: auto;
    padding: 0;
  }
  .v2-hero__content {
    max-width: 100%;
    padding: 24px 20px 0;
    width: 100%;
  }
  .v2-hero__media {
    margin: 0 auto;
    max-width: 90%;
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .v2-hero__content { align-items: center; }
  .v2-hero__label,
  .v2-hero h1,
  .v2-hero__text { text-align: center; }
  .v2-hero h1 { font-size: 32px; }
  .v2-hero__text { font-size: 16px; }
  .v2-hero__actions { justify-content: center; }
}

.v2-video {
  background: var(--v2-dark);
  padding: 24px 20px 80px;
}

.v2-video__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.v2-video__inner h2 {
  color: var(--v2-text);
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 125%;
  margin: 0 0 12px;
}

.v2-video__inner p {
  color: var(--v2-muted);
  font-size: 16px;
  line-height: 160%;
  margin: 0 auto 28px;
  max-width: 560px;
}

.v2-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(110, 60, 255, .4);
}

.v2-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 767px) {
  .v2-video__inner h2 { font-size: 22px; }
  .v2-video { padding: 16px 16px 56px; }
}

.v2-links {
  background: #fff;
  padding: 72px 0;
}

.v2-links .v2-title {
  margin-bottom: 12px;
}

.v2-links__intro {
  color: var(--v2-muted-2);
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.v2-links__group {
  margin-bottom: 28px;
}

.v2-links__label {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--v2-muted-2);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 12px;
  text-align: center;
}

.v2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.v2-chip {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f1f1ff;
  border: 1px solid #d6d3f5;
  color: var(--v2-ink);
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.v2-chip:hover {
  background: var(--v2-pink);
  color: #fff;
  border-color: var(--v2-pink);
}

.v2-links__more {
  text-align: center;
  margin-top: 8px;
}

.v2-links__more a {
  color: var(--v2-pink);
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.v2-links__more a:hover {
  text-decoration: underline;
}

/* Features carousel */
.v2-section {
  padding: 80px 0;
}

.v2-section--lilac {
  background: var(--v2-lilac);
}

.v2-section--white {
  background: #fff;
}

.v2-section--dark {
  background: var(--v2-dark);
}

.v2-features .v2-title {
  margin-bottom: 48px;
}

.v2-glide {
  position: relative;
  padding: 0 64px;
}

.v2-glide__track {
  overflow: hidden;
}

.v2-glide__slides {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.v2-card-whats {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 0 0 calc(33.333% - 14px);
  padding: 10px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.v2-card-whats:hover {
  box-shadow: 0 16px 16px -16px rgba(60, 55, 160, .4);
  transform: translateY(-6px);
}

.v2-card-whats__image {
  align-items: center;
  aspect-ratio: 16 / 11;
  background: var(--v2-card-lilac);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.v2-card-whats__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.v2-card-whats:hover .v2-card-whats__image img {
  transform: scale(1.06);
}

.v2-card-whats__content {
  padding: 25px 15px 25px 10px;
}

.v2-card-whats__title {
  color: var(--v2-ink);
  font-family: Poppins, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 130%;
  margin: 0 0 10px;
}

.v2-card-whats__text {
  color: var(--v2-muted-2);
  font-size: 12px;
  font-weight: 300;
  line-height: 160%;
  margin: 0;
}

.v2-glide__arrows .arrow {
  align-items: center;
  background: #fff;
  border: 1px solid #d6d3f5;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
}

.v2-glide__arrows .arrow:hover {
  background: #f1f1ff;
  border-color: #b9b3f0;
}

.v2-glide__arrows .arrow--left { left: 0; }
.v2-glide__arrows .arrow--right { right: 0; }

.v2-glide__arrows .arrow svg {
  width: 16px;
  height: 16px;
  fill: #14191e;
}

.v2-bullets {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.v2-bullets .bullet {
  background: #c7c3fb;
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  height: 8px;
  padding: 0;
  width: 8px;
}

.v2-bullets .bullet.is-active {
  background: var(--v2-pink);
  width: 40px;
}

.v2-features__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  .v2-features .v2-title { margin-bottom: 32px; font-size: 28px; }
  .v2-glide { padding: 0; }
  .v2-card-whats { flex: 0 0 100%; }
  .v2-glide__arrows {
    position: static;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }
  .v2-glide__arrows .arrow {
    position: static;
    transform: none;
  }
}

/* Beyond the app */
.v2-wba {
  padding: 80px 0;
}

.v2-wba .v2-title {
  margin-bottom: 40px;
}

.v2-wba__stage {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
}

.v2-wba__col {
  display: flex;
  flex-direction: column;
  gap: 80px;
  justify-content: center;
  margin-top: 106px;
}

.v2-wba__col--left { align-items: flex-end; }
.v2-wba__col--right { align-items: flex-start; gap: 56px; }

.v2-wba__center {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
}

.v2-wba__center::before {
  content: "";
  background: linear-gradient(180deg, rgba(36, 198, 127, 0) 1%, #7549f8 39%, #24c67f 64%, rgba(117, 73, 248, 0));
  bottom: 0;
  left: 50%;
  position: absolute;
  top: 60px;
  transform: translateX(-50%);
  width: 2px;
  z-index: -1;
}

.v2-wba__icons {
  margin-bottom: 12px;
  width: 180px;
  position: relative;
  z-index: 1;
}

.v2-wba__phone {
  display: block;
  max-width: 360px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.v2-feature {
  align-items: center;
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.v2-feature__icon {
  flex-shrink: 0;
  height: 48px;
  width: 48px;
}

.v2-feature__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 264px;
}

.v2-feature__title {
  color: var(--v2-text);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 128%;
  margin: 0;
}

.v2-feature__text {
  color: var(--v2-muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 150%;
  margin: 0;
}

.v2-feature__text strong {
  color: var(--v2-text);
  font-weight: 600;
}

.v2-feature--left { flex-direction: row; text-align: right; }
.v2-feature--left .v2-feature__content { align-items: flex-end; }
.v2-feature--left .v2-feature__icon { margin-right: -24px; }
.v2-feature--right { text-align: left; }
.v2-feature--right .v2-feature__icon { margin-left: -24px; }

@media (prefers-reduced-motion: no-preference) {
  .v2-wba.is-in .v2-wba__icons {
    animation: v2-wba-float 4.5s ease-in-out 1.2s infinite;
  }
  .v2-wba.is-in .v2-wba__phone {
    animation: v2-wba-float-soft 7s ease-in-out 1.4s infinite;
  }
}

@keyframes v2-wba-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes v2-wba-float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media screen and (max-width: 1024px) {
  .v2-wba__stage {
    display: flex;
    flex-direction: column;
  }
  .v2-wba__center { order: -1; }
  .v2-wba__center::before { display: none; }
  .v2-wba__col,
  .v2-wba__col--left,
  .v2-wba__col--right {
    display: contents;
  }
  .v2-feature,
  .v2-feature--left,
  .v2-feature--right {
    flex-direction: row;
    text-align: left;
    margin: 20px 0;
    align-items: flex-start;
  }
  .v2-feature--left .v2-feature__content,
  .v2-feature--right .v2-feature__content {
    align-items: flex-start;
  }
  .v2-feature--left .v2-feature__icon,
  .v2-feature--right .v2-feature__icon {
    margin: 0;
  }
}

/* Stats */
.v2-stats .v2-title {
  margin-bottom: 48px;
}

.v2-stats__cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: 880px;
}

.v2-is-card {
  background: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.v2-is-card:hover {
  box-shadow: 0 16px 32px rgba(20, 25, 30, .08);
  transform: translateY(-4px);
}

.v2-is-card__header {
  align-items: center;
  display: flex;
  gap: 12px;
}

.v2-is-card__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.v2-is-card__title {
  color: var(--v2-ink);
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
  margin: 0;
}

.v2-is-card__text {
  color: var(--v2-muted-2);
  font-size: 15px;
  font-weight: 300;
  line-height: 155%;
  margin: 0;
}

.v2-is-card__text strong {
  color: var(--v2-ink);
  font-weight: 600;
}

.v2-stats__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  .v2-stats__cards { grid-template-columns: 1fr; }
  .v2-is-card { text-align: center; padding: 40px 28px; }
  .v2-is-card__header { justify-content: center; }
  .v2-title--dark { font-size: 26px; }
}

/* Simulator */
.v2-sim {
  background-color: var(--v2-dark-2);
  background-image: linear-gradient(145deg, rgba(110, 60, 255, .6), #14191e 20%, #14191e 80%, rgba(117, 73, 248, .6));
  padding: 80px 0;
}

.v2-sim__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.v2-sim__copy {
  max-width: 430px;
  color: var(--v2-text);
}

.v2-sim__copy h2 {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 140%;
  margin: 0 0 20px;
  max-width: 300px;
}

.v2-sim__copy p {
  color: var(--v2-muted);
  font-size: 16px;
  line-height: 160%;
  margin: 0;
  max-width: 350px;
}

.v2-sim__form {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  width: 409px;
  max-width: 100%;
}

.v2-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  width: 100%;
}

.v2-field label {
  color: var(--v2-muted-3);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 12px;
}

.v2-field select {
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236e3cff' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 18px center;
  border: 2px solid #e5e5ff;
  border-radius: 300px;
  width: 100%;
  padding: 14px 42px 14px 20px;
  font-size: 15px;
  color: var(--v2-ink);
}

.v2-sim__form .v2-btn {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
}

.v2-sim__success {
  display: none;
  text-align: center;
}

.v2-sim__form.is-done .v2-sim__fields { display: none; }
.v2-sim__form.is-done .v2-sim__success { display: block; }

.v2-sim__success h3 {
  font-family: Poppins, sans-serif;
  color: var(--v2-purple);
  font-size: 20px;
  margin: 0 0 12px;
}

.v2-sim__success p {
  color: var(--v2-muted-2);
  font-size: 15px;
  line-height: 160%;
  margin: 0 0 24px;
}

@media screen and (max-width: 1024px) {
  .v2-sim__inner {
    flex-direction: column;
    text-align: center;
  }
  .v2-sim__copy h2,
  .v2-sim__copy p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .v2-sim__form {
    width: 100%;
  }
}

/* Integration cards */
.v2-api {
  text-align: center;
}

.v2-api .v2-title {
  margin: 0 auto 40px;
  max-width: 700px;
}

.v2-api__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.v2-card-api {
  align-items: flex-start;
  background: #fff;
  border-radius: 25px;
  box-shadow: 2px 4px 40px 0 rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  margin: 16px;
  max-width: 400px;
  min-height: 300px;
  min-width: 280px;
  padding: 32px;
  text-align: left;
  width: calc(33.333% - 32px);
  transition: transform .35s ease, box-shadow .35s ease;
}

.v2-card-api:hover {
  box-shadow: 2px 16px 50px 0 rgba(20, 25, 30, .1);
  transform: translateY(-6px);
}

.v2-card-api img {
  height: 56px;
  width: auto;
  margin-bottom: 24px;
}

.v2-card-api h3 {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  margin: 0 0 12px;
  color: var(--v2-ink);
}

.v2-card-api p {
  color: var(--v2-muted-2);
  font-size: 15px;
  font-weight: 300;
  line-height: 160%;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .v2-card-api {
    margin: 12px 0;
    max-width: 100%;
    min-height: 0;
    min-width: 0;
    width: 100%;
  }
}

/* CTA band */
.v2-cta {
  background-color: #202d39;
  background-image: url(/img/v2/background.webp);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  text-align: center;
}

.v2-cta h2 {
  color: var(--v2-text);
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 140%;
  max-width: 550px;
  margin: 0 auto 20px;
}

.v2-cta p {
  color: var(--v2-muted);
  font-size: 16px;
  line-height: 160%;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Partner */
.v2-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: var(--v2-max);
  margin: 0 auto;
  padding: 80px 20px;
}

.v2-partner__image {
  margin-right: 20px;
  max-width: 420px;
  width: 100%;
}

.v2-partner__copy h2 {
  color: var(--v2-muted-3);
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 140%;
  margin: 0 0 10px;
  max-width: 360px;
}

.v2-partner__copy p {
  color: var(--v2-muted-2);
  font-size: 16px;
  line-height: 160%;
  max-width: 350px;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .v2-partner {
    flex-direction: column;
    text-align: center;
  }
  .v2-partner__image { margin: 0 0 20px; }
  .v2-partner__copy h2,
  .v2-partner__copy p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* FAQ */
.v2-faq {
  padding: 40px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.v2-faq .v2-title {
  color: var(--v2-muted-3);
  font-size: 26px;
  margin-bottom: 32px;
}

.v2-faq-item {
  background: #fff;
  border: 1px solid #ced1ff;
  border-radius: 15px;
  box-shadow: 0 4px 15px 0 rgba(213, 226, 232, .35);
  margin-bottom: 16px;
  overflow: hidden;
}

.v2-faq-item button {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 30px;
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--v2-ink);
}

.v2-faq-item .v2-faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.v2-faq-item.is-open .v2-faq-icon {
  transform: rotate(180deg);
}

.v2-faq-item .v2-faq-body {
  display: none;
  border-top: 1px solid #c7caff;
  padding: 0 30px 24px;
}

.v2-faq-item.is-open .v2-faq-body {
  display: block;
}

.v2-faq-item .v2-faq-body p {
  color: #78909c;
  font-size: 17px;
  line-height: 160%;
  margin: 16px 0 0;
}

/* Doubts */
.v2-doubts-wrap {
  padding: 0 20px 80px;
}

.v2-doubts {
  align-items: center;
  background: linear-gradient(180deg, #f1f1ff, rgba(187, 165, 255, .6) 96%);
  border-radius: 32px;
  box-shadow: inset 0 6px 14px -8px rgba(36, 33, 64, .05);
  display: flex;
  gap: 48px;
  margin: 0 auto;
  max-width: var(--v2-max);
  padding: 48px;
  width: 100%;
}

.v2-doubts__image {
  flex-shrink: 0;
  max-width: 460px;
  position: relative;
  width: 100%;
}

.v2-doubts__image::before {
  background: #7549f8;
  border-radius: 50%;
  bottom: 8%;
  content: "";
  filter: blur(60px);
  height: 70%;
  left: 0;
  margin: 0 auto;
  opacity: .62;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: 80%;
}

.v2-doubts__image img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.v2-doubts__title {
  color: var(--v2-ink);
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 125%;
  margin: 0 0 16px;
}

.v2-doubts__text {
  color: var(--v2-muted-2);
  font-size: 17px;
  font-weight: 300;
  line-height: 160%;
  margin: 0 0 32px;
}

@media screen and (max-width: 991px) {
  .v2-doubts {
    flex-direction: column;
    gap: 32px;
    padding: 40px 28px;
    text-align: center;
  }
  .v2-doubts__image { max-width: 360px; }
  .v2-doubts__title { font-size: 22px; }
  .v2-doubts__text { font-size: 15px; }
  .v2-doubts__button { justify-content: center; display: flex; }
}

/* Footer */
.v2-footer {
  background: #fafcfe;
  padding: 80px 20px 0;
  font-family: Poppins, sans-serif;
}

.v2-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.v2-footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 30px;
}

.v2-footer__logo img {
  height: 40px;
}

.v2-footer h4 {
  color: #52636b;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 1em;
}

.v2-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v2-footer li {
  font-size: 15px;
  margin-bottom: 6px;
}

.v2-footer a {
  color: #52636b;
}

.v2-footer a:hover {
  color: var(--v2-purple);
}

.v2-footer__wa {
  display: inline-block;
  border: 1px solid #d5e2e8;
  border-radius: 30px;
  padding: 7px 14px;
  margin-bottom: 12px;
}

.v2-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 30px;
  color: #52636b;
  font-size: 13px;
  gap: 16px;
}

.v2-footer__bottom a {
  color: #52636b;
}

@media screen and (max-width: 767px) {
  .v2-footer__grid,
  .v2-footer__bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.v2-skip {
  position: absolute;
  left: -999px;
}

.v2-skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: #fff;
  padding: 8px 12px;
}
