/* ============================================================
   LP Squad por Assinatura — Clicksoft
   Paleta: Roxo Profundo (LP de produto)
   ============================================================ */

:root {
  --bg:           #291858;
  --bg-alt:       #231447;
  --bg-card:      #3a2478;
  --bg-deep:      #1e1040;
  --bg-header:    rgba(41,24,88,.97);
  --lime:         #DCFC17;
  --lime-hover:   #cde600;
  --text:         #ffffff;
  --text-muted:   rgba(255,255,255,.7);
  --text-faint:   rgba(255,255,255,.45);
  --border:       rgba(255,255,255,.12);
  --border-lime:  rgba(220,252,23,.22);
  --radius:       20px;
  --radius-sm:    12px;
  --radius-btn:   10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sticky Header ────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
#header.scrolled {
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.header-logo { height: 28px; width: auto; }
.header-logo-mobile { display: none; height: 32px; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: #0d0921;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background .18s, transform .15s;
  text-decoration: none;
}
.header-cta:hover {
  background: var(--lime-hover);
  transform: translateY(-1px);
}

/* ── Eyebrow ──────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--lime);
  margin-bottom: 16px;
}

/* ── Section base ─────────────────────────────────────────── */
.section {
  padding: clamp(64px, 8vw, 96px) 0;
}
.section--alt { background: var(--bg-alt); }
.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
}

/* ── Fade-in scroll ───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ──────────────────────────────────────────────── */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,252,23,.5); }
  55%       { box-shadow: 0 0 0 12px rgba(220,252,23,0); }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn--lime {
  background: var(--lime);
  color: #0d0921;
  font-size: 15px;
  padding: 14px 28px;
  animation: pulse-glow 2.8s ease-in-out infinite;
}
.btn--lime:hover {
  background: var(--lime-hover);
  transform: translateY(-1px);
  animation: none;
}
.btn--wpp {
  background: #25d366;
  color: #fff;
  font-size: 15px;
  padding: 14px 28px;
}
.btn--wpp:hover {
  background: #1dba57;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 14px;
  padding: 10px 20px;
}
.btn--outline:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}
.btn--ghost {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  padding: 0;
  font-weight: 600;
  gap: 6px;
}
.btn--ghost:hover { color: var(--lime); }
.btn--full { width: 100%; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 0 72px;
  background: linear-gradient(150deg, #291858 0%, #3a2478 50%, #231447 100%);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -10rem; right: -8rem;
  width: 40rem; height: 40rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105,65,198,.18) 0%, transparent 68%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -4rem; left: -6rem;
  width: 28rem; height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,252,23,.05) 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 560px; }
.hero-inner h1 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero-inner h1 span { color: var(--lime); }
.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.hero-anchor {
  color: var(--text-faint);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}
.hero-anchor:hover { color: var(--lime); }
.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(220,252,23,.08);
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(41,24,88,.5) 0%, transparent 35%);
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
}

