/* ── TUNEX CONVERSION LAYER ── */

/* ── URGENCY BAR (top) ── */
.urg-bar {
  background: #111; color: #fff;
  padding: 10px 20px; text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  position: relative; z-index: 1001;
}
.urg-bar strong { color: #C41E3A; }
.urg-bar-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.4);
  font-size: 16px; cursor: pointer; line-height: 1; padding: 4px;
}
.urg-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.4);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 88px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 6px 24px rgba(37,211,102,.45);
  cursor: pointer; transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
.wa-float-tooltip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: #111; color: #fff; font-size: 11px; font-weight: 700;
  padding: 6px 12px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
  letter-spacing: .5px;
}
.wa-float-tooltip::after {
  content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-right: none; border-left-color: #111;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ── STICKY BOTTOM CTA BAR ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: #080808; border-top: 1px solid #1a1a1a;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%); transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-left { display: flex; align-items: center; gap: 14px; }
.sticky-cta-left .scta-icon { font-size: 22px; color: #C41E3A; }
.sticky-cta-copy { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.4; }
.sticky-cta-copy strong { color: #fff; display: block; font-size: 14px; }
.scta-spots {
  background: rgba(196,30,58,.15); border: 1px solid rgba(196,30,58,.3);
  color: #C41E3A; font-size: 10px; font-weight: 800; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 100px;
}
.sticky-cta-btns { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.scta-btn-main {
  background: #C41E3A; color: #fff; border: none;
  padding: 12px 28px; border-radius: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; box-shadow: 0 4px 16px rgba(196,30,58,.35);
  text-decoration: none;
}
.scta-btn-main:hover { background: #9b1530; transform: translateY(-1px); }
.scta-btn-close {
  background: none; border: none; color: rgba(255,255,255,.3);
  font-size: 18px; cursor: pointer; padding: 4px; line-height: 1;
}
.scta-btn-close:hover { color: rgba(255,255,255,.7); }

/* ── SOCIAL PROOF TOAST ── */
.sp-toast {
  position: fixed; bottom: 100px; left: 24px; z-index: 9997;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  padding: 14px 18px; display: flex; align-items: center; gap: 13px;
  max-width: 320px; width: calc(100vw - 48px);
  transform: translateX(-120%); transition: transform .45s cubic-bezier(.16,1,.3,1);
  border: 1px solid #f0f0f0;
}
.sp-toast.show { transform: translateX(0); }
.sp-toast-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: #C41E3A;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 800; flex-shrink: 0;
}
.sp-toast-text { flex: 1; }
.sp-toast-name { font-size: 13px; font-weight: 800; color: #080808; line-height: 1.3; }
.sp-toast-action { font-size: 11px; color: #777; margin-top: 2px; }
.sp-toast-action strong { color: #C41E3A; }
.sp-toast-time { font-size: 10px; color: #aaa; margin-top: 4px; }
.sp-toast-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; color: #ccc; font-size: 14px; cursor: pointer;
}

/* ── EXIT INTENT MODAL ── */
.exit-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.75); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  padding: 20px;
}
.exit-overlay.open { opacity: 1; pointer-events: all; }
.exit-modal {
  background: #fff; border-radius: 16px; overflow: hidden;
  max-width: 560px; width: 100%;
  transform: scale(.92) translateY(24px); transition: transform .35s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.exit-overlay.open .exit-modal { transform: none; }
.exit-modal-top {
  background: #080808; padding: 40px 40px 32px; position: relative; overflow: hidden;
}
.exit-modal-top::after {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,30,58,.2) 0%, transparent 70%);
}
.exit-eyebrow {
  font-size: 10px; font-weight: 800; color: #C41E3A;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.exit-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: #C41E3A; }
.exit-modal-top h2 {
  font-family: 'Bebas Neue', cursive, sans-serif;
  font-size: 46px; color: #fff; line-height: .9; letter-spacing: -1px;
  margin-bottom: 10px;
}
.exit-modal-top h2 em { color: #C41E3A; font-style: normal; }
.exit-modal-top p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }
.exit-modal-body { padding: 32px 40px 36px; }
.exit-value-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.exit-value-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #333; font-weight: 600;
}
.exit-value-item i { color: #C41E3A; font-size: 16px; flex-shrink: 0; }
.exit-form { display: flex; gap: 10px; }
.exit-input {
  flex: 1; padding: 13px 16px; border: 1.5px solid #e5e5e5; border-radius: 8px;
  font-size: 13px; font-family: 'Inter', sans-serif; outline: none;
  transition: border-color .2s;
}
.exit-input:focus { border-color: #C41E3A; }
.exit-submit {
  background: #C41E3A; color: #fff; border: none;
  padding: 13px 24px; border-radius: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; white-space: nowrap;
  font-family: 'Inter', sans-serif; transition: all .2s;
  box-shadow: 0 4px 16px rgba(196,30,58,.35);
}
.exit-submit:hover { background: #9b1530; }
.exit-skip { text-align: center; margin-top: 16px; font-size: 11px; color: #aaa; }
.exit-skip a { color: #aaa; text-decoration: underline; cursor: pointer; }
.exit-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 30px; height: 30px; border-radius: 50%; font-size: 16px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.exit-close:hover { background: rgba(255,255,255,.2); }

/* ── TRUST BADGE ROW ── */
.trust-strip {
  background: #f8f8f8; border-top: 1px solid #ebebeb; border-bottom: 1px solid #ebebeb;
  padding: 14px 56px;
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; color: #555; letter-spacing: .5px;
}
.trust-badge i { color: #C41E3A; font-size: 15px; }

@media (max-width: 768px) {
  .sticky-cta { padding: 12px 16px; }
  .sticky-cta-copy { font-size: 11px; }
  .sticky-cta-copy strong { font-size: 12px; }
  .scta-spots { display: none; }
  .exit-modal-top { padding: 28px 24px 24px; }
  .exit-modal-top h2 { font-size: 36px; }
  .exit-modal-body { padding: 24px 24px 28px; }
  .exit-form { flex-direction: column; }
  .trust-strip { padding: 12px 20px; gap: 20px; }
  .wa-float { bottom: 80px; right: 16px; }
}
