/* Overlay escuro do modal */
#rp-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
}

/* Conteúdo do modal */
#rp-modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 360px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Botão fechar */
#rp-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}

/* Título */
#rp-modal-title {
  margin-bottom: 15px;
  font-size: 18px;
  color: #2d62d3;
  text-align: center;
}

/* Campos do formulário */
.rp-field {
  margin-bottom: 12px;
}

.rp-field label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.rp-field input,
.rp-field select,
.rp-field textarea {
  width: 100%;
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Recaptcha ajustado */
#rp-recaptcha {
  transform: scale(0.85);
  transform-origin: 0 0;
  margin: 10px 0;
}

/* Botão enviar */
#rp-enviar-btn {
  background: #2d62d3;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#rp-enviar-btn:hover {
  background: #2049a5;
}

/* Responsivo extra */
@media (max-width: 480px) {
  #rp-modal-content {
    margin: 10% auto;
    max-width: 95%;
    padding: 15px;
  }
}