/* ── Quem é ───────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.card-item {
  background: linear-gradient(145deg, rgba(80,57,140,.2), rgba(22,13,48,.3));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .22s, border-color .22s, box-shadow .22s, background .22s;
}
.card-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-lime);
  background: linear-gradient(145deg, rgba(80,57,140,.3), rgba(22,13,48,.38));
  box-shadow: 0 10px 30px rgba(0,0,0,.25), 0 0 0 1px rgba(220,252,23,.1);
}
.card-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 12px;
}
.card-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.card-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── O que resolve ────────────────────────────────────────── */
.resolve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.resolve-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform .22s, border-color .22s, background .22s;
}
.resolve-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-lime);
  background: rgba(255,255,255,.08);
}
.resolve-icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}
.resolve-item h4 { font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.resolve-item p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── Planos ───────────────────────────────────────────────── */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  align-items: stretch;
}
.plano-card {
  background: linear-gradient(145deg, rgba(80,57,140,.2), rgba(22,13,48,.3));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.plano-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-lime);
  box-shadow: 0 12px 36px rgba(0,0,0,.28);
}
.plano-card--destaque {
  border-color: var(--border-lime);
  background: linear-gradient(145deg, rgba(105,65,198,.26), rgba(22,13,48,.35));
  box-shadow: 0 0 0 1px rgba(220,252,23,.3);
}
.plano-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #0d0921;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plano-nome { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.plano-horas {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--lime); margin-bottom: 16px;
}
.plano-preco {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.plano-preco span { font-size: 15px; font-weight: 500; color: var(--text-muted); }
.plano-preco-label { font-size: 11px; color: var(--text-faint); margin-bottom: 20px; margin-top: 4px; }
.plano-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.plano-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.plano-lista { list-style: none; flex: 1; }
.plano-lista li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 0 7px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.05);
  line-height: 1.5;
}
.plano-lista li:last-child { border-bottom: none; }
.plano-lista li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(220,252,23,.18);
}
.plano-custom {
  margin-top: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-left: 3px solid var(--lime);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.plano-custom h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.plano-custom p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.ref-horas {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.ref-horas strong { color: var(--lime); }

/* ── Prova social / Stats ─────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.stat-box {
  background: linear-gradient(145deg, rgba(80,57,140,.2), rgba(22,13,48,.3));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.stat-num   { font-size: 30px; font-weight: 800; color: var(--lime); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.quote-card {
  background: linear-gradient(145deg, rgba(80,57,140,.16), rgba(22,13,48,.24));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .22s, border-color .22s;
}
.quote-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-lime);
}
.quote-mark { font-size: 36px; font-weight: 800; color: var(--lime); line-height: .7; }
.quote-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; flex: 1; }
.quote-author strong { display: block; font-size: 13px; font-weight: 800; }
.quote-author span   { font-size: 12px; color: var(--text-faint); }
.clientes-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.cliente-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(145deg, rgba(80,57,140,.15), rgba(22,13,48,.22));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .22s;
}
.faq-item:hover { border-color: var(--border-lime); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}
.faq-btn svg {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--lime);
}
.faq-item.open .faq-btn svg { transform: rotate(180deg); }
.faq-body {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-body { display: block; }

/* ── Formulário ───────────────────────────────────────────── */
#contato {
  background: var(--bg-alt);
}
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.contato-copy h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contato-copy p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.contato-wpp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25d366;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .2s;
}
.contato-wpp-link:hover { opacity: .8; }

/* ── lp-form ──────────────────────────────────────────────── */
.lp-form-wrap {
  background: rgba(18,12,40,.72);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}
.lp-form-accent {
  height: 4px;
  background: linear-gradient(90deg, #DCFC17, #a8f000);
}
.lp-form {
  padding: 28px 28px 32px;
}
.form-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-muted);
}
.optional-label {
  font-weight: 400;
  color: var(--text-faint);
  font-size: 12px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #101828;
  padding: 12px 14px;
  height: 46px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group textarea {
  height: auto;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(220,252,23,.2);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23667085' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field-error {
  display: none;
  font-size: 12px;
  color: #f97066;
  margin-top: 4px;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #f97066;
  box-shadow: 0 0 0 3px rgba(249,112,102,.15);
}
.form-group.has-error .field-error { display: block; }
.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
  margin-top: 8px;
  position: relative;
}
.btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(13,9,33,.3);
  border-top-color: #0d0921;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.submit-btn.loading .btn-text { display: none; }
