/* ==========================================================================
   BittFlow — Design tokens (paleta extraída da logo)
   ========================================================================== */
:root {
  --navy-950: #050f30;
  --navy-900: #081a4b;
  --navy-800: #102864;
  --blue-700: #1f63e8;
  --blue-500: #2d8cff;
  --blue-300: #27b6f6;
  --cyan-400: #19d2e8;
  --teal-400: #38e5c3;
  --white: #ffffff;
  --ink: #081a4b;
  --ink-soft: #1c2333;
  --mist: #f4f7fb;
  --mist-2: #e9eff8;

  --gradient-brand: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 55%, var(--cyan-400) 100%);
  --gradient-dark: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
  --gradient-text: linear-gradient(90deg, var(--blue-500) 0%, var(--cyan-400) 65%, var(--teal-400) 100%);

  --shadow-sm: 0 2px 10px rgba(15, 30, 56, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 30, 56, 0.12);
  --shadow-glow: 0 0 60px rgba(25, 210, 232, 0.25);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Progress bar
   ========================================================================== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-brand);
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.btn--cta {
  background: var(--gradient-brand);
  background-size: 160% 160%;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(31, 99, 232, 0.35);
}
.btn--cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(25, 210, 232, 0.4);
  background-position: 100% 0;
}

.btn--ghost {
  background: rgba(15, 30, 56, 0.04);
  color: var(--ink);
  border: 1.5px solid rgba(15, 30, 56, 0.14);
}
.btn--ghost:hover {
  background: rgba(15, 30, 56, 0.08);
  transform: translateY(-3px);
}

.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.header.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 60px; width: auto; transition: height 0.35s var(--ease); }
.header.is-scrolled .brand__logo { height: 48px; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding-block: 4px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--gradient-brand);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--ink);
  margin-inline: auto;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--gradient-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.85;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}
.hero__glow--1 {
  width: 480px; height: 480px;
  background: rgba(45, 140, 255, 0.35);
  top: -120px; right: -80px;
}
.hero__glow--2 {
  width: 380px; height: 380px;
  background: rgba(25, 210, 232, 0.25);
  bottom: -140px; left: -60px;
}

.hero__inner { max-width: 780px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: 18px;
}
.eyebrow--center { display: block; text-align: center; }
.eyebrow--light { color: var(--cyan-400); }

.hero__title {
  font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.hero .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}
.hero .btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 160px;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--cyan-400);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ==========================================================================
   Section shared
   ========================================================================== */
section { padding: 120px 0; }
.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 18px;
}
.section-title--left { text-align: left; margin: 0 0 20px; max-width: none; }
.section-title--light { color: var(--white); }
.section-subtitle {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 64px;
  font-size: 1.05rem;
}
.section-subtitle--light { color: rgba(255, 255, 255, 0.72); }

/* ==========================================================================
   Decorative floating/spinning shapes
   ========================================================================== */
.deco-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.deco-shape {
  position: absolute;
  animation: decoFloat 9s ease-in-out infinite;
}
.deco-shape span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  animation: decoSpin 16s linear infinite;
}
.deco-shape--1 { top: 8%;  left: 6%;  width: 26px; height: 26px; animation-duration: 8s; }
.deco-shape--2 { top: 68%; left: 10%; width: 16px; height: 16px; animation-duration: 10s; animation-delay: -2s; }
.deco-shape--3 { top: 18%; left: 92%; width: 20px; height: 20px; animation-duration: 7.5s; animation-delay: -4s; }
.deco-shape--4 { top: 78%; left: 88%; width: 30px; height: 30px; animation-duration: 11s; animation-delay: -1s; }
.deco-shape--5 { top: 42%; left: 96%; width: 14px; height: 14px; animation-duration: 9s; animation-delay: -3s; }
.deco-shape--6 { top: 50%; left: 3%;  width: 18px; height: 18px; animation-duration: 12s; animation-delay: -5s; }

.deco-shape--1 span { background: rgba(31, 99, 232, 0.18); animation-duration: 18s; }
.deco-shape--2 span { background: rgba(25, 210, 232, 0.22); animation-duration: 22s; animation-direction: reverse; }
.deco-shape--3 span { background: rgba(56, 229, 195, 0.2); animation-duration: 15s; }
.deco-shape--4 span { background: rgba(45, 140, 255, 0.16); animation-duration: 20s; animation-direction: reverse; }
.deco-shape--5 span { background: rgba(39, 182, 246, 0.2); animation-duration: 13s; }
.deco-shape--6 span { background: rgba(25, 210, 232, 0.18); animation-duration: 19s; animation-direction: reverse; }

@keyframes decoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes decoSpin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services { position: relative; background: var(--mist); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 30, 56, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from 0deg, transparent 0%, var(--cyan-400) 6%, var(--blue-500) 10%, transparent 22%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  animation: cardLightSpin 2.6s linear infinite;
  animation-play-state: paused;
  pointer-events: none;
}
.card:hover::after {
  opacity: 1;
  animation-play-state: running;
}
@keyframes cardLightSpin {
  to { transform: rotate(360deg); }
}
.card--highlight {
  background: var(--gradient-dark);
  color: var(--white);
  border: none;
  position: relative;
  overflow: hidden;
}
.card--highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(25, 210, 232, 0.25), transparent 60%);
}
.card--highlight .card__desc { color: rgba(255, 255, 255, 0.72); }
.card--highlight .card__list { color: rgba(255, 255, 255, 0.85); }
.card--highlight .card__list li::before { background: var(--cyan-400); }
.card--highlight .card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cyan-400);
}

