/* =========================
   BOTÃO FLUTUANTE
========================= */
.callback-btn {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 999;
  background: #42C452;
  color: #fff;
  border: none;
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(66, 196, 82, 0.45);
  transition: all 0.3s ease;
}

.callback-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(66, 196, 82, 0.45);
  background: #2AB70E;
}

/* =========================
   OVERLAY
========================= */
.callback-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.callback-overlay.is-active {
  opacity: 1;
  pointer-events: all;
  
}

/* =========================
   PAINEL LATERAL
========================= */
.callback-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 100%;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 999;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.callback-panel.is-active {
  transform: translateX(0);
}

/* =========================
   HEADER DO PAINEL
========================= */
.callback-panel h2 {
  font-size: 22px;
  margin: 24px 24px 8px;
  color: #111;
}

.callback-panel p {
  margin: 0 24px 16px;
  color: #666;
  font-size: 13px;
}

/* =========================
   BOTÃO FECHAR
========================= */
.callback-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s ease;
}

.callback-close:hover {
  color: #000;
}

/* =========================
   FORMULÁRIO (NINJA FORMS)
========================= */
.callback-form {
  padding: 24px; /* 👈 AQUI está o padding que você pediu */
  overflow-y: auto;
  flex: 1;
}

/* Inputs */
.callback-form input,
.callback-form textarea,
.callback-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  margin-bottom: 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.callback-form input:focus,
.callback-form textarea:focus,
.callback-form select:focus {
  border-color: #42C452;
  box-shadow: 0 0 0 3px rgba(255, 0, 140, 0.15);
  outline: none;
}

/* Botão enviar Ninja Forms */
.callback-form .nf-form-content button,
.callback-form .nf-form-content input[type="button"],
.callback-form .nf-form-content input[type="submit"] {
  background: #ff008c;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease, transform 0.2s ease;
}

.callback-form .nf-form-content button:hover {
  background: #42C452;
  transform: translateY(-1px);
}

.callback-btn,
.callback-btn:focus,
.callback-btn:active {
  background-color: #42C452 !important;
  color: #fff;
  outline: none;
}
.callback-btn:hover{
  background: #2AB70E !important;
}

.callback-btn:active {
  background: #2AB70E !important;
}


/* =========================
   RESPONSIVO
========================= */
@media (max-width: 480px) {
  .callback-panel {
    width: 100%;
  }

  .callback-btn {
    right: 16px;
    bottom: 16px;
    font-size: 13px;
    padding: 14px 18px;
  }
}

