
.faq-app {
  margin-top: 3px;
}


/* ── Header ────────────────────────────────────────────────── */

.vip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--section-gap);
  padding: 0.5rem var(--section-gap);
  margin-bottom: 1.0rem;
}

.vip-header__brand {
  display: flex;
  align-items: center;
  gap: 1.0rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.ae-brand__mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: var(--ae-gradient);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  box-shadow: var(--ae-shadow-button);
  flex-shrink: 0;
}

.vip-header__brand-text strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ae-ink);
  white-space: nowrap;
  line-height: 1.2;
}

.vip-header__brand-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--ae-ink-soft);
  white-space: nowrap;
}

.vip-header__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vip-header__nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ae-blue);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: var(--ae-radius-pill);
  transition: background 120ms ease, color 120ms ease;
  white-space: nowrap;
}

.vip-header__nav a:not(.ae-btn):hover {
  background: rgba(37, 99, 235, 0.08);
}

.vip-header__nav .ae-btn {
  font-size: 0.88rem;
  padding: 8px 18px;
}

/* ── Wrapper do carrossel: ae-card no desktop, neutro no mobile */

.carousel-section-wrapper {
  width: 100%;
}

@media (max-width: 699px) {
  :root { --section-gap: 1rem; }

  .faq-grid { margin-top: 0; }

  .carousel-section-wrapper {
    background: transparent;
    background-image: none;
    border-color: transparent;
    box-shadow: none;
    animation: none;
    border-radius: 0;
    padding: 0;
  }

  .carousel-section-wrapper::before {
    display: none;
  }

  .ae-brand__mark {
    width: 50px;
    height: 50px;
  }

  .vip-header__nav {
    display: none;
  }
}

@media (min-width: 700px) {
  .carousel-section-wrapper {
    padding: 0;
    margin: 0 0 var(--section-gap);
  }

  .carousel-section {
    margin: 0;
  }

  .faq-grid {
    margin-top: 0;
    margin-bottom: var(--section-gap);
  }
}

/* ── Seção do carrossel ───────────────────────────────────── */

.carousel-section {
  margin: 0 0 var(--section-gap);
}