.card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mist-2);
  color: var(--blue-700);
  margin-bottom: 24px;
}
.card__icon svg { width: 26px; height: 26px; }

.card__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; position: relative; }
.card__desc { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 22px; position: relative; }
.card__list { display: flex; flex-direction: column; gap: 12px; position: relative; }
.card__list li {
  font-size: 0.9rem;
  padding-left: 22px;
  position: relative;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--gradient-brand);
}

/* ==========================================================================
   About
   ========================================================================== */
.about { position: relative; }
.about__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.about__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.about__glow {
  position: absolute;
  inset: 10%;
  background: var(--gradient-brand);
  filter: blur(70px);
  opacity: 0.25;
  border-radius: 50%;
}
.about__logo { position: relative; width: 100%; max-width: 280px; }

.about__text {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.about__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--mist);
}
.about__item-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue-500);
  flex-shrink: 0;
}
.about__item p { font-size: 0.88rem; color: var(--ink); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  position: relative;
  background: var(--gradient-dark);
  text-align: center;
  overflow: hidden;
}
.contact__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(25, 210, 232, 0.18), transparent 65%);
  pointer-events: none;
}
.contact__inner { position: relative; }
.contact .btn--cta { margin-top: 8px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy-950); color: rgba(255, 255, 255, 0.75); padding-top: 64px; }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.brand__logo--footer {
  height: 56px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
}
.footer__tagline { font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); }
.footer__nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__nav a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.72); transition: color 0.25s; }
.footer__nav a:hover { color: var(--cyan-400); }
.footer__whatsapp {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan-400);
  transition: background 0.3s, transform 0.3s;
}
.footer__whatsapp:hover { background: rgba(25, 210, 232, 0.2); transform: translateY(-3px); }
.footer__whatsapp .icon { width: 20px; height: 20px; fill: currentColor; }
.footer__bottom {
  padding-block: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(31, 99, 232, 0.45);
  z-index: 800;
  animation: fabPulse 2.6s infinite;
  transition: transform 0.3s var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab .icon { width: 28px; height: 28px; fill: currentColor; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(31, 99, 232, 0.45), 0 0 0 0 rgba(25, 210, 232, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(31, 99, 232, 0.45), 0 0 0 14px rgba(25, 210, 232, 0); }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { max-width: 320px; margin-inline: auto; }
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--white); box-shadow: -12px 0 40px rgba(15,30,56,0.12);
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    display: flex; align-items: center; z-index: 950; }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 28px; width: 100%; padding: 40px; }
  .nav__link { font-size: 1.1rem; }
  .header__cta { display: none; }
  .hamburger { display: flex; z-index: 960; }
  .about__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  section { padding: 88px 0; }
}

@media (max-width: 480px) {
  .hero__stats { gap: 24px; }
  .btn--lg { padding: 14px 24px; font-size: 0.92rem; }
  .fab { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .fab, .scroll-cue span, .deco-shape, .deco-shape span, .card::after {
    animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important;
  }
  .card::after { display: none; }
}

/* ==========================================================
   MODAL DE SAÍDA (exit intent) - PopUp com mensagem ao tentar sair da página:
   ========================================================== */
.exit-modal {
  position: fixed; inset: 0; z-index: 120;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(5, 15, 48, 0.82);
  backdrop-filter: blur(10px);
}
.exit-modal.is-open { display: flex; animation: fade-in 0.3s var(--ease); }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.exit-dialog {
  position: relative; width: 100%; max-width: 560px;
  background: var(--gradient-dark);
  border: 1px solid rgba(56, 229, 195, 0.25);
  border-radius: var(--radius-lg);
  padding: 44px 36px 36px;
  text-align: center;
  box-shadow: var(--shadow-glow);
  animation: dialog-in 0.42s var(--ease);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
@keyframes dialog-in { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: none; } }
.exit-dialog::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(25, 210, 232, 0.22), transparent 62%);
}
.exit-dialog > * { position: relative; z-index: 1; }
.exit-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7); font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.exit-close:hover { color: var(--white); border-color: var(--cyan-400); background: rgba(255, 255, 255, 0.12); }
.exit-dialog .label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: 14px;
}
.exit-dialog h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.4vw, 36px);
  color: var(--white);
  margin-bottom: 14px;
}
.exit-dialog h2 .accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.exit-dialog p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.exit-dialog p .accent-solid {
  color: var(--cyan-400);
  font-weight: 600;
}
.exit-perks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 20px 0 26px;
}
.exit-perks li {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cyan-400);
  background: rgba(25, 210, 232, 0.08);
  border: 1px solid rgba(25, 210, 232, 0.3);
  padding: 7px 14px; border-radius: 999px;
}
.exit-dialog .btn { width: 100%; max-width: 380px; justify-content: center; text-align: center; }
.exit-dialog .btn-gold {
  background: var(--gradient-brand);
  background-size: 160% 160%;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(31, 99, 232, 0.35);
}
.exit-dialog .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(25, 210, 232, 0.4);
  background-position: 100% 0;
}
.exit-dismiss {
  display: block; margin: 8px auto 0;
  background: none; border: none;
  color: rgba(255, 255, 255, 0.55); font-size: 13px; text-decoration: underline;
  transition: color 0.3s var(--ease);
}
.exit-dismiss:hover { color: var(--white); }

@media (max-width: 560px) {
  .exit-dialog { padding: 32px 20px 24px; }
  .exit-perks li { font-size: 11px; padding: 6px 11px; }
}  /* ==========================================================
  FINAL DO MODAL DE SAÍDA (exit intent) - PopUp com mensagem ao tentar sair da página:
   ========================================================== */
