/* V21: um último convite após as dúvidas, guiado pelo mascote da marca. */
.faq-exit {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: center;
  width: var(--page);
  min-height: 350px;
  margin: 0 auto 48px;
  padding: 48px 64px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--pale);
  color: var(--teal);
}
.faq-exit::after {
  content: "";
  position: absolute;
  right: -76px;
  bottom: -164px;
  z-index: -1;
  width: 440px;
  height: 440px;
  border: 2px solid color-mix(in srgb, var(--teal) 18%, transparent);
  border-radius: 50%;
}
.faq-exit-copy { position: relative; z-index: 2; max-width: 640px; }
.faq-exit .eyebrow { margin-bottom: 12px; color: var(--teal); }
.faq-exit h2 {
  max-width: 580px;
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.faq-exit p { max-width: 530px; margin: 20px 0 28px; font-size: 1.125rem; line-height: 1.6; }
.faq-exit .faq-exit-button {
  min-height: 56px;
  background: var(--teal);
  color: white;
  box-shadow: none;
}
.faq-exit .faq-exit-button:hover,
.faq-exit .faq-exit-button:focus-visible {
  background: var(--sun);
  color: var(--ink);
  box-shadow: none;
}
.faq-exit-mascot { position: relative; z-index: 1; width: 100%; align-self: end; }
.faq-exit-mascot::before {
  content: "";
  position: absolute;
  inset: 6% 3% 4%;
  z-index: -1;
  border-radius: 50%;
  background: var(--cream);
}
.faq-exit-mascot img { display: block; width: 100%; height: auto; transform: rotate(-12deg) translateY(18px); }
@media (max-width: 900px) {
  .faq-exit { grid-template-columns: minmax(0, 1fr) 220px; padding: 40px; }
}
@media (max-width: 650px) {
  .faq-exit {
    display: block;
    width: calc(100% - 40px);
    min-height: 0;
    padding: 144px 24px 32px;
    border-radius: 24px;
    margin-bottom: 24px;
  }
  .faq-exit::after { top: -210px; right: -132px; bottom: auto; width: 350px; height: 350px; }
  .faq-exit-mascot { position: absolute; top: 8px; right: 8px; width: 150px; }
  .faq-exit-mascot img { transform: rotate(-14deg) translateY(0); }
  .faq-exit h2 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .faq-exit p { font-size: 1rem; }
  .faq-exit .faq-exit-button { width: 100%; padding-inline: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-exit .faq-exit-button { transition: none; }
}