.submit-btn.loading .btn-spinner { display: inline-block; }
.form-success, .form-error {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}
.form-success { background: rgba(37,211,102,.12); color: #25d366; border: 1px solid rgba(37,211,102,.25); }
.form-error   { background: rgba(249,112,102,.1);  color: #f97066;  border: 1px solid rgba(249,112,102,.2); }

/* ── CTA Final ────────────────────────────────────────────── */
#cta-final {
  text-align: center;
  background: linear-gradient(160deg, #291858 0%, #3a2478 50%, #231447 100%);
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42rem; height: 20rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(220,252,23,.06) 0%, transparent 68%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
#cta-final h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
#cta-final p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.75;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ── Rodapé ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo { height: 22px; opacity: .7; }
.footer-copy { font-size: 12px; color: var(--text-faint); }
.footer-copy a { color: var(--lime); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .planos-grid  { grid-template-columns: 1fr; max-width: 480px; }
  .resolve-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid  { grid-template-columns: 1fr; }
  .stats-row    { grid-template-columns: repeat(2, 1fr); }
  .contato-inner { grid-template-columns: 1fr; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content { max-width: 100%; }
  .hero-image { max-width: 560px; }
}
@media (max-width: 640px) {
  .cards-grid   { grid-template-columns: 1fr; }
  .resolve-grid { grid-template-columns: 1fr; }
  .hero-ctas    { flex-direction: column; align-items: flex-start; }
  .header-logo  { display: none; }
  .header-logo-mobile { display: block; }
  .lp-form { padding: 22px 18px 24px; }
  .hero-image { display: none; }
}

/* ── Modal WhatsApp ────────────────────────────────────────── */
.wpp-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.wpp-overlay.open { opacity: 1; pointer-events: all; }
.wpp-modal {
  width: 100%; max-width: 390px;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
  transform: scale(.93) translateY(16px);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.wpp-overlay.open .wpp-modal { transform: scale(1) translateY(0); }
.wpp-header {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  padding: 16px 16px 16px 20px;
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.wpp-close {
  position: absolute; top: 12px; right: 14px;
  background: rgba(255,255,255,.12); border: none;
  color: #fff; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.wpp-close:hover { background: rgba(255,255,255,.25); }
.wpp-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.3);
  position: relative;
}
.wpp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wpp-avatar::after {
  content: '';
  position: absolute; bottom: 2px; right: 2px;
  width: 11px; height: 11px;
  background: #4ade80; border-radius: 50%;
  border: 2px solid #075e54;
}
.wpp-header-info { flex: 1; min-width: 0; }
.wpp-name { display: block; color: #fff; font-weight: 700; font-size: 15px; line-height: 1.25; }
.wpp-status { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.75); font-size: 12px; margin-top: 3px; }
.wpp-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; flex-shrink: 0; }
.wpp-chat {
  background: #e5ddd5;
  padding: 20px 16px 16px;
}
.wpp-msg-row { display: flex; align-items: flex-end; gap: 8px; }
.wpp-msg-avatar { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.wpp-msg-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wpp-bubble {
  background: #fff;
  border-radius: 2px 18px 18px 18px;
  padding: 12px 14px 8px;
  font-size: 14px; color: #111; line-height: 1.55;
  max-width: 82%;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
.wpp-time { display: block; text-align: right; font-size: 11px; color: #999; margin-top: 4px; }
.wpp-form-wrap { background: #fff; padding: 20px; }
.wpp-form-wrap .form-group { margin-bottom: 12px; }
.wpp-form-wrap input[type="text"],
.wpp-form-wrap input[type="email"],
.wpp-form-wrap input[type="tel"] {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid #e8e8e8; border-radius: 12px;
  font-size: 14px; background: #f7f7f7; outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  font-family: inherit; color: #111;
}
.wpp-form-wrap input:focus {
  border-color: #25d366; background: #fff;
  box-shadow: 0 0 0 3px rgba(37,211,102,.12);
}
.wpp-form-wrap input.error { border-color: #e53e3e; }
.wpp-form-wrap .field-error {
  color: #e53e3e; font-size: 12px;
  display: none; margin-top: 4px; padding-left: 4px;
}
.wpp-form-wrap .field-error.visible { display: block; }
.btn--wpp-submit {
  width: 100%; background: #25d366; color: #fff;
  font-weight: 700; font-size: 15px; padding: 14px;
  border: none; border-radius: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 4px;
  transition: background .2s, transform .15s, opacity .2s;
  font-family: inherit;
}
.btn--wpp-submit:hover { background: #1da851; transform: translateY(-1px); }
.btn--wpp-submit.loading { opacity: .65; pointer-events: none; }

/* ── Plano CTA ─────────────────────────────────────────────── */
.plano-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  background: rgba(220,252,23,.1);
  color: var(--lime);
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-btn);
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, transform .15s;
  font-family: 'Manrope', sans-serif;
}
.plano-cta:hover {
  background: rgba(220,252,23,.18);
  transform: translateY(-1px);
}
.plano-card--destaque .plano-cta {
  background: var(--lime);
  color: #0d0921;
  border-color: var(--lime);
}
.plano-card--destaque .plano-cta:hover {
  background: var(--lime-hover);
}
