/* Easy RFP — Conversion Patterns CSS (skill: conversao-organica)
   Single source of truth for in-content callout, sticky-mini, embedded mini-tool.
   Load once globally on all blog + marketing pages.
   INP-safe: pure CSS, no JS dependencies, no layout-thrashing animations. */

/* Pattern A — In-content callout */
.cnv-callout {
  margin: 28px 0;
  padding: 22px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FAFBFF 0%, #FDF2F8 100%);
  border: 1px solid rgba(124, 58, 237, 0.18);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.06);
  position: relative;
}
.cnv-callout::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, #7C3AED, #EC4899);
}
.cnv-callout-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7C3AED;
  margin-bottom: 6px;
}
.cnv-callout-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1E1B4B;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.cnv-callout-body {
  margin: 0 0 14px;
  font-size: 14.5px;
  color: #4B5563;
  line-height: 1.6;
}
.cnv-callout-cta {
  display: inline-block;
  padding: 11px 20px;
  background: linear-gradient(135deg, #7C3AED, #EC4899);
  color: #fff !important;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.28);
  transition: transform 120ms cubic-bezier(.16, .84, .4, 1),
              box-shadow 120ms cubic-bezier(.16, .84, .4, 1);
}
.cnv-callout-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.36);
}
.cnv-callout-cta:active { transform: scale(0.97); }
@media (prefers-reduced-motion: reduce) {
  .cnv-callout-cta { transition: none; }
  .cnv-callout-cta:hover, .cnv-callout-cta:active { transform: none; }
}

/* Pattern D — Sticky mini-bar (≤44px mobile, ≤56px desktop) */
.cnv-sticky-mini {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  max-height: 44px;
  background: linear-gradient(90deg, #1E1B4B 0%, #312E81 50%, #5B21B6 100%);
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 720px) {
  .cnv-sticky-mini { max-height: 56px; padding: 12px 18px; font-size: 14px; }
}
.cnv-sticky-mini-text {
  flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  opacity: 0.92;
}
.cnv-sticky-mini-text strong { color: #fff; font-weight: 700; }
.cnv-sticky-mini-cta {
  flex-shrink: 0;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background 120ms;
}
.cnv-sticky-mini-cta:hover { background: rgba(255, 255, 255, 0.28); }
.cnv-sticky-mini-close {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 0;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.cnv-sticky-mini-close:hover { color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .cnv-sticky-mini-cta { transition: none; }
}

/* Pattern B — Embedded mini-tool */
.cnv-tool {
  margin: 32px 0;
  padding: 24px 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FAFBFF 0%, #F5F3FF 50%, #FDF2F8 100%);
  border: 1px solid rgba(124, 58, 237, 0.18);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.08);
}
.cnv-tool-eyebrow {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
  border-radius: 99px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.cnv-tool-title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: #1E1B4B;
  letter-spacing: -0.01em;
}
.cnv-tool-sub {
  margin: 0 0 16px;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.55;
}
.cnv-tool-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
@media (max-width: 540px) { .cnv-tool-inputs { grid-template-columns: 1fr; } }
.cnv-tool-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #4B5563;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.cnv-tool-field input,
.cnv-tool-field select {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid #E0D5F5;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  color: #1E1B4B;
  font-family: inherit;
  box-sizing: border-box;
}
.cnv-tool-field input:focus,
.cnv-tool-field select:focus {
  border-color: #7C3AED;
  outline: 2px solid rgba(124, 58, 237, 0.18);
  outline-offset: 0;
}
.cnv-tool-result {
  margin: 14px 0 18px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #FFF, #FAFBFF);
  border: 1.5px dashed rgba(124, 58, 237, 0.35);
  border-radius: 12px;
  text-align: center;
}
.cnv-tool-result-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7C3AED;
  margin-bottom: 4px;
}
.cnv-tool-result-value {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 30px;
  font-weight: 700;
  color: #B91C4E;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.cnv-tool-result-hint {
  font-size: 11.5px;
  color: #6B7280;
  line-height: 1.5;
}
.cnv-tool-cta {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(135deg, #7C3AED, #EC4899);
  color: #fff !important;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.32);
}
.cnv-tool-trust {
  margin: 10px 0 0;
  font-size: 11.5px;
  color: #6B7280;
}

/* Pattern C — Bottom-of-article (uses existing .blog-inline-cta styles, no additions) */
